fix: use party account currency when party account is specified

(cherry picked from commit c7b961ffa2)
This commit is contained in:
Devin Slauenwhite
2023-12-18 18:03:53 +00:00
committed by Mergify
parent 1e9b4e2403
commit d9e0d55b88

View File

@@ -227,7 +227,7 @@ class ReceivablePayableReport(object):
if not row:
return
if self.filters.get("in_party_currency"):
if self.filters.get("in_party_currency") or self.filters.get("party_account"):
amount = ple.amount_in_account_currency
else:
amount = ple.amount
@@ -457,7 +457,7 @@ class ReceivablePayableReport(object):
party_details = self.get_party_details(row.party) or {}
row.update(party_details)
if self.filters.get("in_party_currency"):
if self.filters.get("in_party_currency") or self.filters.get("party_account"):
row.currency = row.account_currency
else:
row.currency = self.company_currency