mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-20 21:49:18 +00:00
fix(mode of payment): use valid syntax
This commit is contained in:
@@ -7,7 +7,7 @@ frappe.ui.form.on("Mode of Payment", {
|
|||||||
let d = locals[cdt][cdn];
|
let d = locals[cdt][cdn];
|
||||||
return {
|
return {
|
||||||
filters: [
|
filters: [
|
||||||
["Account", "account_type", "in", "Bank, Cash, Receivable"],
|
["Account", "account_type", "in", ["Bank", "Cash", "Receivable"]],
|
||||||
["Account", "is_group", "=", 0],
|
["Account", "is_group", "=", 0],
|
||||||
["Account", "company", "=", d.company],
|
["Account", "company", "=", d.company],
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user