commit | 617a24191fb28216ed3ad3298ec60403062bd14e | [log] [tgz] |
---|---|---|
author | Saqib <thefalconx33@gmail.com> | Wed Jan 15 16:36:13 2020 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Wed Jan 15 16:36:13 2020 +0530 |
tree | 1e9a026b9693d2040cdf7fd4823afa69980df79a | |
parent | 61ad6292d6d3f64d8e2900130fd95deb2ddcb198 [diff] |
fix: get existing payment req amount only from unpaid req (#20289)
diff --git a/erpnext/accounts/doctype/payment_request/payment_request.py b/erpnext/accounts/doctype/payment_request/payment_request.py index 6133b1c..1aff43c 100644 --- a/erpnext/accounts/doctype/payment_request/payment_request.py +++ b/erpnext/accounts/doctype/payment_request/payment_request.py
@@ -373,6 +373,7 @@ reference_doctype = %s and reference_name = %s and docstatus = 1 + and status != 'Paid' """, (ref_dt, ref_dn)) return flt(existing_payment_request_amount[0][0]) if existing_payment_request_amount else 0