mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 11:19:09 +00:00
Merge pull request #18355 from Mangesh-Khairnar/fix-get-outstanding-invoices
fix(payment-entry): remove unused argument
This commit is contained in:
@@ -601,7 +601,7 @@ def get_outstanding_reference_documents(args):
|
|||||||
condition += " and company = {0}".format(frappe.db.escape(args.get("company")))
|
condition += " and company = {0}".format(frappe.db.escape(args.get("company")))
|
||||||
|
|
||||||
outstanding_invoices = get_outstanding_invoices(args.get("party_type"), args.get("party"),
|
outstanding_invoices = get_outstanding_invoices(args.get("party_type"), args.get("party"),
|
||||||
args.get("party_account"), filters=args, condition=condition, limit=100)
|
args.get("party_account"), filters=args, condition=condition)
|
||||||
|
|
||||||
for d in outstanding_invoices:
|
for d in outstanding_invoices:
|
||||||
d["exchange_rate"] = 1
|
d["exchange_rate"] = 1
|
||||||
|
|||||||
Reference in New Issue
Block a user