production/Vue/Ajaxdupliquerreseausoins/index.php
2025-12-01 16:12:12 +00:00

60 lines
2.3 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">&times;</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 align="center" colspan="4" style="font-size:12pt; background-color: green; color: white; font-weight: bold;">
<?= _("RESEAU DE SOINS A DUPLIQUER") ?>
</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="12%" align="center" > <?= _("Libellé") ?> </td>
<td ><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="libelleold" NAME="libelleold" value="<?= $this->nettoyer($reseausoins['libelle']) ?>" readonly></td>
</tr>
</tbody>
</table>
<table width="100%" cellpadding="0" cellspacing="0" class="table table-responsive table-condensed">
<tbody>
<tr>
<td align="center" colspan="4" style="font-size:12pt; background-color: green; color: white; font-weight: bold;">
<?= _("NOUVEAU RESEAU DE SOINS") ?>
</td>
</tr>
<tr>
<td width="12%" class="required"> <?= _("Libellé") ?> </td>
<td ><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOFOCUS></td>
</tr>
<tr>
<td colspan="4" height="20px"> </td>
</tr>
<tr>
<td colspan="4">
<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="<?= _("Valider")?>"
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>