Bladeren bron

Merge branch 'develop' of https://gitea.laclic.fr/Laclic/LcShopBundle into develop

feature/export_comptable
Guillaume 4 jaren geleden
bovenliggende
commit
c9549965c9
1 gewijzigde bestanden met toevoegingen van 25 en 3 verwijderingen
  1. +25
    -3
      ShopBundle/Resources/views/backend/order/macros.html.twig

+ 25
- 3
ShopBundle/Resources/views/backend/order/macros.html.twig Bestand weergeven

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

Laden…
Annuleren
Opslaan