Fixes #12810 for Offline POS
This commit is contained in:
parent
056c1709c6
commit
1a4d77a962
@ -1177,8 +1177,17 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
|
|||||||
$(this.wrapper).on("change", ".pos-item-disc", function () {
|
$(this.wrapper).on("change", ".pos-item-disc", function () {
|
||||||
var item_code = $(this).parents(".pos-selected-item-action").attr("data-item-code");
|
var item_code = $(this).parents(".pos-selected-item-action").attr("data-item-code");
|
||||||
var discount = $(this).val();
|
var discount = $(this).val();
|
||||||
me.update_discount(item_code, discount)
|
if(discount > 100){
|
||||||
me.update_value()
|
discount = $(this).val('');
|
||||||
|
frappe.show_alert({
|
||||||
|
indicator: 'red',
|
||||||
|
message: __('Discount amount cannot be greater than 100%')
|
||||||
|
});
|
||||||
|
me.update_discount(item_code, discount);
|
||||||
|
}else{
|
||||||
|
me.update_discount(item_code, discount);
|
||||||
|
me.update_value();
|
||||||
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -2006,4 +2015,4 @@ erpnext.pos.PointOfSale = erpnext.taxes_and_totals.extend({
|
|||||||
frappe.throw(__("LocalStorage is full , did not save"))
|
frappe.throw(__("LocalStorage is full , did not save"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
Loading…
x
Reference in New Issue
Block a user