Skip to content

Commit

Permalink
fix: Show taxes in customer currency in Cart (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
nabinhait authored Jan 7, 2025
1 parent 9c2c681 commit 4998c1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webshop/templates/includes/cart/cart_payment_summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ <h6>

<!-- taxes -->
{% for d in doc.taxes %}
{% if d.base_tax_amount %}
{% if d.tax_amount %}
<tr>
<td class="bill-label">
{{ d.description }}
</td>
<td class="bill-content text-right">
{{ d.get_formatted("base_tax_amount") }}
{{ d.get_formatted("tax_amount") }}
</td>
</tr>
{% endif %}
Expand Down

0 comments on commit 4998c1b

Please sign in to comment.