Skip to content

Commit

Permalink
fix: Item Tax template is not working for e-commerce
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitwaghchaure committed Jan 25, 2024
1 parent 0637e0a commit b70e4fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion webshop/templates/includes/order/order_taxes.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{{ d.description }}
</div>
<div class="item-grand-total col-4 text-right pr-0">
{{ doc.get_formatted("net_total") }}
{{ d.get_formatted("base_tax_amount") }}
</div>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions webshop/webshop/shopping_cart/cart.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@ def set_taxes(quotation, cart_settings):
#
# # append taxes
quotation.append_taxes_from_master()
quotation.append_taxes_from_item_tax_template()


def get_party(user=None):
Expand Down

0 comments on commit b70e4fd

Please sign in to comment.