Skip to content

Commit

Permalink
Merge pull request #32086 from Havenir/qr_code_multi_currency_issue
Browse files Browse the repository at this point in the history
fix: QR Code multi currency issue
  • Loading branch information
deepeshgarg007 authored Sep 5, 2022
2 parents 3664a12 + b10a2b8 commit 514d280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erpnext/regional/saudi_arabia/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def create_qr_code(doc, method=None):
tlv_array.append("".join([tag, length, value]))

# Invoice Amount
invoice_amount = str(doc.grand_total)
invoice_amount = str(doc.base_grand_total)
tag = bytes([4]).hex()
length = bytes([len(invoice_amount)]).hex()
value = invoice_amount.encode("utf-8").hex()
Expand Down Expand Up @@ -147,7 +147,7 @@ def get_vat_amount(doc):

for tax in doc.get("taxes"):
if tax.account_head in vat_accounts:
vat_amount += tax.tax_amount
vat_amount += tax.base_tax_amount

return vat_amount

Expand Down

0 comments on commit 514d280

Please sign in to comment.