| | |
| | | public synchronized Double getIoPri(Integer ioType, String locNo) { |
| | | Double defaultIoPri = null; |
| | | if (Cools.isEmpty(ioType, locNo)) { |
| | | return 15.0D; |
| | | return 100.0D; |
| | | } |
| | | if (ioType != 11) { |
| | | // 入库 |
| | | if (ioType < 100) { |
| | | List<String> groupOuterLoc = Utils.getGroupOuterLoc(locNo); |
| | | if (!Cools.isEmpty(groupOuterLoc)) { |
| | | for (String outerLoc : groupOuterLoc) { |
| | | WrkMast wrkMast = this.baseMapper.selectByLocNoOfPakin(outerLoc); |
| | | List<String> groupInnerLoc = Utils.getGroupInnerLoc(locNo); |
| | | if (!Cools.isEmpty(groupInnerLoc)) { |
| | | for (String innerLoc : groupInnerLoc) { |
| | | WrkMast wrkMast = this.baseMapper.selectByLocNoOfPakin(innerLoc); |
| | | if (wrkMast != null) { |
| | | defaultIoPri = defaultIoPri == null ? wrkMast.getIoPri() + 2 : defaultIoPri + 2; |
| | | } |
| | | } |
| | | } |
| | | List<String> groupInsideLoc = Utils.getGroupInsideLoc(locNo); |
| | | if (!Cools.isEmpty(groupInsideLoc)) { |
| | | for (String insideLoc : groupInsideLoc) { |
| | | WrkMast wrkMast = this.baseMapper.selectByLocNoOfPakin(insideLoc); |
| | | if (wrkMast != null) { |
| | | defaultIoPri = defaultIoPri == null ? wrkMast.getIoPri() - 2 : defaultIoPri - 2; |
| | | defaultIoPri = wrkMast.getIoPri() - 2; |
| | | } |
| | | } |
| | | } |
| | |
| | | for (String outerLoc : groupOuterLoc) { |
| | | WrkMast wrkMast = this.baseMapper.selectBySourceLocNoOfPakout(outerLoc); |
| | | if (wrkMast != null) { |
| | | defaultIoPri = defaultIoPri == null ? wrkMast.getIoPri() - 2 : defaultIoPri - 2; |
| | | } |
| | | } |
| | | } |
| | | List<String> groupInsideLoc = Utils.getGroupInsideLoc(locNo); |
| | | if (!Cools.isEmpty(groupInsideLoc)) { |
| | | for (String insideLoc : groupInsideLoc) { |
| | | WrkMast wrkMast = this.baseMapper.selectBySourceLocNoOfPakout(insideLoc); |
| | | if (wrkMast != null) { |
| | | defaultIoPri = defaultIoPri == null ? wrkMast.getIoPri() + 2 : defaultIoPri + 2; |
| | | defaultIoPri = wrkMast.getIoPri() - 2; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | // 移库 |
| | | } else { |
| | | // @Deprecated |
| | | } |
| | | return defaultIoPri == null ? 15.0D : defaultIoPri; |
| | | return defaultIoPri == null ? 100.0D : defaultIoPri; |
| | | } |
| | | |
| | | @Override |
| | |
| | | .last(" and (wrk_sts in (1,2) or (wrk_sts=3 and wrk_no in (select wrk_no from asr_bas_devp)))")); |
| | | } |
| | | |
| | | @Override |
| | | public Boolean setSteEmpty(Integer wrkNo) { |
| | | return this.baseMapper.setSteEmpty(wrkNo) > 0; |
| | | } |
| | | |
| | | @Override |
| | | public WrkMast selectOfPick(Integer wrkNo, Integer ioType) { |
| | | return this.baseMapper.selectOfPick(wrkNo, ioType); |
| | | } |
| | | |
| | | @Override |
| | | public List<WrkMast> selectSameMatnrs(String matnr) { |
| | | return this.baseMapper.selectSameMatnrs(matnr); |
| | | } |
| | | |
| | | } |