Skip to content

Commit

Permalink
[FIX] website_sale: price_tax and amount_tax in confirmation page
Browse files Browse the repository at this point in the history
All the information about the taxes must be displayed in the  confirmation page.

opw:679316
  • Loading branch information
simongoffin committed Jun 14, 2016
1 parent 01a81b9 commit ff1845b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions addons/website_sale/views/templates.xml
Expand Up @@ -1273,6 +1273,7 @@
<th>Products</th>
<th>Quantity</th>
<th class="text-right" width="100">Unit Price</th>
<th class="text-right" width="100">Taxes</th>
<th class="text-right" width="100">Subtotal</th>
</tr>
</thead>
Expand All @@ -1298,6 +1299,11 @@
t-field-options='{"widget": "monetary", "display_currency": "order.pricelist_id.currency_id"}'/>
</strong>
</td>
<td>
<div class="text-right"
t-field="line.price_tax"
t-field-options='{"widget": "monetary", "display_currency": "order.pricelist_id.currency_id"}'/>
</td>
<td>
<div class="text-right"
t-field="line.price_subtotal"
Expand Down

0 comments on commit ff1845b

Please sign in to comment.