| | |
| | | @Transactional |
| | | public void startUpTestPACK(TestMast testMast) { |
| | | if(Cools.isEmpty(testMast.getLocNo())){ |
| | | throw new CoolException("库位号为空"); |
| | | }else if(Cools.isEmpty(testMast.getUserId())){ |
| | | throw new CoolException("用户编码为空"); |
| | | log.error("库位号为空"); |
| | | return; |
| | | }else if(Cools.isEmpty(testMast.getBarcode())){ |
| | | throw new CoolException("PACK码为空"); |
| | | log.error("PACK码为空"); |
| | | return; |
| | | } |
| | | LocMast locMast = locMastService.selectOne(new EntityWrapper<LocMast>() |
| | | .eq("loc_no", testMast.getLocNo()) |
| | | .eq("loc_sts","F") |
| | | ); |
| | | if (Cools.isEmpty(locMast)) { |
| | | throw new CoolException("未查询到库位号:"+testMast.getLocNo()+" 请检查库位号或者检查库位状态是否未在库"); |
| | | log.error("未查询到库位号:"+testMast.getLocNo()+" 请检查库位号或者检查库位状态是否未在库"); |
| | | return; |
| | | } |
| | | Date now = new Date(); |
| | | testMast.setStatus(1); |
| | | testMast.setChannel(locMast.getChannel()); |
| | | testMast.setModiTime(now); |
| | | testMast.setAppeTime(now); |
| | | |
| | | // 启动测试请求 |
| | | ReturnT<String> result=startUpTestPACK1(testMast); |
| | | if (!result.isSuccess()) { |
| | | if (Cools.isEmpty(result) || !result.isSuccess()) { |
| | | log.error("测试申请失败", testMast.getBarcode()); |
| | | throw new CoolException("测试申请失败"); |
| | | return; |
| | | } |
| | | testMast.setStatus(3); |
| | | |
| | | if (!testMastService.update(testMast,new EntityWrapper<TestMast>().eq("barcode", testMast.getBarcode()))){ |
| | | log.error("更新testMast失败"); |
| | | return; |
| | | } |
| | | |
| | | TestMast testMast1 = testMastService.selectOne(new EntityWrapper<TestMast>() |
| | | .eq("loc_no", testMast.getLocNo()) |
| | | .eq("barcode", testMast.getBarcode()) |
| | | .eq("user_id",testMast.getUserId()) |
| | | .eq("channel",locMast.getChannel().toString()) |
| | | .lt("status",4) |
| | | ); |
| | | if (Cools.isEmpty(testMast1)){ |
| | | if (!testMastService.insert(testMast)){ |
| | | throw new CoolException("添加testMast失败"); |
| | | } |
| | | }else { |
| | | if (!testMastService.update(testMast,new EntityWrapper<TestMast>() |
| | | .eq("loc_no", testMast.getLocNo()) |
| | | .eq("barcode", testMast.getBarcode()) |
| | | .eq("user_id",testMast.getUserId()) |
| | | .eq("channel",locMast.getChannel().toString()) |
| | | .lt("status",4) |
| | | )){ |
| | | throw new CoolException("更新testMast失败"); |
| | | } |
| | | } |
| | | |
| | | locMast.setPackStatus(1); |
| | | locMast.setPackStatus(2); |
| | | locMast.setModiTime(now); |
| | | if (!locMastService.update(locMast,new EntityWrapper<LocMast>().eq("loc_no", testMast.getLocNo()))){ |
| | | throw new CoolException("申请测试失败"); |
| | | log.error("申请测试失败"); |
| | | } |
| | | // throw new CoolException("异常!!!请规范使用或联系管理员"); |
| | | |
| | | } |
| | | @Override |
| | | @Transactional |
| | | public void suspendTestPACK(String channel) { |
| | | public boolean suspendTestPACK(String channel) { |
| | | ReturnT<String> result=suspendTestPACK1(channel); |
| | | if (!result.isSuccess()) { |
| | | log.error("暂停测试失败"); |
| | | } |
| | | return result.isSuccess(); |
| | | } |
| | | @Transactional |
| | | public ReturnT<String> startUpTestPACK1(TestMast testMast){ |
| | |
| | | try { |
| | | Review review=new Review(); |
| | | review.setLocNo(testMast.getLocNo()); |
| | | review.setUserId(testMast.getUserId()); |
| | | review.setBarcode(testMast.getBarcode()); |
| | | review.setChannel(testMast.getChannel().toString()); |
| | | review.setRequestTime(DateUtils.convert(new Date())); |
| | | if (testMast.getChannel()<1 || testMast.getChannel()>48){ |
| | | log.error("通道有误,请查看!"); |
| | | return null; |
| | | } else if (testMast.getChannel()<=8){ |
| | | renUrl=renUrl1; |
| | | }else if (testMast.getChannel()<=16){ |