51 lines
1.7 KiB
PHTML
51 lines
1.7 KiB
PHTML
<?php
|
|
$YearBegin = 2012;
|
|
$Years = date('Y') - $YearBegin;
|
|
?>
|
|
<div id="dashboard">
|
|
<div>
|
|
<form method="post" action="">
|
|
<select name="year">
|
|
<?php for ($i=0 ; $i<=$Years ; $i++ ) {?>
|
|
<?php $select=''; if ($YearBegin+$Years-$i==$this->year) $select = ' selected';?>
|
|
<option value="<?=$YearBegin+$Years-$i?>"<?=$select?>><?=$YearBegin+$Years-$i?></option>
|
|
<?php }?>
|
|
</select>
|
|
<select name="month">
|
|
<?php for ( $i=1 ; $i<=12 ; $i++ ) {?>
|
|
<?php $select=''; if ($i==$this->month) $select = ' selected';?>
|
|
<option value="<?=$i?>"<?=$select?>><?=str_pad($i, 2, '0', STR_PAD_LEFT)?></option>
|
|
<?php }?>
|
|
</select>
|
|
<input type="submit" name="submit" value="Ok"/>
|
|
</form>
|
|
</div>
|
|
<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>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'=> 'gestion','action'=>'enrichit', 'id'=>$item['id']))?>">Enrichissement</a>
|
|
<a href="<?=$this->url(array('controller'=> 'gestion','action'=>'extract', 'id'=>$item['id']))?>">Extraire les sirets</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|