[minor] removed cur_frm and added frappe.ui.form.on (#8803)

This commit is contained in:
Makarand Bauskar 2017-05-16 08:35:39 +05:30 committed by Nabin Hait
parent 156eef1907
commit 5886aafbae

View File

@ -1,11 +1,12 @@
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
$.extend(cur_frm.cscript, {
refresh: function() {
cur_frm.add_custom_button(__("Add / Edit Prices"), function() {
frappe.ui.form.on("Price List", {
refresh: function(frm) {
let me = this;
frm.add_custom_button(__("Add / Edit Prices"), function() {
frappe.route_options = {
"price_list": cur_frm.doc.name
"price_list": frm.doc.name
};
frappe.set_route("Report", "Item Price");
}, "fa fa-money");