31 lines
1014 B
PHTML
31 lines
1014 B
PHTML
<div id="dashboard">
|
|
<h2>Liste des commandes</h2>
|
|
<div>
|
|
<table>
|
|
<tr>
|
|
<th><b>Date de création</b></th>
|
|
<th><b>Référence</b></th>
|
|
<th><b>Résultat</b></th>
|
|
<th><b>Insee</b></th>
|
|
<th><b>login</b></th>
|
|
<th><b>Reférence ciblage</b></th>
|
|
<th><b>Fichier</b></th>
|
|
<th><b>Actions</b></th>
|
|
</tr>
|
|
<?php foreach($this->commandes as $item): ?>
|
|
<tr>
|
|
<td><?=$item['dateAdded']?></td>
|
|
<td><?=$item['commandeReference']?></td>
|
|
<td><?=$item['nbLigneTotales']?></td>
|
|
<td><?=$item['uniteInsee']?></td>
|
|
<td><?=$item['login']?></td>
|
|
<td><?=$item['critereReference']?></td>
|
|
<td>
|
|
<a class="enrichissementref" href="<?=$this->url(array('controller'=> 'enrichissement','action'=>'reference', 'id'=>$comptage['idDefinition']))?>">Enrichissement</a>
|
|
<a href="<?=$this->url(array('controller'=> 'gestion','action'=>'extract', 'id'=>$comptage['idDefinition']))?>">Extraire les sirets</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|