19 lines
634 B
PHP
19 lines
634 B
PHP
<?php
|
|
$this->titre = "ISA WEB - Remboursement Hors Tiers Payant - Rechercher une police";
|
|
?>
|
|
|
|
<legend> <?= _("Rechercher une Police") ?></legend>
|
|
|
|
<table class="table table-responsive" style='font-size:9pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" class="required"> <?= _("Police") ?> </td>
|
|
<td >
|
|
<SELECT onChange="ajax_police_context();" id="idPolice" NAME="idPolice" style="font-size:10pt; height:30px;" class="form-control selectpicker" data-live-search="true" required AUTOCOMPLETE="OFF" autofocus>
|
|
<?php liste_options($polices, $idPolice); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|