| | |
| | | @Override |
| | | public void updateOrderByProductNum(String onlineCompletionMark, String productNum, String stationCode) { |
| | | LambdaUpdateWrapper<OmProductionOrdeInfo> updateWrapper = new LambdaUpdateWrapper<>(); |
| | | if(stationCode.equals("OP230")){ |
| | | if(stationCode.contains("M1OP100")){ |
| | | updateWrapper.set(OmProductionOrdeInfo::getOnlineCompletionMark,onlineCompletionMark); |
| | | updateWrapper.set(OmProductionOrdeInfo::getActualStartTime,new Date()); |
| | | } |
| | | if(stationCode.equals("OP500")){ |
| | | if(stationCode.equals("MOP220")){ |
| | | updateWrapper.set(OmProductionOrdeInfo::getSfResult,onlineCompletionMark); |
| | | } |
| | | updateWrapper.eq(OmProductionOrdeInfo::getProductNum,productNum); |
| | | OmProductionOrdeInfo omProductionOrdeInfo = new OmProductionOrdeInfo(); |
| | | omProductionOrdeInfoService.update(omProductionOrdeInfo,updateWrapper); |
| | | } |
| | | |
| | | @Override |
| | | public OmProductionOrdeInfo getLastOrder() { |
| | | return omProductionOrdeInfoMapper.getLastOrder(); |
| | | } |
| | | } |