40 lines
1.6 KiB
PHP
Executable File
40 lines
1.6 KiB
PHP
Executable File
<?php $this->titre = "Tâches - Editions contrats"; ?>
|
|
|
|
|
|
<legend><?= _("EDITION CONTRAT") . " : " . $this->nettoyer($_SESSION['numeroPolice_C'])?> </legend>
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt; text-align:center'>
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("FRANCAIS") ?> </th>
|
|
<th style='text-align:center'>=></th>
|
|
<th style='text-align:center'> <?= _("ANGLAIS") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($etats as $etat):
|
|
$lienEtat = $etat['lienEtat'];
|
|
$lienEtatEng = $etat['lienEtatEng'];
|
|
?>
|
|
<tr valign="top">
|
|
<td> <input style='font-size:10pt;' class = "form-control btn btn-primary" type="button" value="<?= $this->nettoyer($etat['nomEtat']) ?>" onClick="javascript:imprimer_cp('<?= $lienEtat ?>');"> </td>
|
|
<td>=></td>
|
|
<td> <input style='font-size:10pt;' class = "form-control btn btn-primary" type="button" value="<?= $this->nettoyer($etat['nomEtatEng']) ?>" onClick="javascript:imprimer_cp('<?= $lienEtatEng ?>');"> </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td height="20" colspan="3"></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
|
|
<tr>
|
|
<td> <a style='font-size:10pt;' class="form-control btn btn-primary" href="<?= $_SESSION['dossierSociete'].'/Docs/CONDITIONS_GENERALES.pdf' ?>" target="_blank" >CONDITIONS GENERALES </a> </td>
|
|
<td>=></td>
|
|
<td> <a style='font-size:10pt;' class="form-control btn btn-primary" href="<?= $_SESSION['dossierSociete'].'/Docs/CONDITIONS_GENERALES_ENG.pdf' ?>" target="_blank" >GENERALS CONDITIONS</a> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_export_a">
|
|
</div>
|