自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-13 9a6e638149777ec5129d192337e5277b47d85d97
src/main/java/com/zy/asrs/service/impl/WorkServiceImpl.java
@@ -7,6 +7,7 @@
import com.zy.asrs.entity.LocMast;
import com.zy.asrs.entity.MatCodeCountDto;
import com.zy.asrs.entity.WrkMast;
import com.zy.asrs.entity.param.EmptyPlateOutParam;
import com.zy.asrs.entity.param.FullStoreParam;
import com.zy.asrs.service.*;
import com.zy.common.model.StartupDto;
@@ -95,7 +96,7 @@
        if (!basDevpService.updateById(sourceStaNo)){
            throw new CoolException("更新源站失败");
        }
        // 更新目标库位信息
        // 更新目标库位状态
        LocMast locMast = locMastService.selectById(dto.getLocNo());
        if (locMast.getLocType().equals("O")){
            locMast.setLocType("S"); // S.入库预约
@@ -109,4 +110,10 @@
        }
    }
    @Override
    @Transactional
    public void emptyPlateOut(EmptyPlateOutParam param, Long userId) {
    }
}