|
|
@@ -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> |