40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
|
<?php
|
||
|
require_once ('Config/config.php');
|
||
|
require_once ('../includes/giant/modulesGiants/Functions.php');
|
||
|
require_once ('../includes/giant/modulesGiants/Class/GiantIdentite.Class.php');
|
||
|
require_once ('../includes/giant/IdentiteGiant.php');
|
||
|
?>
|
||
|
<div id="center">
|
||
|
<h2>Information Identite de : <?php echo $identiteSociete->_getRegisteredName();?></h2>
|
||
|
<table style="margin-left:20px">
|
||
|
<?php foreach($identiteSociete as $champ => $valeur) {?>
|
||
|
<tr>
|
||
|
<td width="30"> </td>
|
||
|
<td valign="top" width="200"><b><?php echo SelectTrueLabel($config['Section_identite'], $champ);?></b></td>
|
||
|
<td width="100%">
|
||
|
<?php _setParamsHasChamps($champ, $valeur, $configNace);?></td>
|
||
|
</tr>
|
||
|
<?php } ?>
|
||
|
</table>
|
||
|
<h2>Consultation de rapports immediats en ligne</h2>
|
||
|
<table style="margin-left:20px">
|
||
|
<?php
|
||
|
require_once ('../includes/giant/GiantCommandeRapport.php');
|
||
|
require_once ('../includes/giant/templates/GiantCommandeRapport.tpl.php');
|
||
|
?>
|
||
|
</table>
|
||
|
<h2>Historique de rapports consultés pour cette Societe</h2>
|
||
|
<table style="margin-left:20px">
|
||
|
<?php if(!empty($info)) {?>
|
||
|
<?php foreach($info as $ligne) {?>
|
||
|
<tr>
|
||
|
<td width="30"> </td>
|
||
|
<td><img src="pages/giant/media/icons/page_error.png" alt="Consulter ce rapport" title="Consulter ce rapport"/></td>
|
||
|
<?php foreach($ligne as $champ) {?>
|
||
|
<td width="500"><b><?php echo $champ;?></b></td>
|
||
|
<td widyh="10"></td>
|
||
|
<?php } ?>
|
||
|
</tr>
|
||
|
<?php } } ?>
|
||
|
</table>
|
||
|
</div>
|