From e61d299e63436390920c0c765273aa0d84639b1d Mon Sep 17 00:00:00 2001 From: ervishnucs Date: Sun, 28 Jun 2026 09:53:38 +0530 Subject: [PATCH] fix: recalculate totals after setting quotation conversion rate --- erpnext/selling/doctype/customer/mapper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/selling/doctype/customer/mapper.py b/erpnext/selling/doctype/customer/mapper.py index f6c41ee31a6..1cff9fbac79 100644 --- a/erpnext/selling/doctype/customer/mapper.py +++ b/erpnext/selling/doctype/customer/mapper.py @@ -39,6 +39,7 @@ def make_quotation(source_name: str, target_doc: str | Document | None = None): target_doc.conversion_rate = get_exchange_rate( target_doc.currency, company_currency, target_doc.transaction_date, "for_selling" ) + target_doc.run_method("calculate_taxes_and_totals") return target_doc