commit | c03a3bf5809ed34a8980d33747f71e1ee29f916e | [log] [tgz] |
---|---|---|
author | Saurabh <saurabh6790@gmail.com> | Tue Jul 05 15:58:14 2016 +0530 |
committer | Saurabh <saurabh6790@gmail.com> | Tue Jul 05 15:58:14 2016 +0530 |
tree | 75ab1b62a1539783a16ce6d5d937c377ac9182fd | |
parent | e9ba712fe3317a6dcc778703ae9bc66e99c04eea [diff] |
[minor][fix] fix base_grand_total
diff --git a/erpnext/accounts/doctype/payment_request/payment_request.py b/erpnext/accounts/doctype/payment_request/payment_request.py index f7d9586..a774e54 100644 --- a/erpnext/accounts/doctype/payment_request/payment_request.py +++ b/erpnext/accounts/doctype/payment_request/payment_request.py
@@ -98,7 +98,7 @@ bank_amount = self.grand_total if party_account_currency == ref_doc.company_currency and party_account_currency != self.currency: - party_amount = self.base_grand_total + party_amount = ref_doc.base_grand_total else: party_amount = self.grand_total