fix: Add non group filter for account

This commit is contained in:
Deepesh Garg 2021-05-25 22:34:58 +05:30
parent 8fddd0f0c1
commit 5e27c7dae2

View File

@ -97,7 +97,8 @@ frappe.ui.form.on('Payment Entry', {
return {
filters: {
"company": frm.doc.company,
"root_type": ["in", ["Asset", "Liability"]]
"root_type": ["in", ["Asset", "Liability"]],
"is_group": 0
}
}
});