Revision 4db44f30
Von Werner Hahn vor etwa 2 Jahren hinzugefügt
js/kivi.DeliveryOrder.js | ||
---|---|---|
117 | 117 |
$("#stock-in-out-table tr.listrow").each((i,row) => { |
118 | 118 |
let qty = kivi.parse_amount($(row).find(".data-qty").val()); |
119 | 119 |
|
120 |
if (qty === 0) return; |
|
120 |
if (qty === 0 || qty === null) return;
|
|
121 | 121 |
|
122 | 122 |
data.push({ |
123 | 123 |
qty: qty, |
Auch abrufbar als: Unified diff
DeliveryOrder js update_stock chargen genau berichtigt