fix(Supplier): add make_method for Pricing Rule (#49282)

This commit is contained in:
Raffael Meyer
2025-08-22 19:18:42 +02:00
committed by GitHub
parent 655af24183
commit ba840d22e5

View File

@@ -67,6 +67,7 @@ frappe.ui.form.on("Supplier", {
frm.make_methods = {
"Bank Account": () => erpnext.utils.make_bank_account(frm.doc.doctype, frm.doc.name),
"Pricing Rule": () => erpnext.utils.make_pricing_rule(frm.doc.doctype, frm.doc.name),
};
},