自动化立体仓库 - WMS系统
#
yxFwq
1 天以前 1bca6724e27a66b39d5494576564f57dd2202399
src/main/java/com/zy/asrs/controller/BasErrorDeviceController.java
@@ -44,7 +44,23 @@
            errorDeviceParam.setEquipmentNo(locMast.getLocNo());
            errorDeviceParamList.add(errorDeviceParam);
        }
        List<LocMast> locMastList3 = locMastService.asrLocMastNotInDetl3();
        for (LocMast locMast : locMastList3){
            ErrorDeviceParam errorDeviceParam = new ErrorDeviceParam();
            errorDeviceParam.setErrorM("库位为F/D但存在工作档案");
            errorDeviceParam.setCategory("库位");
            errorDeviceParam.setEquipmentNo(locMast.getLocNo());
            errorDeviceParamList.add(errorDeviceParam);
        }
        return R.ok(errorDeviceParamList);
    }
    @RequestMapping(value = "/locSts/adjacentLocMast")
    @ManagerAuth
    public R adjacentLocMast() {
        return R.ok(locMastService.adjacentLocMast());
    }
}