65 lines
2.8 KiB
PHP
Executable File
65 lines
2.8 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
?>
|
|
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-bs-dismiss="modal">×</button>
|
|
<legend class="modal-title" id="user" style="text-align:center;">Dupliquer le réseau de soins</legend>
|
|
</div>
|
|
<div class="modal-body">
|
|
<table width="100%" cellpadding="0" cellspacing="0" class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="6"><h4>Réseau à dupliquer: </h4></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="6%" > Code </td>
|
|
<td width="15%" ><INPUT font style="text-transform: uppercase;" value="<?= $this->nettoyer($reseausoins['codeReseau']) ?>" class="form-control" TYPE="text" id="codeold" NAME="codeold" readonly ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Libellé") ?> </td>
|
|
<td width="50%"><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="libelleold" NAME="libelleold" value="<?= $this->nettoyer($reseausoins['libelle']) ?>" readonly></td>
|
|
|
|
<td width="6%" align="center" > <?= _("T M") ?> </td>
|
|
<td width="15%" ><INPUT style='text-align:center; font-size:10pt;' id="tmold" NAME="tmold" value="<?= $this->nettoyer($reseausoins['tm']) ?>" class="form-control" type="text" readonly></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="6"><h4> Nouvelles valeurs: </h4> </td>
|
|
</tr>
|
|
<tr>
|
|
<td width="6%" > Code </td>
|
|
<td width="15%" ><INPUT font style="text-transform: uppercase;" class="form-control" TYPE="text" id="codeReseau" NAME="codeReseau" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Libellé") ?> </td>
|
|
<td width="50%"><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle"></td>
|
|
|
|
<td width="6%" align="center" > <?= _("T M") ?> </td>
|
|
<td width="15%" ><INPUT style='text-align:center; font-size:10pt;' class="form-control majuscule" type="number" value="0" id="tm" NAME="tm" onBlur="controle_numerique(this);"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="6" height="20px"> </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="6">
|
|
<input style='text-align:center; font-size:10pt;' type="button" name="btn-dupliquer-reseau" id="btn-dupliquer-reseau" class="btn btn-primary form-control" value="Dupliquer"
|
|
onclick="JAVASCRIPT:duplicationreseausoins();">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" id="" class="btn btn-default" data-bs-dismiss="modal">Fermer</button>
|
|
</div>
|
|
</div>
|
|
</div>
|