Revert "fix: Salary component account filter (#26604)"

This reverts commit ae9d1d9617015b6e2714a9fcd027a2957053d99a.
This commit is contained in:
Rushabh Mehta 2021-08-24 08:33:57 +05:30 committed by GitHub
parent 69973a65aa
commit 49e0a4f287

View File

@ -4,18 +4,11 @@
frappe.ui.form.on('Salary Component', { frappe.ui.form.on('Salary Component', {
setup: function(frm) { setup: function(frm) {
frm.set_query("account", "accounts", function(doc, cdt, cdn) { frm.set_query("account", "accounts", function(doc, cdt, cdn) {
let d = frappe.get_doc(cdt, cdn); var d = locals[cdt][cdn];
let root_type = "Liability";
if (frm.doc.type == "Deduction") {
root_type = "Expense";
}
return { return {
filters: { filters: {
"is_group": 0, "is_group": 0,
"company": d.company, "company": d.company
"root_type": root_type
} }
}; };
}); });