prestation/Vue/Ajaxderogation/index.php
2025-12-05 10:42:46 +00:00

57 lines
2.2 KiB
PHP
Executable File

<div id="div_derogations">
<table class="table table-striped table-bordered table-condensed table-responsive" style="font-size:8pt;">
<thead>
<tr>
<th style='text-align:center'> No </th>
<th style='text-align:center'> Date </th>
<th style='text-align:center'> <?= _("Dérogation") ?> </th>
<th style='text-align:center'> <?= _("Répondue le") ?> </th>
<th style='text-align:center'> <?= _("Répondue par") ?> </th>
<th style='text-align:center'> Situation </th>
<th colspan="2" style='text-align:center'> <?= _("Durée jeton / Motif refus") ?> </th>
<th style='text-align:center'> <?= _("T M") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($derogations as $derogation):
$idDemandederogation = $this->nettoyer($derogation['idDemandederogation']);
$codeReponseDerogation = $this->nettoyer($derogation['codeReponseDerogation']);
?>
<?php if ($codeReponseDerogation=='9'): ?>
<tr valign="top" style='color:red'>
<?php elseif ($codeReponseDerogation=='1'): ?>
<tr valign="top" style='color:green'>
<?php else : ?>
<tr valign="top">
<?php endif; ?>
<td align='center'><?= $this->nettoyer($derogation['numeroDerogation']) ?></td>
<td align='center'><?= dateheureLang($this->nettoyer($derogation['dateSysteme'])) ?></td>
<td align='center'><?= $this->nettoyer($derogation['libelleDerogation']) ?></td>
<td align='center'><?= dateheureLang($this->nettoyer($derogation['dateReponse'])) ?></td>
<td align='center'><?= $this->nettoyer($derogation['responsableDerogation']) ?></td>
<td align='center'><?= $this->nettoyer($derogation['reponseDerogation']) ?></td>
<?php if ($codeReponseDerogation=='9'): ?>
<td align='center' colspan="2"><?= $this->nettoyer($derogation['motifRefusAssure']) ?></td>
<?php else : ?>
<td align='center'><?= dateLang($this->nettoyer($derogation['debut'])) ?></td>
<td align='center'><?= dateLang($this->nettoyer($derogation['fin'])) ?></td>
<?php endif; ?>
<td align='center'><?= $this->nettoyer($derogation['tmDerogation']) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>