prestation/Vue/Imprimerdevis/index.php
2025-12-01 18:54:33 +00:00

35 lines
1.2 KiB
PHP

<?php $this->titre = "Tâches - Editions Devis"; ?>
<legend> <?= _("EDITIONS DEVIS") . " : " . $this->nettoyer($_SESSION['numeroPolice_d_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_d('<?= $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_d('<?= $lienEtatEng ?>');"> </td>
</tr>
<tr>
<td height="20" colspan="3"></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<div id="div_export_a">
</div>