Fix quotes issue in item.js

This commit is contained in:
Suraj Shetty
2018-12-24 19:43:31 +05:30
parent a3f28d40b0
commit b763893f22

View File

@@ -126,7 +126,7 @@ frappe.ui.form.on("Item", {
image: function() { image: function() {
refresh_field("image_view"); refresh_field("image_view");
}, },
is_customer_provided_item: function(frm) { is_customer_provided_item: function(frm) {
frm.toggle_reqd('customer', frm.doc.is_customer_provided_item ? 1:0); frm.toggle_reqd('customer', frm.doc.is_customer_provided_item ? 1:0);
}, },
@@ -587,7 +587,7 @@ $.extend(erpnext.item, {
} }
var d = new frappe.ui.Dialog({ var d = new frappe.ui.Dialog({
title: __('Create Variant"), title: __('Create Variant'),
fields: fields fields: fields
}); });