Sfoglia il codice sorgente

Pages commandes

feature/export_comptable
Fab 4 anni fa
parent
commit
8c98649070
1 ha cambiato i file con 25 aggiunte e 3 eliminazioni
  1. +25
    -3
      ShopBundle/Resources/views/backend/order/macros.html.twig

+ 25
- 3
ShopBundle/Resources/views/backend/order/macros.html.twig Vedi File

@@ -84,13 +84,35 @@
<table class="table">
<tbody>
<tr>
<th>Total without Tax</th>
<td>${order.total}€</td>
<th>Total produits TTC </th>
<td>${order.totalOrderProductsWithTax}€</td>
</tr>
<template v-for="(orderReductionCart, key) in order.orderReductionCarts">
<tr>
<th>${orderReductionCart.title}</th>
<td>${orderReductionCart.amount}€</td>
</tr>
</template>
<tr>
<th>Total</th>
<th>Total produits après réductions TTC </th>
<td>${order.totalOrderProductsWithTaxAndReductions}€</td>
</tr>

<tr>
<th>Frais de livraisons TTC </th>
<td>${order.deliveryPriceWithTaxAndReduction}€</td>
</tr>

{# <tr>
<th>Total Taxes </th>
<td>${order.totalWithTax}€</td>
</tr>
#}
<tr>
<th>Total TTC </th>
<td>${order.totalWithTax}€</td>
</tr>

</tbody>
</table>
</div>

Loading…
Annulla
Salva