89 lines
3.3 KiB
PHTML
89 lines
3.3 KiB
PHTML
<style>
|
|
#info td {
|
|
padding:2px;
|
|
}
|
|
|
|
</style>
|
|
<div id="center">
|
|
<div class="paragraph">
|
|
<div id="identite">
|
|
<h1>Identite</h1>
|
|
<table>
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">CompanyId</td>
|
|
<td class="StyleInfoData" width="300"><?php echo $this->resultats->CompanyId;?></td>
|
|
</tr id="info">
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">CompanyRegisterNumber</td>
|
|
<td class="StyleInfoData" width="300"><?php echo $this->resultats->CompanyRegisterNumber;?></td>
|
|
</tr>
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">VatNumber</td>
|
|
<td class="StyleInfoData" width="300"><?php echo $this->resultats->VatNumber;?></td>
|
|
</tr>
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td valign="top" class="StyleInfoLib" width="250">RegisteredName</td>
|
|
<td class="StyleInfoData" width="300"><?php echo $this->resultats->RegisteredName;?></td>
|
|
</tr>
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td valign="top" class="StyleInfoLib" width="250">Adresse</td>
|
|
<td class="StyleInfoData" width="300"><a href=""><?php echo $this->resultats->Address->HouseNumber.' '.$this->resultats->Address->Street;?><br />
|
|
<?php echo $this->resultats->Address->PostCode.' '.$this->resultats->Address->City?></a></td>
|
|
</tr>
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">TelephoneNumbers</td>
|
|
<td class="StyleInfoData" width="300"><?php echo $this->resultats->TelephoneNumbers->TelephoneNumber[0];?></td>
|
|
</tr>
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">CompanyWebSite</td>
|
|
<td class="StyleInfoData" width="300"><a href="<?php echo $this->resultats->CompanyWebSite;?>">
|
|
<?php echo $this->resultats->CompanyWebSite;?></a>
|
|
</td>
|
|
</tr>
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">CompanyEmail</td>
|
|
<td class="StyleInfoData" width="300"><a href="mailto:<?php echo $this->resultats->CompanyEmail;?>">
|
|
<?php echo $this->resultats->CompanyEmail;?></a>
|
|
</td>
|
|
</tr>
|
|
<tr id="info">
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">NaceCodes</td>
|
|
<td class="StyleInfoData" width="300"><?php echo $this->resultats->NaceCodes;?></td>
|
|
</tr>
|
|
</table>
|
|
<h1>Liste des rapports</h1>
|
|
<table>
|
|
<tr id="info">
|
|
<?php foreach ($this->listeRapport->DataSetOptions->DataSetOption as $rapport):?>
|
|
<?php if ($rapport->DataSetType->_ == 'Full'):?>
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">Rapport de Full</td>
|
|
<td class="StyleInfoData" width="300"></td>
|
|
<?php elseif ($rapport->DataSetType->_ == 'Compact'):?>
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">Rapport Compact</td>
|
|
<td class="StyleInfoData" width="300"></td>
|
|
<?php elseif ($rapport->DataSetType->_ == 'CreditRecommendation'):?>
|
|
<td width="30px"></td>
|
|
<td class="StyleInfoLib" width="250">Rapport Credit recommendation</td>
|
|
<td class="StyleInfoData" width="300"></td>
|
|
<?php endif;?>
|
|
|
|
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</table>
|
|
<pre><?php print_r($this->listeRapport); ?></pre>
|
|
</div>
|
|
</div>
|
|
</div>
|