53 lines
2.0 KiB
PHP
53 lines
2.0 KiB
PHP
<div class="row">
|
|
<div id="div_gestion_bon_1" class="col-xs-7" >
|
|
<legend> <?= _("Prestataires hors du mode de gestion") ?> </legend>
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("Prestataire") ?> </th>
|
|
<th style='text-align:center'> <?= _("Gestion") ?> </th>
|
|
<th style='text-align:center'> => </th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th colspan="4"> <button type="button" style="font-size:8pt;" class="form-control btn btn-primary" onclick="javascript:ajouter_tous_prestataires_gestion_bon();" > <?= _("Ajouter tous"). " ==>" ?> </button> </th>
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($prestataires_hors_mode as $prestataire_hors_mode):
|
|
$codePrestataire = $prestataire_hors_mode['codePrestataire'];
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'><?= $this->nettoyer($prestataire_hors_mode['prestataire']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($prestataire_hors_mode['gestionbon']) ?></td>
|
|
<td align='center'> <input type="button" value="=>" onClick="javascript:ajouter_un_prestataire_gestion_bon('<?=$codePrestataire?>');" ></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="div_gestion_bon_1" class="col-xs-5" >
|
|
<legend> <?= _("Prestataires du mode de gestion") ?> </legend>
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("Prestataire") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($prestataires_mode as $prestataire_mode):
|
|
$codePrestataire = $prestataire_mode['codePrestataire'];
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'><?= $this->nettoyer($prestataire_mode['prestataire']) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|