| | |
| | | |
| | | |
| | | @Override |
| | | public ManLocDetl selectItem(String locNo, String matnr, String batch) { |
| | | return this.baseMapper.selectItem(locNo, matnr, batch); |
| | | public ManLocDetl selectItem(String locNo, String matnr, String batch, String csocode, String isoseq, String containerCode) { |
| | | return this.baseMapper.selectItem(locNo, matnr, batch,csocode,isoseq,containerCode); |
| | | } |
| | | |
| | | @Override |
| | |
| | | public void adjustLocDetl(LocDetlAdjustParam param, Long userId, User user) { |
| | | Date now = new Date(); |
| | | for (LocDetlAdjustParam.LocDetlAdjust locDetlAdjust : param.getList()) { |
| | | ManLocDetl manLocDetl = this.baseMapper.selectItem(param.getLocNo(), locDetlAdjust.getMatnr(), locDetlAdjust.getBatch()); |
| | | ManLocDetl manLocDetl = this.baseMapper.selectItem(param.getLocNo(), locDetlAdjust.getMatnr(), locDetlAdjust.getBatch(),locDetlAdjust.getThreeCode(),locDetlAdjust.getDeadTime(),locDetlAdjust.getSuppCode()); |
| | | |
| | | if(Cools.isEmpty(manLocDetl)){ |
| | | addManlocDetl(locDetlAdjust,param.getLocNo()); |