Browse Source

Déplacement colonne 'Historique' pour une meilleure lisibilité

refactoring
Guillaume Bourgeois 6 years ago
parent
commit
b91336391d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      backend/views/site/index.php

+ 2
- 2
backend/views/site/index.php View File

<thead> <thead>
<tr> <tr>
<th></th> <th></th>
<th>Historique</th>
<th>Date</th> <th>Date</th>
<th>Client</th> <th>Client</th>
<th>Historique</th>
<th>Produits</th> <th>Produits</th>
<th>Point de vente</th> <th>Point de vente</th>
<th>Montant</th> <th>Montant</th>
<?php foreach($commandes as $c): ?> <?php foreach($commandes as $c): ?>
<tr class="<?= $c->getClassHistorique() ; ?>"> <tr class="<?= $c->getClassHistorique() ; ?>">
<td class="infos"><?= $c->getStrType(true); ?></td> <td class="infos"><?= $c->getStrType(true); ?></td>
<td class="historique"><?= $c->getStrHistorique() ; ?></td>
<td class="date"> <td class="date">
<div class="bloc-date"> <div class="bloc-date">
<div class="jour"><?= strftime('%A', strtotime($c->production->date)) ?></div> <div class="jour"><?= strftime('%A', strtotime($c->production->date)) ?></div>
<td> <td>
<?= $c->getStrUser(); ?><br /> <?= $c->getStrUser(); ?><br />
</td> </td>
<td class="historique"><?= $c->getStrHistorique() ; ?></td>
<td><?= $c->getResumePanier() ; ?></td> <td><?= $c->getResumePanier() ; ?></td>
<td><?= $c->getResumePointVente() ; ?></td> <td><?= $c->getResumePointVente() ; ?></td>
<td><?= $c->getStrMontant() ; ?></td> <td><?= $c->getStrMontant() ; ?></td>

Loading…
Cancel
Save