[lint] fixes
diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js
index 03f9f12..cd8e7bd 100644
--- a/erpnext/public/js/controllers/transaction.js
+++ b/erpnext/public/js/controllers/transaction.js
@@ -273,7 +273,7 @@
} else if((this.frm.doc.doctype === 'Purchase Receipt' && me.frm.doc.is_return) ||
this.frm.doc.doctype === 'Delivery Note') {
- show_batch_dialog = 1;
+ show_batch_dialog = 1;
}
// clear barcode if setting item (else barcode will take priority)
@@ -1186,7 +1186,7 @@
erpnext.show_serial_batch_selector = function(frm, d) {
frappe.require("assets/erpnext/js/utils/serial_no_batch_selector.js", function() {
- let serial_no_batch_selector = new erpnext.SerialNoBatchSelector({
+ new erpnext.SerialNoBatchSelector({
frm: frm,
item: d,
warehouse_details: {
diff --git a/erpnext/public/js/utils/serial_no_batch_selector.js b/erpnext/public/js/utils/serial_no_batch_selector.js
index ceca9ac..fce8da9 100644
--- a/erpnext/public/js/utils/serial_no_batch_selector.js
+++ b/erpnext/public/js/utils/serial_no_batch_selector.js
@@ -124,8 +124,6 @@
},
set_items: function() {
- var me = this;
-
if(this.has_batch) {
this.values.batches.map((batch, i) => {
let row = (i !== 0) ? this.frm.add_child("items") : this.item;
@@ -135,6 +133,7 @@
// let grid_row = me.frm.fields_dict.items.grid.grid_rows[index];
// grid_row.toggle_editable_row();
// grid_row.on_grid_fields_dict.item_code.set_value(this.item_code);
+
row.item_code = this.item_code;
}
this.map_row_values(row, batch, 'batch_no',
@@ -165,7 +164,6 @@
let batches_field = this.dialog.fields_dict.batches;
let qty_field = this.dialog.fields_dict.qty;
- let item_code = this.item_code;
let update_quantity = (batch) => {
if(batch) {
@@ -181,7 +179,7 @@
.replace(/\n/g, ' ').match(/\S+/g) || [];
qty_field.set_input(serial_numbers.length);
}
- }
+ };
if(serial_no_link) {
let serial_list = [];
@@ -304,9 +302,10 @@
}
if(me.warehouse_details.type === 'Source Warehouse' &&
parseFloat(available_qty) < parseFloat(selected_qty)) {
- this.set_value('0');
- frappe.throw(__(`For transfer from source, selected quantity cannot be
- greater than available quantity`));
+
+ this.set_value('0');
+ frappe.throw(__(`For transfer from source, selected quantity cannot be
+ greater than available quantity`));
} else {
this.grid.refresh();
}
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js
index 04cf5d7..96c7802 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry.js
+++ b/erpnext/stock/doctype/stock_entry/stock_entry.js
@@ -569,7 +569,7 @@
}
frappe.require("assets/erpnext/js/utils/serial_no_batch_selector.js", function() {
- let serial_no_batch_selector = new erpnext.SerialNoBatchSelector({
+ new erpnext.SerialNoBatchSelector({
frm: frm,
item: item,
warehouse_details: get_warehouse_type_and_name(item),