Skip to content

Commit

Permalink
fix: don't get zero value entries for exchange rate calculation (#34475)
Browse files Browse the repository at this point in the history
* fix: multiply None by float

* chore: remove debug

(cherry picked from commit 393bc25)
  • Loading branch information
dj12djdjs authored and mergify[bot] committed Mar 28, 2023
1 parent 18d813a commit 4ee8527
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,8 @@ def calculate_exchange_rate_using_last_gle(company, account, party_type, party):
conditions.append(gl.company == company)
conditions.append(gl.account == account)
conditions.append(gl.is_cancelled == 0)
conditions.append((gl.debit > 0) | (gl.credit > 0))
conditions.append((gl.debit_in_account_currency > 0) | (gl.credit_in_account_currency > 0))
if party_type:
conditions.append(gl.party_type == party_type)
if party:
Expand Down

0 comments on commit 4ee8527

Please sign in to comment.