50 lines
2.3 KiB
PHP
50 lines
2.3 KiB
PHP
<?php
|
|
// $this->titre = "ISA WEB - Nouveau Dossier Remboursement classique";
|
|
$idPolice = $_SESSION['idPolice_C'] ;
|
|
?>
|
|
|
|
<legend> <?= _("Nouveau Dossier Hors Tiers Payant") . " / " . $_SESSION['nomClient_C'] . " => " . _("ID Police") . " : " .$idPolice ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" class="required"> <?= _("Date réclamation") ?> </td>
|
|
<td width="20%"> <INPUT class="form-control datepicker" TYPE="text" id="dateReclamation" NAME="dateReclamation" value="" required style='font-size:10pt;' AUTOCOMPLETE="OFF"></td>
|
|
|
|
<td width="10%" align="center"> Observations </td>
|
|
<td> <INPUT class="form-control" TYPE="text" id="observations" NAME="observations" style='font-size:10pt;' AUTOCOMPLETE="OFF"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="4"> <input style='text-align:center; font-size:11pt; background-color:green;color:white;' class="form-control" type="text" value= "Informations sur le paiement proposées par le bénéficiaire" disabled > </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="required"> <?= _("Mode Paiement") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeModePaiementDemande" NAME="codeModePaiementDemande" required style='font-size:10pt;' AUTOCOMPLETE="OFF">
|
|
<?php liste_options($modepaiement,$_SESSION['codeModePaiement_C']); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center" class="required"> <?= _("Banque") ?> </td>
|
|
<td>
|
|
<SELECT style='font-size:10pt;' class="form-control" id="codeBanqueBeneficiaire" NAME="codeBanqueBeneficiaire" required AUTOCOMPLETE="OFF">
|
|
<?php liste_options($banque, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="required"> <?= _("No Compte Bancaire") ?> </td>
|
|
<td > <INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="numeroCompteBeneficiaire" NAME="numeroCompteBeneficiaire" value="<?= $_SESSION['rib_C'] ?>" required AUTOCOMPLETE="OFF"> </td>
|
|
|
|
<td> </td>
|
|
<td> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer le Dossier...") ?>" onClick="javascript:enregistrer_dossier_classique_police();" style='font-size:10pt;' > </td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|