|
@@ -142,13 +142,6 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
if (flowConfigHeaderVO.getFlowType().equals("ASN")) {
|
|
|
// 统计入库箱数
|
|
|
List<AgvCallItemDTO> agvCallItemDTOList = agvCallDTO.getAgvCallItemDTOList();
|
|
|
- int boxNum = agvCallItemDTOList.size();
|
|
|
-// int boxNum = agvCallItemDTOList.stream()
|
|
|
-// .mapToInt(v -> v.getQty().intValue())
|
|
|
-// .reduce(Integer::sum).getAsInt();
|
|
|
- asnSoStrategy.setAsnHeightLimit(boxNum + "");
|
|
|
- log.info("统计箱数量:" + boxNum);
|
|
|
-
|
|
|
List<BaseLocationInfo> locationFromList = this.convertLocation(paramLocationFrom, agvCallDTO.getWarehouseId(), null);
|
|
|
List<BaseLocationInfo> locationToList = this.convertLocation(paramLocationTo, agvCallDTO.getWarehouseId(), "shift_no+ 0,shift_index");
|
|
|
locationFrom = this.zoneLocationAllocation(locationFromList, "locationFrom", "ASN", asnSoStrategy, token);
|
|
@@ -302,17 +295,6 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
if (!b.getStockStatus().equals("00") || !b.getIsEmpty().equals("Y") || redisCache.checkIsLock(RedisKey.LOCK_LOCATION + b.getId())) {
|
|
|
continue;
|
|
|
}
|
|
|
- // 第六层不能放数量超过2的货
|
|
|
- int boxNum = Integer.parseInt(asnSoStrategy.getAsnHeightLimit());
|
|
|
- if (b.getShiftNo().equals("6")) {
|
|
|
- if (boxNum > 2) continue;
|
|
|
- } else {
|
|
|
- // 其他层数放置箱子数量不能超过6
|
|
|
- if (boxNum > 6) {
|
|
|
- log.error("入库箱数量不能超过6!");
|
|
|
- continue;
|
|
|
- }
|
|
|
- }
|
|
|
if (!redisCache.lockCacheObject(RedisKey.LOCK_LOCATION + b.getId(), b.getId().toString(), token)) {
|
|
|
continue;
|
|
|
}
|
|
@@ -662,22 +644,22 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
, Constant.WAREHOUSE_ID, null);
|
|
|
for (BaseLocationInfo baseLocationInfo : baseLocationInfos) {
|
|
|
// 判断是否有货并且空闲
|
|
|
- if (baseLocationInfo.getStockStatus().equals(Constant.STOCK_STATUS.STOCK00.getValue())
|
|
|
- && baseLocationInfo.getIsEmpty().equals(Constant.IS_YES.N.name())) {
|
|
|
- if (baseLocationInfo.getUserdefine1().equals("ASN")) {
|
|
|
- AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
- agvCallDTO.setLocationFrom(baseLocationInfo.getLocationNo());
|
|
|
- businessService.agvCall(Constant.TRAN_STO_FLOW_ID, agvCallDTO);
|
|
|
- } else if (baseLocationInfo.getUserdefine1().equals("SO_HG")) {
|
|
|
- AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
- agvCallDTO.setLocationFrom(baseLocationInfo.getLocationNo());
|
|
|
- businessService.agvCall(Constant.TRAN_OUT_FLOW_ID, agvCallDTO);
|
|
|
- } else if (baseLocationInfo.getUserdefine1().equals("SO_BHG")) {
|
|
|
- AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
- agvCallDTO.setLocationFrom(baseLocationInfo.getLocationNo());
|
|
|
- businessService.agvCall(Constant.TRAN_OUT_BHG_FLOW_ID, agvCallDTO);
|
|
|
- }
|
|
|
- }
|
|
|
+// if (baseLocationInfo.getStockStatus().equals(Constant.STOCK_STATUS.STOCK00.getValue())
|
|
|
+// && baseLocationInfo.getIsEmpty().equals(Constant.IS_YES.N.name())) {
|
|
|
+// if (baseLocationInfo.getUserdefine1().equals("ASN")) {
|
|
|
+// AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+// agvCallDTO.setLocationFrom(baseLocationInfo.getLocationNo());
|
|
|
+// businessService.agvCall(Constant.TRAN_STO_FLOW_ID, agvCallDTO);
|
|
|
+// } else if (baseLocationInfo.getUserdefine1().equals("SO_HG")) {
|
|
|
+// AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+// agvCallDTO.setLocationFrom(baseLocationInfo.getLocationNo());
|
|
|
+// businessService.agvCall(Constant.TRAN_OUT_FLOW_ID, agvCallDTO);
|
|
|
+// } else if (baseLocationInfo.getUserdefine1().equals("SO_BHG")) {
|
|
|
+// AgvCallDTO agvCallDTO = new AgvCallDTO();
|
|
|
+// agvCallDTO.setLocationFrom(baseLocationInfo.getLocationNo());
|
|
|
+// businessService.agvCall(Constant.TRAN_OUT_BHG_FLOW_ID, agvCallDTO);
|
|
|
+// }
|
|
|
+// }
|
|
|
}
|
|
|
}
|
|
|
|