Merge pull request #39831 from Nihantra-Patel/fix_payment_period_si

fix: remove cancelled payment entry from Payment Period Based On Invoice Date
This commit is contained in:
ruthra kumar 2024-02-23 06:00:02 +05:30 committed by GitHub
commit 20eff568b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -163,7 +163,7 @@ def get_entries(filters):
"""select
voucher_type, voucher_no, party_type, party, posting_date, debit, credit, remarks, against_voucher
from `tabGL Entry`
where company=%(company)s and voucher_type in ('Journal Entry', 'Payment Entry') {0}
where company=%(company)s and voucher_type in ('Journal Entry', 'Payment Entry') and is_cancelled = 0 {0}
""".format(
get_conditions(filters)
),