自动化立体仓库 - WMS系统
*
lsh
6 小时以前 26493fe5a12ce09bd3cc489421b6e2872e6542c0
src/main/java/com/zy/asrs/service/impl/WorkServiceImpl.java
@@ -1102,6 +1102,16 @@
    @Override
    @Transactional
    public void mesLogMkWrkMast(String workNo, Long userId) {
        WrkMast wrkMast = wrkMastService.selectById(workNo);
        wrkMast.setLogMk("Y");
        if (!wrkMastService.updateById(wrkMast)) {
            throw new CoolException("修改工作档失败");
        }
    }
    @Override
    @Transactional
    public void completeWrkMast(String workNo, Long userId) {
        WrkMast wrkMast = wrkMastService.selectById(workNo);
        if (Cools.isEmpty(wrkMast)){
@@ -1125,6 +1135,7 @@
        wrkMast.setModiTime(now);
        wrkMast.setModiUser(userId);
        wrkMast.setSheetNo("3");
        wrkMast.setLogMk("N");
        // 完成操作人员记录
        wrkMast.setManuType("手动完成");
        if (!wrkMastService.updateById(wrkMast)) {