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
commit 2badd93d8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
},