FIX erreur
This commit is contained in:
parent
c0c540f4cb
commit
17af973da3
@ -95,14 +95,15 @@ function addDispatchLine(index, type, mode)
|
|||||||
// If user did not reduced the qty to dispatch on old line, we keep only 1 on old line and the rest on new line
|
// If user did not reduced the qty to dispatch on old line, we keep only 1 on old line and the rest on new line
|
||||||
if (qtyDispatched == qtyOrdered && qtyDispatched > 1) {
|
if (qtyDispatched == qtyOrdered && qtyDispatched > 1) {
|
||||||
qtyDispatched = parseFloat($("#qty_dispatched_" + index).val()) + 1;
|
qtyDispatched = parseFloat($("#qty_dispatched_" + index).val()) + 1;
|
||||||
if (mode != 'allmissingconsume' || mode != 'alltoproduce') mode = 'lessone';
|
|
||||||
|
|
||||||
}
|
}
|
||||||
if(mode == 'allmissingconsume' || mode == 'alltoproduce') {
|
if(mode == 'allmissingconsume' || mode == 'alltoproduce') {
|
||||||
var qtymax = parseFloat($($row).data('max-qty'));
|
var qtymax = parseFloat($($row).data('max-qty'));
|
||||||
|
if(qtymax === 'undefined') qtymax = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if(mode == 'allmissingconsume' || mode == 'alltoproduce') {
|
if(mode == 'allmissingconsume' || mode == 'alltoproduce') {
|
||||||
var count = 0;
|
var count = 0;
|
||||||
var qtyalreadyused = 0;
|
var qtyalreadyused = 0;
|
||||||
@ -110,7 +111,6 @@ function addDispatchLine(index, type, mode)
|
|||||||
while (count < qty) {
|
while (count < qty) {
|
||||||
//If remaining qty needed is inferior to qtymax, qtymax = remaining qty needed
|
//If remaining qty needed is inferior to qtymax, qtymax = remaining qty needed
|
||||||
if ((qtyalreadyused + qtymax) > qtyOrdered) qtymax = qtyOrdered - qtyalreadyused;
|
if ((qtyalreadyused + qtymax) > qtyOrdered) qtymax = qtyOrdered - qtyalreadyused;
|
||||||
|
|
||||||
//If first line, we replace value, not add line
|
//If first line, we replace value, not add line
|
||||||
if(count === 0){
|
if(count === 0){
|
||||||
$("#"+inputId+"-"+index+"-"+nbrTrs).val(qtymax);
|
$("#"+inputId+"-"+index+"-"+nbrTrs).val(qtymax);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user