fix: incorrect available_qty being set (#22539)
* fix: incorrect available_qty being set * style: descriptive variables
This commit is contained in:
parent
aa94abf601
commit
9bd5f1e4b0
@ -338,8 +338,8 @@ erpnext.SerialNoBatchSelector = Class.extend({
|
||||
};
|
||||
},
|
||||
change: function () {
|
||||
let val = this.get_value();
|
||||
if (val.length === 0) {
|
||||
const batch_no = this.get_value();
|
||||
if (!batch_no) {
|
||||
this.grid_row.on_grid_fields_dict
|
||||
.available_qty.set_value(0);
|
||||
return;
|
||||
@ -359,14 +359,11 @@ erpnext.SerialNoBatchSelector = Class.extend({
|
||||
return;
|
||||
}
|
||||
|
||||
let batch_number = me.item.batch_no ||
|
||||
this.grid_row.on_grid_fields_dict.batch_no.get_value();
|
||||
|
||||
if (me.warehouse_details.name) {
|
||||
frappe.call({
|
||||
method: 'erpnext.stock.doctype.batch.batch.get_batch_qty',
|
||||
args: {
|
||||
batch_no: batch_number,
|
||||
batch_no,
|
||||
warehouse: me.warehouse_details.name,
|
||||
item_code: me.item_code
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user