|
@@ -180,8 +180,12 @@ public class AmsTaskServiceImpl extends CrudServiceImpl<AmsTaskMapper, AmsTask,
|
|
|
amsTask.setStFrom(convertLocation(amsTaskInsertDTO.getLocationFrom()));
|
|
|
boolean isExist = redisCache.checkIsExist(AmsConstant.WMS_CORRESPOND_AGV_STATION_KEY.concat(amsTaskInsertDTO.getLocationFrom()))
|
|
|
&& redisCache.checkIsExist(AmsConstant.WMS_CORRESPOND_AGV_STATION_KEY.concat(amsTaskInsertDTO.getLocationTo()));
|
|
|
+ //1. 如果起点和终点都存在缓存,则为分拣任务 目标点转换为agv对应站点
|
|
|
+ //2. 如果起点和终点只有一个存在缓存 则为入库/出库任务 任务目标点转换为接驳位 入库任务为堆垛车接驳位 出库任务为三向车接驳位
|
|
|
amsTask.setStTo(isExist ? convertLocation(amsTaskInsertDTO.getLocationTo()) : getCacheLocation(amsTaskInsertDTO.getLocationFrom(), amsTaskInsertDTO.getLocationTo()));
|
|
|
+ //ext3存入最终目标点 入库任务则存放库位 出库任务则存放终点
|
|
|
amsTask.setExt3(isExist ? null : amsTaskInsertDTO.getLocationTo());
|
|
|
+ //ext1 ext2 存放巷道号 入库任务存放堆垛车巷道号 出库任务存放起始库位巷道号 堆垛车巷道号默认为0 不传TS会报错
|
|
|
amsTask.setExt1(isExist ? redisCache.getCacheObject(AmsConstant.LOCATION_ROW_KEY.concat(amsTask.getStTo().toString())) :
|
|
|
redisCache.checkIsExist(AmsConstant.WMS_CORRESPOND_AGV_STATION_KEY.concat(amsTaskInsertDTO.getLocationFrom())) ?
|
|
|
redisCache.getCacheObject(AmsConstant.LOCATION_ROW_KEY.concat(amsTaskInsertDTO.getLocationFrom())) : String.valueOf(BigDecimal.ZERO));
|
|
@@ -204,10 +208,13 @@ public class AmsTaskServiceImpl extends CrudServiceImpl<AmsTaskMapper, AmsTask,
|
|
|
AmsTask amsTask = new AmsTask();
|
|
|
amsTask.setId(Long.parseLong(IdWorker.getIdStr()));
|
|
|
amsTask.setTaskNo(businessNo);
|
|
|
- amsTask.setStFrom(redisCache.checkIsExist(AmsConstant.AGV_TO_PILLING_CAR_KEY.concat(stFrom.toString())) ?
|
|
|
- redisCache.getCacheObject(AmsConstant.AGV_TO_PILLING_CAR_KEY.concat(stFrom.toString())) : convertLocation(stFrom.toString()));
|
|
|
+ amsTask.setStFrom(redisCache.checkIsExist(AmsConstant.AGV_TO_PILLING_CAR_KEY.
|
|
|
+ concat(AmsConstant.ZONE_TYPE.OUT_CACHE.getValue().toString()).concat(stFrom.toString())) ?
|
|
|
+ Integer.parseInt(redisCache.getCacheObject(AmsConstant.AGV_TO_PILLING_CAR_KEY.concat(AmsConstant.ZONE_TYPE.OUT_CACHE.getValue().toString()).concat(stFrom.toString())))
|
|
|
+ : convertLocation(stFrom.toString()));
|
|
|
amsTask.setStTo(convertLocation(stTo));
|
|
|
- amsTask.setExt1(redisCache.getCacheObject(AmsConstant.LOCATION_ROW_KEY.concat(stTo)));
|
|
|
+ amsTask.setExt1(redisCache.checkIsExist(AmsConstant.LOCATION_ROW_KEY.concat(stTo)) ?
|
|
|
+ redisCache.getCacheObject(AmsConstant.LOCATION_ROW_KEY.concat(stTo)) : String.valueOf(BigDecimal.ZERO));
|
|
|
amsTask.setExt2(amsTask.getExt1());
|
|
|
amsTask.setBusinessType(businessType);
|
|
|
amsTask.setDeviceName(AmsConstant.AMS_SYS_NAME);
|
|
@@ -216,6 +223,7 @@ public class AmsTaskServiceImpl extends CrudServiceImpl<AmsTaskMapper, AmsTask,
|
|
|
amsTask.setAciAccept(0);
|
|
|
amsTask.setIkey((long) genIKey(amsTask.getId().toString()));
|
|
|
amsTask.setRemark("move the cache location to the end location");
|
|
|
+ log.info("ndcAmsTaskInsert amsTask is :{}", amsTask);
|
|
|
amsTaskMapper.insert(amsTask);
|
|
|
}
|
|
|
|
|
@@ -224,10 +232,18 @@ public class AmsTaskServiceImpl extends CrudServiceImpl<AmsTaskMapper, AmsTask,
|
|
|
return isExist ? Integer.parseInt(redisCache.getCacheObject(AmsConstant.WMS_CORRESPOND_AGV_STATION_KEY.concat(locationNo)).toString()) : Integer.parseInt(locationNo);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 任务目标点转换为接驳位 入库任务为堆垛车接驳位 出库任务为三向车接驳位
|
|
|
+ * @param locationFromId
|
|
|
+ * @param locationToId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
private Integer getCacheLocation(String locationFromId, String locationToId) {
|
|
|
+ //缓存中存在起点信息 则为出库任务 不存在则为入库任务
|
|
|
boolean isExist = redisCache.checkIsExist(AmsConstant.WMS_CORRESPOND_AGV_STATION_KEY.concat(locationFromId));
|
|
|
String rowNo = isExist ?
|
|
|
redisCache.getCacheObject(AmsConstant.LOCATION_ROW_KEY.concat(locationFromId)) : redisCache.getCacheObject(AmsConstant.LOCATION_ROW_KEY.concat(locationToId));
|
|
|
+ //sys_config中存放仓库起点与终点库位编号 如果不存在 则入库任务起点/出库任务终点有误或未录入
|
|
|
String locationConfig = sysConfigService.selectConfigByKey(SceneConstants.LOCATION_SCENE);
|
|
|
if(StringUtils.isBlank(locationConfig)) throw new BaseException("location.scene.config is blank");
|
|
|
Map<String, List<Integer>> locationConfigMap = JSONObject.parseObject(locationConfig, Map.class);
|
|
@@ -236,7 +252,8 @@ public class AmsTaskServiceImpl extends CrudServiceImpl<AmsTaskMapper, AmsTask,
|
|
|
Assert.isTrue(ObjectUtil.isNotNull(zoneId), "location.scene.config is not exist this locationId");
|
|
|
List<BaseLocationInfo> baseLocationInfoList = baseLocationInfoService.queryBaseLocationInfoList(zoneId, rowNo);
|
|
|
Assert.isTrue(CollectionUtil.isNotEmpty(baseLocationInfoList), "this zone cache location is not exist");
|
|
|
- return Integer.parseInt(baseLocationInfoList.stream().map(item -> isExist ? item.getAgvStation().toString() : item.getLocationNo()).findFirst().orElseThrow(() -> new BaseException("this zone cache location is not exist")));
|
|
|
+ return Integer.parseInt(baseLocationInfoList.stream().map(item -> isExist ? item.getAgvStation().toString() : item.getLocationNo()).
|
|
|
+ findFirst().orElseThrow(() -> new BaseException("this zone cache location is not exist")));
|
|
|
}
|
|
|
|
|
|
/**
|