radiantproduction/Vue/Ajaxacommercialfamiliale/tous.php

36 lines
1.5 KiB
PHP

<?php
$adminSin = $_SESSION['adminSin'];
?>
<legend> <?= _("LISTE DES COMMERCIAUX") ?> </legend>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt; paddind:0px;">
<thead>
<tr>
<th colspan="2" style='text-align:center'> <?= _("Commercial") ?> </th>
<th style='text-align:center'> Type </th>
<th style='text-align:center'> <?= _("Téléphone") ?> </th>
<th style='text-align:center'> E-mail </th>
<th style='text-align:center'> <?= _("Afficher") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($apporteurs as $apporteur):
$idApporteur = $this->nettoyer($apporteur['id']);
$codeTypeApporteur = $apporteur['codeTypeApporteur'];
$codeApporteur = $apporteur['codeApporteur'];
$libelleApporteur = $this->nettoyer($apporteur['libelle']);
?>
<tr ondblclick="javascript:agent_commercial(<?= $idApporteur ?>);" valign="top">
<td> <?= $libelleApporteur ?> </td>
<td width="10%" align='center'><?= $codeApporteur ?> </td>
<td align='center'> <?= $this->nettoyer($apporteur['typeapporteur']) ?> </td>
<td align='center'> <?= $this->nettoyer($apporteur['telephone']) ?> </td>
<td align='center'> <?= $this->nettoyer($apporteur['email']) ?> </td>
<td> <input class = "form-control btn btn-info" type="button" value="<?= _("Afficher") ?>" onClick="javascript:agent_commercial(<?= $idApporteur ?>);" style='font-size:8pt;' > </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>