improve history preview

This commit is contained in:
ty kayn 2019-07-04 19:34:15 +02:00
parent 689c4509b5
commit eed747f289
2 changed files with 14 additions and 2 deletions

View File

@ -90,6 +90,7 @@
<table class="table table-striped">
<thead>
<tr>
<td>n°</td>
<td>date</td>
<td>commentaire</td>
<td>produits</td>
@ -105,9 +106,20 @@
<tr>
<td> {{ vente.id }}</td>
<td> {{ vente.date |date('Y-m-d H:i:s') }}</td>
<td>{{ vente.comment }}</td>
<td class="text-right">{{ vente.productsSold |length }}</td>
<td class="text-right">
{% if vente.productsSold |length >1 %}
<strong>
{{ vente.productsSold |length }}
</strong> produits
{% else %}
{{ vente.productsSold.0.name }}
{% endif %}
</td>
<td class="text-right">
{{ vente.amount }}
</td>

View File

@ -323,7 +323,7 @@ class DefaultController extends Controller
$currentUser = $this->getUser();
$m = $this->getDoctrine()->getManager();
$sellingRepo = $m->getRepository('AppBundle:SellRecord');
$allSellingList = $sellingRepo->findByUser($currentUser->getId());
$allSellingList = $sellingRepo->findBy(['user'=>$currentUser->getId()],['id'=>'desc']);
$mySellings = array_splice($allSellingList, 0, 15);
$chiffreAffaires = 0;