自动化立体仓库 - WMS系统
#
LSH
2023-05-17 f5f7889cd423667b4b6d63d12ff9c78750952262
src/main/java/com/zy/asrs/controller/MobileController.java
@@ -330,22 +330,25 @@
    /*...........................赣州新增..............以下.............赣州新增...........................*/
    @PostMapping("/test/startUp/auth")
    @ManagerAuth(memo = "申请PACK测试")
    public synchronized R startUpTestPACK(@RequestBody TestMast testMast) {
        if (Cools.isEmpty(testMast)) {
            return R.parse(BaseRes.PARAM);
        }
        mobileService.startUpTestPACK(testMast); //提交测试系统
        return R.ok();
    }
//    @PostMapping("/test/startUp/auth")
//    @ManagerAuth(memo = "申请PACK测试")
//    public synchronized R startUpTestPACK(@RequestBody TestMast testMast) {
//        if (Cools.isEmpty(testMast)) {
//            return R.parse(BaseRes.PARAM);
//        }
//        mobileService.startUpTestPACK(testMast); //提交测试系统
//        return R.ok();
//    }
    @PostMapping("/test/suspend/auth")
//    @ManagerAuth(memo = "暂停测试")
    @ResponseBody
    public synchronized R suspendTestPACK(@RequestBody SearchLocParam param) {
        mobileService.suspendTestPACK(param.getBarcode());  //请求暂停测试
        return R.ok();
        if (mobileService.suspendTestPACK(param.getBarcode())){  //请求暂停测试
            return R.ok();
        }else {
            return R.error("暂停失败");
        }
    }
    /*...........................赣州新增..............以上.............赣州新增...........................*/