[minor][fix] fix base_grand_total

This commit is contained in:
Saurabh 2016-07-05 15:58:14 +05:30
parent e9ba712fe3
commit c03a3bf580

View File

@ -98,7 +98,7 @@ class PaymentRequest(Document):
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