Import initial du projet Production
This commit is contained in:
35
Vue/Imprimerdevis/index.php
Executable file
35
Vue/Imprimerdevis/index.php
Executable file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user