491492493494495496497498
rowCounter++; Colli colli = null; if (collies.size() >= rowCounter) { colli = collies.get(rowCounter - 1); } readyCountList.add(new ReadyCount(order, colli, orderLine, rowCounter)); return rowCounter; }
514515516517518519520521
OrderLine orderLine = null; if (missing.size() >= rows) { orderLine = missing.get(rows - 1); } readyCountList.add(new ReadyCount(order, colli, orderLine, rows)); return rows; }