Revision f0a2fbcf
Von Werner Hahn vor fast 2 Jahren hinzugefügt
js/kivi.DeliveryOrder.js | ||
---|---|---|
148 | 148 |
$("#stock-in-out-table tr.listrow").each((i,row) => { |
149 | 149 |
let qty = kivi.parse_amount($(row).find(".data-qty").val()); |
150 | 150 |
|
151 |
if (qty === 0) return; |
|
152 |
if (qty === null) return; |
|
151 |
if (qty === 0 || qty === null) return; |
|
153 | 152 |
|
154 | 153 |
data.push({ |
155 | 154 |
qty: qty, |
Auch abrufbar als: Unified diff
DeliveryOrder js update_stock chargen genau berichtigt