add:二楼出库流程

This commit is contained in:
2025-02-25 23:43:24 +08:00
parent 7962113036
commit 2d666b7809

View File

@@ -185,6 +185,7 @@ public class PdaIOService {
.eq(SchBasePoint::getIs_used, true)
.eq(SchBasePoint::getLock_type, StatusEnum.LOCK.code("无锁"))
.eq(SchBasePoint::getRegion_code, StatusEnum.REGION_INFO.code("二楼CTU货架对接位"))
.ne(SchBasePoint::getVehicle_code, "")
.isNotNull(SchBasePoint::getVehicle_code));
if (ObjectUtils.isEmpty(endPointList)) {
log.error("CTU出库任务该单据{}出库时,地面货架站点暂无可用货架,请检查现场情况", billCode);
@@ -198,7 +199,7 @@ public class PdaIOService {
.eq(StIvtStructattr::getSect_code, endPointList.get(0).getVehicle_code())
.eq(StIvtStructattr::getLock_type, StatusEnum.LOCK.code("无锁"))
.eq(StIvtStructattr::getStor_code, StatusEnum.STOCK_INFO.code("二楼货架缓存库"))
.isNull(StIvtStructattr::getVehicle_code)
.isNotNull(StIvtStructattr::getVehicle_code)
.orderByAsc(StIvtStructattr::getLayer_num));
if (ObjectUtils.isEmpty(stIvtStructattrList)) {
log.error("CTU出库任务该单据{}出库时,地面货架站点货架的货位已放满,请检查现场情况", billCode);