Revision 629dabf6
Von Sven Schöling vor fast 3 Jahren hinzugefügt
js/kivi.DeliveryOrder.js | ||
---|---|---|
106 | 106 |
|
107 | 107 |
let data = []; |
108 | 108 |
$("#stock-in-out-table tr.listrow").each((i,row) => { |
109 |
let qty = kivi.parse_amount($(row).find(".data-qty").val()); |
|
110 |
|
|
111 |
if (qty === 0) return; |
|
112 |
|
|
109 | 113 |
data.push({ |
110 |
qty: kivi.parse_amount($(row).find(".data-qty").val()),
|
|
114 |
qty: qty,
|
|
111 | 115 |
warehouse_id: $(row).find(".data-warehouse-id").val(), |
112 | 116 |
bin_id: $(row).find(".data-bin-id").val(), |
113 | 117 |
chargenumber: $(row).find(".data-chargenumber").val(), |
Auch abrufbar als: Unified diff
DeliveryOrder: absicherung gegen leere stock Einträge