prestation/Vue/Ajaxdestinatairesms/consulter.php
2025-12-01 18:54:33 +00:00

61 lines
2.5 KiB
PHP

<div id="div_sms">
<?php $nbligne = 0; ?>
<div id="div_selectionnes" class="col-7" style="padding-left:0px;padding-right:1px;">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style='font-size:7pt;'>
<thead>
<tr>
<th colspan="4" style="text-align:center" > <?= _("SMS ENVOYES") ?></th>
</tr>
<tr>
<th width="10%" style="text-align:center"> <?= _("Système") ?> </th>
<th width="10%" style="text-align:center"> <?= _("Envoi") ?> </th>
<th width="30%" style="text-align:center"> <?= _("Destinataires") ?> </th>
<th style="text-align:center"> Message </th>
</tr>
</thead>
<tbody>
<?php foreach ($messages_envoyes as $message):
$nbligne++;
?>
<tr valign="top">
<td align='center'><?= dateheureLang($this->nettoyer($message['dateSysteme'])) ?></td>
<td align='center'><?= dateheureLang($this->nettoyer($message['dateEnvoi'])) ?></td>
<td align='center'> <?= $this->nettoyer($message['destinataires']) ?> </td>
<td> <textarea rows="4" cols="58" readonly ><?= $this->nettoyer($message['message']) ?></textarea> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<input class="sr-only" type="text" id="nbligne_info" name="nbligne_info" value="<?= $nbligne ?>" >
<div id="div_sms_en_cours" class="col-5" style="padding-left:1px;padding-right:0px;">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style='font-size:7pt;'>
<thead>
<tr>
<th colspan="3" style="text-align:center; background-color: yellow; color: black;" > <?= _("ENVOI EN COURS") ?></th>
</tr>
<tr>
<th width="13%" style="text-align:center; background-color: yellow; color: black;"> <?= _("Envoi") ?> </th>
<th width="30%" style="text-align:center; background-color: yellow; color: black;"> <?= _("Destinataires") ?> </th>
<th style="text-align:center; background-color: yellow; color: black;"> Message </th>
</tr>
</thead>
<tbody>
<?php foreach ($messages_en_cours as $message):
$nbligne++;
?>
<tr valign="top">
<td align='center'><?= dateheureLang($this->nettoyer($message['dateSysteme'])) ?></td>
<td align='center'> <?= $this->nettoyer($message['destinataires']) ?> </td>
<td> <textarea rows="4" cols="45" readonly ><?= $this->nettoyer($message['message']) ?></textarea> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>