mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-05 21:31:50 +02:00
duplicate grouped order part 1
This commit is contained in:
parent
22a97a51fa
commit
c8c9744c98
1 changed files with 33 additions and 18 deletions
|
@ -21,7 +21,7 @@
|
||||||
<th>Livraison</th>
|
<th>Livraison</th>
|
||||||
<th>Fin des commandes</th>
|
<th>Fin des commandes</th>
|
||||||
<th>Nombre de commandes</th>
|
<th>Nombre de commandes</th>
|
||||||
<th>Voir</th>
|
<th> </th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -34,12 +34,17 @@
|
||||||
<td>{{ gr_order.delivery_date }}</td>
|
<td>{{ gr_order.delivery_date }}</td>
|
||||||
<td>{{ gr_order.deadline }}</td>
|
<td>{{ gr_order.deadline }}</td>
|
||||||
<td>{{ gr_order.order_set.count }}</td>
|
<td>{{ gr_order.order_set.count }}</td>
|
||||||
<td><a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
|
<td>
|
||||||
|
<a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
|
||||||
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
|
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
|
||||||
</a>
|
</a>
|
||||||
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
|
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
|
||||||
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
|
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
|
||||||
</a></td>
|
</a>
|
||||||
|
<a title="Dupliquer la commande groupée" href="{% url 'order:duplicate_grouped_order' gr_order.id %}">
|
||||||
|
<i class="fa fa-files-o mr-3" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -54,7 +59,7 @@
|
||||||
<th>Livraison</th>
|
<th>Livraison</th>
|
||||||
<th>Fin des commandes</th>
|
<th>Fin des commandes</th>
|
||||||
<th>Nombre de commandes</th>
|
<th>Nombre de commandes</th>
|
||||||
<th>Voir</th>
|
<th> </th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -67,12 +72,17 @@
|
||||||
<td>{{ gr_order.delivery_date }}</td>
|
<td>{{ gr_order.delivery_date }}</td>
|
||||||
<td>{{ gr_order.deadline }}</td>
|
<td>{{ gr_order.deadline }}</td>
|
||||||
<td>{{ gr_order.order_set.count }}</td>
|
<td>{{ gr_order.order_set.count }}</td>
|
||||||
<td><a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
|
<td>
|
||||||
|
<a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
|
||||||
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
|
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
|
||||||
</a>
|
</a>
|
||||||
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
|
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
|
||||||
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
|
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
|
||||||
</a></td>
|
</a>
|
||||||
|
<a title="Dupliquer la commande groupée" href="{% url 'order:duplicate_grouped_order' gr_order.id %}">
|
||||||
|
<i class="fa fa-files-o mr-3" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -87,7 +97,7 @@
|
||||||
<th>Livraison</th>
|
<th>Livraison</th>
|
||||||
<th>Fin des commandes</th>
|
<th>Fin des commandes</th>
|
||||||
<th>Nombre de commandes</th>
|
<th>Nombre de commandes</th>
|
||||||
<th>Voir</th>
|
<th> </th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -100,12 +110,17 @@
|
||||||
<td>{{ gr_order.delivery_date }}</td>
|
<td>{{ gr_order.delivery_date }}</td>
|
||||||
<td>{{ gr_order.deadline }}</td>
|
<td>{{ gr_order.deadline }}</td>
|
||||||
<td>{{ gr_order.order_set.count }}</td>
|
<td>{{ gr_order.order_set.count }}</td>
|
||||||
<td><a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
|
<td>
|
||||||
|
<a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
|
||||||
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
|
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
|
||||||
</a>
|
</a>
|
||||||
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
|
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
|
||||||
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
|
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
|
||||||
</a></td>
|
</a>
|
||||||
|
<a title="Dupliquer la commande groupée" href="{% url 'order:duplicate_grouped_order' gr_order.id %}">
|
||||||
|
<i class="fa fa-files-o mr-3" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in a new issue