Merge pull request #23193 from bhavesh95863/patch-10
fix: can't multiply sequence by non-int of type 'float
This commit is contained in:
commit
2badd93d8f
@ -356,7 +356,7 @@ erpnext.PointOfSale.ItemCart = class {
|
||||
onchange: function() {
|
||||
if (this.value || this.value == 0) {
|
||||
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);
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user