SOP: FARO QUICK COMPLETE FIX
SOP: FARO QUICK COMPLETE FIX 12/13/2011
Quick complete was failing on the two scaenarios
-
The product was short
-
The Product was canceled
-
Code in effect was the following
-
-
See the last line
-
WHERE pl.allocated = 1 AND pl.qty_picked = 0 AND pl.packslip = '{0}'", packslip);
-
-
This was changed and tested because division by zero was happening for unallocated cartons in code.
-
Code is changed to …
-
-
-
Added to the where code “pl.n_alloc > 0 and”
-