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

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

Loading…
Cancel
Save