|
@@ -153,13 +153,21 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
wcsTaskList.addAll(this.genTask(locationFrom, locationTo, flowConfigHeaderVO, agvCallDTO, token));
|
|
|
|
|
|
} else if (flowConfigHeaderVO.getFlowType().equals("SO")) {
|
|
|
- AgvCallItemDTO agvCall = agvCallDTO.getAgvCallItemDTOList().get(0);
|
|
|
- List<BaseLocationInfo> locationFromList = this.convertLocation(paramLocationFrom, agvCallDTO.getWarehouseId(), null);
|
|
|
+ List<BaseLocationInfo> locationFromListEnd = new ArrayList<>();
|
|
|
+ boolean isLocation = baseLocationInfoService.checkIsLocation(paramLocationFrom, Constant.WAREHOUSE_ID);
|
|
|
+ if (isLocation) {
|
|
|
+ BaseLocationInfo info = baseLocationInfoService.selectBaseLocationInfoByIdOrNo(paramLocationFrom, Constant.WAREHOUSE_ID);
|
|
|
+ locationFromListEnd.add(info);
|
|
|
+ }
|
|
|
+ if (locationFromListEnd.size() == 0) {
|
|
|
+ AgvCallItemDTO agvCall = agvCallDTO.getAgvCallItemDTOList().get(0);
|
|
|
+ HashMap<String, String> hashMap = JSON.parseObject(JSON.toJSONString(agvCall.getLotattDTO()), HashMap.class);
|
|
|
+ List<BaseLocationInfo> locationFromList = baseLocationInfoMapper.selectSortedLocationLotattListByZoneIdListOrderBy(zoneIdList
|
|
|
+ , agvCallDTO.getWarehouseId(), hashMap, agvCall.getSku(), "inv.create_time");
|
|
|
+ locationFromListEnd = locationFromList;
|
|
|
+ }
|
|
|
List<BaseLocationInfo> locationToList = this.convertLocation(paramLocationTo, agvCallDTO.getWarehouseId(), null);
|
|
|
-// HashMap<String, String> hashMap = JSON.parseObject(JSON.toJSONString(agvCall.getLotattDTO()), HashMap.class);
|
|
|
-// List<BaseLocationInfo> locationFromList = baseLocationInfoMapper.selectSortedLocationLotattListByZoneIdListOrderBy(zoneIdList
|
|
|
-// , agvCallDTO.getWarehouseId(), hashMap, agvCall.getSku(), "inv.create_time");
|
|
|
- locationFrom = this.zoneLocationAllocation(locationFromList, "locationFrom", "SO", asnSoStrategy, token);
|
|
|
+ locationFrom = this.zoneLocationAllocation(locationFromListEnd, "locationFrom", "SO", asnSoStrategy, token);
|
|
|
locationTo = this.zoneLocationAllocation(locationToList, "locationTo", "SO", asnSoStrategy, token);
|
|
|
wcsTaskList.addAll(this.genTask(locationFrom, locationTo, flowConfigHeaderVO, agvCallDTO, token));
|
|
|
|
|
@@ -179,6 +187,7 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
}
|
|
|
return AjaxResult.success("任务下发成功");
|
|
|
} catch (Exception e) {
|
|
|
+ log.error("任务下发失败!",e);
|
|
|
redisCache.unlockCacheObject(token); // 异常捕获的话就不能释放锁
|
|
|
throw new ServiceException(e.getMessage(), token);
|
|
|
}
|
|
@@ -300,11 +309,11 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
locationInfo = checkTheSameColumnLocation(locationInfoList, token, false);
|
|
|
if (locationInfo == null) {
|
|
|
if (type.equals("ASN")) { // 入库
|
|
|
- fromMsg = "入库起始点没有可以分配的库存!";
|
|
|
+ fromMsg = "起始点没有可以分配的库存!";
|
|
|
} else if (type.equals("SO")) { // 出库
|
|
|
- fromMsg = "出库起始点没有可以分配的库存!";
|
|
|
+ fromMsg = "起始点没有可以分配的库存!";
|
|
|
} else { //移库
|
|
|
- fromMsg = "搬运起始点没有可以分配的库位";
|
|
|
+ fromMsg = "起始点没有可以分配的库位";
|
|
|
}
|
|
|
throw new ServiceException(fromMsg, token);
|
|
|
}
|
|
@@ -314,11 +323,11 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
locationInfo = checkTheSameColumnLocation(locationInfoList, token, true);
|
|
|
if (locationInfo == null) {
|
|
|
if (type.equals("ASN")) { // 入库
|
|
|
- toMsg = "入库目标点没有可以分配的库位";
|
|
|
+ toMsg = "目标点没有可以分配的库位";
|
|
|
} else if (type.equals("SO")) { // 出库
|
|
|
- toMsg = "出库目标点没有可以分配的库位";
|
|
|
+ toMsg = "目标点没有可以分配的库位";
|
|
|
} else { //移库
|
|
|
- toMsg = "搬运目标点没有可以分配的库位";
|
|
|
+ toMsg = "目标点没有可以分配的库位";
|
|
|
}
|
|
|
throw new ServiceException(toMsg, token);
|
|
|
}
|
|
@@ -439,7 +448,8 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
wcsTask.setExt8(token.toString());
|
|
|
wcsTask.setExt7(flowConfigHeaderVO.getId().toString());
|
|
|
// 是否复称
|
|
|
-// wcsTask.setExt3(agvCallDTO == null ? "" : agvCallDTO.getTheWeighing() ? "0001" : "0000");
|
|
|
+ wcsTask.setExt3(agvCallDTO.getTheWeighing() == null ? "0000"
|
|
|
+ : agvCallDTO.getTheWeighing() ? "0001" : "0000");
|
|
|
wcsTask.setExtParam(agvCallDTO.getExtParam());
|
|
|
wcsTaskList.add(wcsTask);
|
|
|
businessService.addTask(wcsTask);
|