fix: apply filters in all transactions
This commit is contained in:
parent
275ebefdd2
commit
08f842d12e
@ -159,6 +159,27 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
if (this.frm.fields_dict["items"].grid.get_field("cost_center")) {
|
||||||
|
this.frm.set_query("cost_center", "items", function(doc) {
|
||||||
|
return {
|
||||||
|
filters: {
|
||||||
|
"company": doc.company,
|
||||||
|
"is_group": 0
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.frm.fields_dict["items"].grid.get_field("expense_account")) {
|
||||||
|
this.frm.set_query("expense_account", "items", function(doc) {
|
||||||
|
return {
|
||||||
|
filters: {
|
||||||
|
"company": doc.company
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if(frappe.meta.get_docfield(this.frm.doc.doctype, "pricing_rules")) {
|
if(frappe.meta.get_docfield(this.frm.doc.doctype, "pricing_rules")) {
|
||||||
this.frm.set_indicator_formatter('pricing_rule', function(doc) {
|
this.frm.set_indicator_formatter('pricing_rule', function(doc) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user