Merge pull request #23193 from bhavesh95863/patch-10

fix: can't multiply sequence by non-int of type 'float
This commit is contained in:
rohitwaghchaure
2020-08-28 20:01:05 +05:30
committed by GitHub

View File

@@ -356,7 +356,7 @@ erpnext.PointOfSale.ItemCart = class {
onchange: function() { onchange: function() {
if (this.value || this.value == 0) { if (this.value || this.value == 0) {
const frm = me.events.get_frm(); const frm = me.events.get_frm();
frappe.model.set_value(frm.doc.doctype, frm.doc.name, 'additional_discount_percentage', this.value); frappe.model.set_value(frm.doc.doctype, frm.doc.name, 'additional_discount_percentage', flt(this.value));
me.hide_discount_control(this.value); me.hide_discount_control(this.value);
} }
}, },