Merge pull request #28748 from deepeshgarg007/accounts_receivable_jv_due_date

fix: Ageing in AR/AP report for advances
This commit is contained in:
Deepesh Garg 2021-12-12 17:27:21 +05:30 committed by GitHub
commit b966c45fa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -545,7 +545,9 @@ class ReceivablePayableReport(object):
def set_ageing(self, row):
if self.filters.ageing_based_on == "Due Date":
entry_date = row.due_date
# use posting date as a fallback for advances posted via journal and payment entry
# when ageing viewed by due date
entry_date = row.due_date or row.posting_date
elif self.filters.ageing_based_on == "Supplier Invoice Date":
entry_date = row.bill_date
else: