47 lines
1.9 KiB
PHP
47 lines
1.9 KiB
PHP
<div id="contentTable">
|
|
<div class="breadcrumb" data-html2canvas-ignore>
|
|
<div class="crumb svg crumbhome">
|
|
<a href="<?php echo($_['url']['index']); ?>" class="icon-home"></a>
|
|
<span style="display: none;"></span>
|
|
</div>
|
|
<div class="crumb svg crumbhome">
|
|
<span><?php p($l->t('Customer'));?></span>
|
|
</div>
|
|
<div class="crumb svg crumbhome">
|
|
<button style="margin-left:3px;" type="button" id="newClient">
|
|
<?php p($l->t('Add customer'));?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<?php if(isset($_['groups']) && in_array('admin', $_['groups'])) : ?>
|
|
<div class="d-flex justify-content-end">
|
|
<button class="btn btn-secondary" id="exportClientStat">Export client stat</button>
|
|
</div>
|
|
<?php else: ?>
|
|
<?php endif; ?>
|
|
<hr>
|
|
<table id="client" class="display tabledt" style="font-size:11px;">
|
|
<thead>
|
|
<tr>
|
|
<th><?php '';?></th>
|
|
<th><?php p($l->t('ID'));?></th>
|
|
<th><?php p($l->t('Code comptable'));?></th>
|
|
<th><?php p($l->t('Agence'));?></th>
|
|
<th><?php p($l->t('Prénom'));?></th> <!-- AJOUTÉ -->
|
|
<th><?php p($l->t('Nom'));?></th> <!-- AJOUTÉ -->
|
|
<th><?php p($l->t('Company'));?></th>
|
|
<th><?php p($l->t('Legal information'));?></th>
|
|
<th><?php p($l->t('Phone number'));?></th>
|
|
<th><?php p($l->t('Email'));?></th>
|
|
<th><?php p($l->t('Address'));?></th>
|
|
<th><?php p($l->t('TVA'));?></th>
|
|
<th><?php p($l->t('Groupes tarifaires'));?></th>
|
|
<th><?php p($l->t('Groupes facturations'));?></th>
|
|
<th><?php p($l->t('Actions'));?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|