Update fix_invoice_outstanding.py
diff --git a/erpnext/patches/v5_4/fix_invoice_outstanding.py b/erpnext/patches/v5_4/fix_invoice_outstanding.py
index 81b8f2c..54a1da6 100644
--- a/erpnext/patches/v5_4/fix_invoice_outstanding.py
+++ b/erpnext/patches/v5_4/fix_invoice_outstanding.py
@@ -6,7 +6,8 @@
from erpnext.accounts.doctype.gl_entry.gl_entry import update_outstanding_amt
def execute():
+ frappe.reload_doctype("Sales Invoice")
return_entries = frappe.get_list("Sales Invoice", filters={"is_return": 1, "docstatus": 1},
fields=["debit_to", "customer", "return_against"])
for d in return_entries:
- update_outstanding_amt(d.debit_to, "Customer", d.customer, "Sales Invoice", d.return_against)
\ No newline at end of file
+ update_outstanding_amt(d.debit_to, "Customer", d.customer, "Sales Invoice", d.return_against)