62 lines
2.0 KiB
PHP
Executable File
62 lines
2.0 KiB
PHP
Executable File
<?php $this->titre = "INTER SANTE - Messages des motifs de depassement"; ?>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<legend> <?= _("TEXTE DE FACTURATION GARANT") ?> </legend>
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style='font-size:12pt; text-align:center; '>
|
|
<thead>
|
|
<tr>
|
|
<th width="5%" style="text-align: center;"> <?= _("Code") ?> </th>
|
|
<th width="15%" style="text-align: center;"> <?= _("Libellé") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Texte") ?> </th>
|
|
<th width="10%" style="text-align: center;"> <?= _("Echéance (en jour)") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php
|
|
|
|
foreach ($textes as $v):
|
|
$idTexte = $this->nettoyer($v['id']);
|
|
$libelle = $this->nettoyer($v['libelle']);
|
|
$texte = $this->nettoyer($v['texte']);
|
|
if (est_anglophone()){
|
|
$libelle = $this->nettoyer($v['libelleEng']);
|
|
$texte = $this->nettoyer($v['texteEng']);
|
|
}
|
|
|
|
?>
|
|
<tr valign="top">
|
|
<td align="center">
|
|
<?= $this->nettoyer($v['codeTypeFacturationGarant']) ?>
|
|
</td>
|
|
<td style="text-align: center;">
|
|
<?= $libelle; ?>
|
|
</td>
|
|
|
|
<td >
|
|
<INPUT style='font-size:12pt;' class="form-control" TYPE="text" value="<?= $texte ?>"
|
|
onchange="javascript:majtextefacturation(<?=$idTexte ?>, this.value);">
|
|
</td>
|
|
<td >
|
|
<INPUT style='font-size:12pt; text-align: center;' class="form-control" TYPE="number" value="<?= $this->nettoyer($v['echeance']); ?>"
|
|
onchange="javascript:majecheancefacturation(<?=$idTexte ?>, this.value);">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4" height="5"></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
|
|
<tr>
|
|
<td colspan="4"> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:afficher_parammessages();" style='font-size:10pt;' > </td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|