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

78 lines
2.9 KiB
PHP

<?php $this->titre = "INTER-SANTE - Prestataires avec dérogations T M";
?>
<input style='text-align:center; font-size:11pt;' class="form-control" type="text" value="<?= _("Prestataires avec dérogations Ticket Modérateur") ?>" readonly >
<div id="div_complet">
<table class="table table-condensed table-responsive" style='font-size:10pt;'>
<tbody>
<tr valign="top">
<td width="10%" > <?= _("Catégorie") ?> </td>
<td width="10%" ><INPUT class="form-control" style='font-size:10pt;' value="<?= $this->nettoyer($college['codeProduit']) ?>" readonly > </td>
<td width="10%" align='center'> <?= _("Collège") ?> </td>
<td><INPUT class="form-control" style='font-size:10pt;' value="<?= $this->nettoyer($college['libelleCollege']) ?>" readonly ></td>
</tr>
</tbody>
</table>
<div class="row">
<div id="div_reseau" class="col-5" style="padding-right:1px;">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
<thead>
<tr>
<th width="90%" style='text-align:center'> <?= _("Prestataires du réseau") ?> </th>
<th style='text-align:center'> => </th>
</tr>
</thead>
<tbody>
<?php foreach ($prestatairereseaus as $prestatairereseau):
$codePrestataire=$this->nettoyer($prestatairereseau['codePrestataire']);
?>
<tr valign="top">
<td ><?= $this->nettoyer($prestatairereseau['prestataire']) ?></td>
<td align='center'> <input type="button" value="=>" onClick="javascript:ajouter_un_prestataire_tm('<?=$codePrestataire?>');" ></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<div id="div_prestataires_en_plus" class="col-7" >
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
<thead>
<tr>
<th style='text-align:center'> <= </th>
<th width="80%" style='text-align:center'> <?= _("Prestataires avec dérogations Ticket Modérateur") ?> </th>
<th width="15%" style='text-align:center'> <?= _("T M") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($prestatairetms as $prestatairetm):
$idPrestation=$this->nettoyer($prestatairetm['id']);
?>
<tr valign="top">
<td align='center'> <input type="button" value="<=" onClick="javascript:retirer_un_prestataire_tm('<?=$idPrestation?>');" ></td>
<td ><?= $this->nettoyer($prestatairetm['prestataire']) ?></td>
<td>
<INPUT style='text-align:center; font-size:9pt;' class="form-control" TYPE="text" value="<?= $this->nettoyer($prestatairetm['tm']) ?>"
onChange="javascript:ajax_maj_tm_tm('<?=$idPrestation?>', this.value, this);">
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
</div>