fix: add missing semicolons

This commit is contained in:
Saqib Ansari 2021-06-24 14:29:22 +05:30
parent ea70f6f933
commit e39c3f2e69
2 changed files with 4 additions and 5 deletions

View File

@ -276,14 +276,13 @@ erpnext.PointOfSale.Controller = class {
form_updated: (item, field, value) => { form_updated: (item, field, value) => {
const item_row = frappe.model.get_doc(item.doctype, item.name); const item_row = frappe.model.get_doc(item.doctype, item.name);
if (item_row && item_row[field] != value) { if (item_row && item_row[field] != value) {
const args = { const args = {
field, field,
value, value,
item: this.item_details.current_item item: this.item_details.current_item
} };
return this.on_cart_update(args) return this.on_cart_update(args)
} };
return Promise.resolve(); return Promise.resolve();
}, },

View File

@ -57,7 +57,7 @@ erpnext.PointOfSale.ItemDetails = class {
compare_with_current_item(item) { compare_with_current_item(item) {
// returns true if `item` is currently being edited // returns true if `item` is currently being edited
return item && item.name == this.current_item.name return item && item.name == this.current_item.name;
} }
toggle_item_details_section(item) { toggle_item_details_section(item) {
@ -76,7 +76,7 @@ erpnext.PointOfSale.ItemDetails = class {
this.item_row = item; this.item_row = item;
this.currency = this.events.get_frm().doc.currency; this.currency = this.events.get_frm().doc.currency;
this.current_item = item this.current_item = item;
this.render_dom(item); this.render_dom(item);
this.render_discount_dom(item); this.render_discount_dom(item);