Browse Source

Pages commandes

feature/export_comptable
Fab 4 years ago
parent
commit
8c98649070
1 changed files with 25 additions and 3 deletions
  1. +25
    -3
      ShopBundle/Resources/views/backend/order/macros.html.twig

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

<table class="table"> <table class="table">
<tbody> <tbody>
<tr> <tr>
<th>Total without Tax</th>
<td>${order.total}€</td>
<th>Total produits TTC </th>
<td>${order.totalOrderProductsWithTax}€</td>
</tr> </tr>
<template v-for="(orderReductionCart, key) in order.orderReductionCarts">
<tr>
<th>${orderReductionCart.title}</th>
<td>${orderReductionCart.amount}€</td>
</tr>
</template>
<tr> <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> <td>${order.totalWithTax}€</td>
</tr> </tr>
#}
<tr>
<th>Total TTC </th>
<td>${order.totalWithTax}€</td>
</tr>

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

Loading…
Cancel
Save