| | |
| | | for (LocDetlAdjust adjust : list) { |
| | | boolean exit = false; |
| | | for (LocDetlAdjust copy : copyList) { |
| | | if (adjust.getMatnr().equals(copy.getMatnr()) && Cools.eq(adjust.getBatch(), copy.getBatch())) { |
| | | if (adjust.getMatnr().equals(copy.getMatnr()) && Cools.eq(adjust.getBatch(), copy.getBatch()) && Cools.eq(adjust.getSuppCode(),copy.getSuppCode()) && Cools.eq(adjust.getThreeCode(),copy.getThreeCode()) && Cools.eq(adjust.getDeadTime(),copy.getDeadTime())) { |
| | | copy.setCount(copy.getCount() + adjust.getCount()); |
| | | exit = true; |
| | | break; |