fix: syntax error in serial/batch selector (#26024)

This commit is contained in:
Ankush Menat 2021-06-11 21:01:30 +05:30 committed by GitHub
parent 9891780f5a
commit 348f04ca82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -324,7 +324,7 @@ erpnext.SerialNoBatchSelector = class SerialNoBatchSelector {
qty_field.set_input(total_qty); qty_field.set_input(total_qty);
} }
update_pending_qtys: function() { update_pending_qtys() {
const pending_qty_field = this.dialog.fields_dict.pending_qty; const pending_qty_field = this.dialog.fields_dict.pending_qty;
const total_selected_qty_field = this.dialog.fields_dict.total_selected_qty; const total_selected_qty_field = this.dialog.fields_dict.total_selected_qty;
@ -340,7 +340,7 @@ erpnext.SerialNoBatchSelector = class SerialNoBatchSelector {
total_selected_qty_field.set_input(total_selected_qty); total_selected_qty_field.set_input(total_selected_qty);
} }
get_batch_fields: function() { get_batch_fields() {
var me = this; var me = this;
return [ return [
@ -537,7 +537,7 @@ erpnext.SerialNoBatchSelector = class SerialNoBatchSelector {
} }
]; ];
} }
}); };
function get_pending_qty_fields(me) { function get_pending_qty_fields(me) {
if (!check_can_calculate_pending_qty(me)) return []; if (!check_can_calculate_pending_qty(me)) return [];