fix: filter for payment order (#19070)
diff --git a/erpnext/accounts/doctype/payment_order/payment_order.js b/erpnext/accounts/doctype/payment_order/payment_order.js
index ce9cfe5..d6d4946 100644
--- a/erpnext/accounts/doctype/payment_order/payment_order.js
+++ b/erpnext/accounts/doctype/payment_order/payment_order.js
@@ -66,10 +66,10 @@
get_query_filters: {
bank: frm.doc.bank,
docstatus: 1,
- payment_type: ("!=", "Receive"),
+ payment_type: ["!=", "Receive"],
bank_account: frm.doc.company_bank_account,
paid_from: frm.doc.account,
- payment_order_status: ["=", "Initiated"],
+ payment_order_status: ["=", "Initiated"]
}
});
},