Browse Source

fix: value fetching for custom field in POS (#26366)

develop
Subin Tom 3 years ago
committed by GitHub
parent
commit
95a15ed85d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      erpnext/selling/page/point_of_sale/pos_payment.js

2
erpnext/selling/page/point_of_sale/pos_payment.js

@ -56,7 +56,7 @@ erpnext.PointOfSale.Payment = class {
);
let df_events = {
onchange: function() {
frm.set_value(this.df.fieldname, this.value);
frm.set_value(this.df.fieldname, this.get_value());
}
};
if (df.fieldtype == "Button") {

Loading…
Cancel
Save