|
@@ -140,12 +140,16 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
}
|
|
|
|
|
|
if (flowConfigHeaderVO.getFlowType().equals("ASN")) {
|
|
|
- // 统计入库箱数
|
|
|
- List<AgvCallItemDTO> agvCallItemDTOList = agvCallDTO.getAgvCallItemDTOList();
|
|
|
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);
|
|
|
locationTo = this.zoneLocationAllocation(locationToList, "locationTo", "ASN", asnSoStrategy, token);
|
|
|
+ // 初始化库存
|
|
|
+ if (agvCallDTO.getAgvCallItemDTOList().size() > 0) {
|
|
|
+ iInvLotAttService.deleteInvLotAttBylocationId(locationFrom.getId());
|
|
|
+ invLotLocIdService.deleteInvLotLocIdById(locationFrom.getId());
|
|
|
+ invLotLocIdService.initInv(locationFrom.getId().toString(), agvCallDTO);
|
|
|
+ }
|
|
|
wcsTaskList.addAll(this.genTask(locationFrom, locationTo, flowConfigHeaderVO, agvCallDTO, token));
|
|
|
|
|
|
} else if (flowConfigHeaderVO.getFlowType().equals("SO")) {
|
|
@@ -302,7 +306,7 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
break;
|
|
|
}
|
|
|
if (locationInfo == null) {
|
|
|
- throw new ServiceException("目标点没有可以分配的库位", token);
|
|
|
+ throw new ServiceException("入库目标点没有可以分配的库位", token);
|
|
|
}
|
|
|
}
|
|
|
} else if (type.equals("SO")) {
|
|
@@ -324,7 +328,7 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
break;
|
|
|
}
|
|
|
if (locationInfo == null) {
|
|
|
- throw new ServiceException("起始点没有可以分配的库存!", token);
|
|
|
+ throw new ServiceException("出库起始点没有可以分配的库存!", token);
|
|
|
}
|
|
|
|
|
|
} else { //目标库位
|
|
@@ -339,7 +343,7 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
break;
|
|
|
}
|
|
|
if (locationInfo == null) {
|
|
|
- throw new ServiceException("目标点没有可以分配的库位", token);
|
|
|
+ throw new ServiceException("出库目标点没有可以分配的库位", token);
|
|
|
}
|
|
|
}
|
|
|
} else { //移库
|
|
@@ -358,7 +362,7 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
|
|
|
//进行判断
|
|
|
if (locationInfo == null) {
|
|
|
- throw new ServiceException("起始点没有可以分配的库位", token);
|
|
|
+ throw new ServiceException("搬运起始点没有可以分配的库位", token);
|
|
|
}
|
|
|
|
|
|
} else {
|
|
@@ -375,7 +379,7 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
|
|
|
//进行判断
|
|
|
if (locationInfo == null) {
|
|
|
- throw new ServiceException("目标点没有可以分配的库位", token);
|
|
|
+ throw new ServiceException("搬运目标点没有可以分配的库位", token);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -431,6 +435,7 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
wcsTask.setPriority(1L);
|
|
|
wcsTask.setShopId(Constant.WAREHOUSE_ID.toString());
|
|
|
wcsTask.setCreateDate(new Date());
|
|
|
+ wcsTask.setCreateUser(agvCallDTO.getCreateUser());
|
|
|
wcsTask.setBusinessType("01");
|
|
|
wcsTask.setTaskType(Constant.TASK_TYPE.FORWARD.getValue());
|
|
|
wcsTask.setExt8(token.toString());
|