|
@@ -1,27 +1,34 @@
|
|
|
package com.ruoyi.ams.xuankuang.service;
|
|
|
|
|
|
+import cn.hutool.core.collection.CollectionUtil;
|
|
|
import cn.hutool.core.comparator.CompareUtil;
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.google.common.collect.Lists;
|
|
|
import com.ruoyi.ams.asn.domain.WmsDocAsnDetails;
|
|
|
import com.ruoyi.ams.asn.domain.WmsDocAsnHeader;
|
|
|
import com.ruoyi.ams.asn.mapper.WmsDocAsnDetailsMapper;
|
|
|
import com.ruoyi.ams.asn.mapper.WmsDocAsnHeaderMapper;
|
|
|
import com.ruoyi.ams.asn.service.IWmsDocAsnDetailsService;
|
|
|
import com.ruoyi.ams.config.domain.dto.LotattDTO;
|
|
|
+import com.ruoyi.ams.inv.domain.InvLotAtt;
|
|
|
+import com.ruoyi.ams.inv.service.IInvLotAttService;
|
|
|
import com.ruoyi.ams.task.domain.WcsTask;
|
|
|
import com.ruoyi.ams.task.service.IWcsTaskService;
|
|
|
+import com.ruoyi.ams.xuankuang.domain.dto.LocationCoordDTO;
|
|
|
import com.ruoyi.ams.xuankuang.domain.form.*;
|
|
|
-import com.ruoyi.ams.xuankuang.domain.vo.LocationCoordinateVo;
|
|
|
import com.ruoyi.base.constant.Constant;
|
|
|
import com.ruoyi.base.domain.BaseLocationInfo;
|
|
|
-import com.ruoyi.base.domain.vo.BaseLocationLotattVO;
|
|
|
+import com.ruoyi.base.domain.vo.BaseLocationLotattDTO;
|
|
|
import com.ruoyi.base.service.IBaseLocationInfoService;
|
|
|
import com.ruoyi.base.service.IBaseSkuService;
|
|
|
import com.ruoyi.base.utils.IdSequenceUtils;
|
|
|
+import com.ruoyi.common.constant.SceneConstants;
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
import com.ruoyi.hard.xuankang.StirringTankClient;
|
|
|
import com.ruoyi.hard.xuankang.UnpackingMachineSubClient;
|
|
|
+import com.ruoyi.system.service.ISysConfigService;
|
|
|
import io.jsonwebtoken.lang.Assert;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -31,6 +38,7 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
import static com.ruoyi.ams.xuankuang.service.BaseLocationInfoSubService.OUT_ZONES;
|
|
|
|
|
@@ -75,6 +83,10 @@ public class WcsToWmsApiService {
|
|
|
private WmsDocAsnSubService wmsDocAsnSubService;
|
|
|
@Autowired
|
|
|
private AgvCallProxyService agvCallProxyService;
|
|
|
+ @Autowired
|
|
|
+ private ISysConfigService sysConfigService;
|
|
|
+ @Autowired
|
|
|
+ private IInvLotAttService invLotAttService;
|
|
|
|
|
|
/**
|
|
|
* 组盘上报
|
|
@@ -112,7 +124,7 @@ public class WcsToWmsApiService {
|
|
|
if (wcsTask != null) {
|
|
|
String locationTo = wcsTask.getLocationTo();
|
|
|
BaseLocationInfo baseLocationInfo = iBaseLocationInfoService.selectBaseLocationInfoByIdOrNo(locationTo, Constant.WAREHOUSE_ID);
|
|
|
- LocationCoordinateVo locationCoordinateVo = new LocationCoordinateVo();
|
|
|
+ LocationCoordDTO locationCoordinateVo = new LocationCoordDTO();
|
|
|
locationCoordinateVo.setTaskNo(wcsTask.getTaskNo());
|
|
|
locationCoordinateVo.setLocationId(baseLocationInfo.getLocationNo());
|
|
|
locationCoordinateVo.setFloor(Integer.valueOf(baseLocationInfo.getShiftNo()));
|
|
@@ -122,7 +134,7 @@ public class WcsToWmsApiService {
|
|
|
}
|
|
|
|
|
|
// 推荐目标库位
|
|
|
- BaseLocationLotattVO baseLocationLotattVO = baseLocationInfoSubService.recommendAReceiptLocation(sku);
|
|
|
+ BaseLocationLotattDTO baseLocationLotattVO = baseLocationInfoSubService.recommendAReceiptLocation(sku);
|
|
|
if (baseLocationLotattVO == null) {
|
|
|
AjaxResult.error("没有可以推荐的目标库位!");
|
|
|
}
|
|
@@ -143,7 +155,7 @@ public class WcsToWmsApiService {
|
|
|
// 入库缓存位生成库存
|
|
|
InvLotLocIdSubService.initInv(Constant.LOC_STAGE_CACHE.toString(), sku, palletNo, ajaxResult1.getData().toString(), taskNo, qty);
|
|
|
// 反馈
|
|
|
- LocationCoordinateVo locationCoordinateVo = new LocationCoordinateVo();
|
|
|
+ LocationCoordDTO locationCoordinateVo = new LocationCoordDTO();
|
|
|
locationCoordinateVo.setTaskNo(taskNo);
|
|
|
locationCoordinateVo.setLocationId(baseLocationLotattVO.getLocationNo());
|
|
|
locationCoordinateVo.setFloor(Integer.valueOf(baseLocationLotattVO.getShiftNo()));
|
|
@@ -161,7 +173,7 @@ public class WcsToWmsApiService {
|
|
|
if (wcsTask != null) {
|
|
|
String locationTo = wcsTask.getLocationTo();
|
|
|
BaseLocationInfo baseLocationInfo = iBaseLocationInfoService.selectBaseLocationInfoByIdOrNo(locationTo, Constant.WAREHOUSE_ID);
|
|
|
- LocationCoordinateVo locationCoordinateVo = new LocationCoordinateVo();
|
|
|
+ LocationCoordDTO locationCoordinateVo = new LocationCoordDTO();
|
|
|
locationCoordinateVo.setTaskNo(wcsTask.getTaskNo());
|
|
|
locationCoordinateVo.setLocationId(baseLocationInfo.getLocationNo());
|
|
|
locationCoordinateVo.setFloor(Integer.valueOf(baseLocationInfo.getShiftNo()));
|
|
@@ -171,7 +183,7 @@ public class WcsToWmsApiService {
|
|
|
}
|
|
|
|
|
|
// 推荐目标库位
|
|
|
- BaseLocationLotattVO baseLocationLotattVO = baseLocationInfoSubService.recommendAReceiptLocation(sku);
|
|
|
+ BaseLocationLotattDTO baseLocationLotattVO = baseLocationInfoSubService.recommendAReceiptLocation(sku);
|
|
|
if (baseLocationLotattVO == null) {
|
|
|
AjaxResult.error("没有可以推荐的目标库位!");
|
|
|
}
|
|
@@ -190,7 +202,7 @@ public class WcsToWmsApiService {
|
|
|
// 入库缓存位生成库存
|
|
|
InvLotLocIdSubService.initInv(Constant.LOC_STAGE_CACHE.toString(), sku, palletNo, asnNo, taskNo, qty);
|
|
|
// 反馈
|
|
|
- LocationCoordinateVo locationCoordinateVo = new LocationCoordinateVo();
|
|
|
+ LocationCoordDTO locationCoordinateVo = new LocationCoordDTO();
|
|
|
locationCoordinateVo.setTaskNo(taskNo);
|
|
|
locationCoordinateVo.setLocationId(baseLocationLotattVO.getLocationNo());
|
|
|
locationCoordinateVo.setFloor(Integer.valueOf(baseLocationLotattVO.getShiftNo()));
|
|
@@ -206,7 +218,7 @@ public class WcsToWmsApiService {
|
|
|
* @return
|
|
|
*/
|
|
|
@Transactional
|
|
|
- public synchronized AjaxResult EmptyPalletLoc(EmptyPalletLocForm emptyPalletLocForm) {
|
|
|
+ public synchronized AjaxResult emptyPalletLoc(EmptyPalletLocForm emptyPalletLocForm) {
|
|
|
// 空托仓位请求类型
|
|
|
int taskType = emptyPalletLocForm.getTaskType();
|
|
|
// 任务号
|
|
@@ -226,7 +238,7 @@ public class WcsToWmsApiService {
|
|
|
if (wcsTask != null) {
|
|
|
String locationTo = wcsTask.getLocationTo();
|
|
|
BaseLocationInfo baseLocationInfo = iBaseLocationInfoService.selectBaseLocationInfoByIdOrNo(locationTo, Constant.WAREHOUSE_ID);
|
|
|
- LocationCoordinateVo locationCoordinateVo = new LocationCoordinateVo();
|
|
|
+ LocationCoordDTO locationCoordinateVo = new LocationCoordDTO();
|
|
|
locationCoordinateVo.setTaskNo(wcsTask.getTaskNo());
|
|
|
locationCoordinateVo.setLocationId(baseLocationInfo.getLocationNo());
|
|
|
locationCoordinateVo.setFloor(Integer.valueOf(baseLocationInfo.getShiftNo()));
|
|
@@ -234,16 +246,16 @@ public class WcsToWmsApiService {
|
|
|
locationCoordinateVo.setRow(Integer.valueOf(baseLocationInfo.getRowIndex()));
|
|
|
return AjaxResult.success("仓位获取成功!", locationCoordinateVo);
|
|
|
}
|
|
|
- BaseLocationLotattVO baseLocationLotattVO = baseLocationInfoSubService.recommendAReceiptLocation(Constant.PALLET_TYPE);
|
|
|
- if (baseLocationLotattVO == null) {
|
|
|
+
|
|
|
+ BaseLocationInfo baseLocationInfo = selectLocationInfo();
|
|
|
+ if (baseLocationInfo == null) {
|
|
|
AjaxResult.error("没有可以推荐的目标库位!");
|
|
|
}
|
|
|
|
|
|
-
|
|
|
// 生成任务
|
|
|
String taskNo = "";
|
|
|
AjaxResult ajaxResult = wcsTaskSubService.addWcsTask(Constant.LOC_STAGE_CACHE.toString()
|
|
|
- , baseLocationLotattVO.getId().toString()
|
|
|
+ , baseLocationInfo.getId().toString()
|
|
|
, ""
|
|
|
, ""
|
|
|
, wcsNo);
|
|
@@ -254,44 +266,50 @@ public class WcsToWmsApiService {
|
|
|
// 入库缓存位生成库存
|
|
|
InvLotLocIdSubService.initInv(Constant.LOC_STAGE_CACHE.toString(), Constant.PALLET_TYPE, "", "", taskNo, 1.0);
|
|
|
// 反馈
|
|
|
- LocationCoordinateVo locationCoordinateVo = new LocationCoordinateVo();
|
|
|
+ LocationCoordDTO locationCoordinateVo = new LocationCoordDTO();
|
|
|
locationCoordinateVo.setTaskNo(taskNo);
|
|
|
- locationCoordinateVo.setLocationId(baseLocationLotattVO.getLocationNo());
|
|
|
- locationCoordinateVo.setFloor(Integer.valueOf(baseLocationLotattVO.getShiftNo()));
|
|
|
- locationCoordinateVo.setCol(Integer.valueOf(baseLocationLotattVO.getRowNo()));
|
|
|
- locationCoordinateVo.setRow(Integer.valueOf(baseLocationLotattVO.getRowIndex()));
|
|
|
+ locationCoordinateVo.setLocationId(baseLocationInfo.getLocationNo());
|
|
|
+ locationCoordinateVo.setFloor(Integer.valueOf(baseLocationInfo.getShiftNo()));
|
|
|
+ locationCoordinateVo.setCol(Integer.valueOf(baseLocationInfo.getRowNo()));
|
|
|
+ locationCoordinateVo.setRow(Integer.valueOf(baseLocationInfo.getRowIndex()));
|
|
|
return AjaxResult.success("仓位获取成功!", locationCoordinateVo);
|
|
|
}
|
|
|
|
|
|
if (taskType == 2) {
|
|
|
- String sku = Constant.PALLET_TYPE;
|
|
|
- LotattDTO lotattDTO = new LotattDTO();
|
|
|
- String orderBy = "";
|
|
|
- List<String> outZones = OUT_ZONES;
|
|
|
- List<BaseLocationLotattVO> baseLocationLotattVOS = baseLocationInfoSubService.selectAllocatingInventoryAccordingConditionsOrderBy(outZones, lotattDTO, sku, orderBy);
|
|
|
- if (baseLocationLotattVOS.size() == 0) {
|
|
|
- return AjaxResult.error("仓库中无库存");
|
|
|
- }
|
|
|
- BaseLocationLotattVO baseLocationLotattVO = filterInv1(baseLocationLotattVOS);
|
|
|
- Assert.isTrue(ObjectUtil.isNotNull(baseLocationLotattVO), "仓库中无库存");
|
|
|
|
|
|
- String pallentNo = ObjectUtil.isNotNull(baseLocationLotattVO.getLotattVO())
|
|
|
- ? baseLocationLotattVO.getLotattVO().getLotatt07() : StringUtils.EMPTY;
|
|
|
- String locationFrom = baseLocationLotattVO.getLocationNo();
|
|
|
+ BaseLocationLotattDTO baseLocationLotatt = allocateLocationInfo();
|
|
|
+
|
|
|
+ Assert.isTrue(ObjectUtil.isNotNull(baseLocationLotatt), "仓库中无库存");
|
|
|
+
|
|
|
+ //TODO 这一块有可疑的地方 baseLocationLotatt
|
|
|
+ String pallentNo = ObjectUtil.isNotNull(baseLocationLotatt.getLotattVO())
|
|
|
+ ? baseLocationLotatt.getLotattVO().getLotatt07() : StringUtils.EMPTY;
|
|
|
+ String locationFrom = baseLocationLotatt.getLocationNo();
|
|
|
+
|
|
|
|
|
|
// 生成四向车出库任务
|
|
|
- AjaxResult ajaxResult = wcsTaskSubService.addWcsOutTask(locationFrom, Constant.LOC_SORTATION_CACHE.toString(), "", pallentNo, wcsNo);
|
|
|
- LocationCoordinateVo locationCoordinateVo1 = new LocationCoordinateVo();
|
|
|
+ AjaxResult ajaxResult = wcsTaskSubService.addWcsOutTask(baseLocationLotatt.getLocationNo(), Constant.LOC_SORTATION_CACHE.toString(), "", pallentNo, wcsNo);
|
|
|
+ LocationCoordDTO locationCoordinateVo1 = new LocationCoordDTO();
|
|
|
locationCoordinateVo1.setTaskNo(ajaxResult.get("data").toString());
|
|
|
- locationCoordinateVo1.setLocationId(baseLocationLotattVO.getLocationNo());
|
|
|
- locationCoordinateVo1.setFloor(Integer.valueOf(baseLocationLotattVO.getShiftNo()));
|
|
|
- locationCoordinateVo1.setCol(Integer.valueOf(baseLocationLotattVO.getRowNo()));
|
|
|
- locationCoordinateVo1.setRow(Integer.valueOf(baseLocationLotattVO.getRowIndex()));
|
|
|
+ locationCoordinateVo1.setLocationId(baseLocationLotatt.getLocationNo());
|
|
|
+ locationCoordinateVo1.setFloor(Integer.valueOf(baseLocationLotatt.getShiftNo()));
|
|
|
+ locationCoordinateVo1.setCol(Integer.valueOf(baseLocationLotatt.getRowNo()));
|
|
|
+ locationCoordinateVo1.setRow(Integer.valueOf(baseLocationLotatt.getRowIndex()));
|
|
|
return AjaxResult.success("仓位获取成功", locationCoordinateVo1);
|
|
|
}
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
|
|
|
+ protected BaseLocationLotattDTO allocateLocationInfo() {
|
|
|
+ List<BaseLocationLotattDTO> baseLocationLotattList = baseLocationInfoSubService.selectAllocatingInventoryAccordingConditionsOrderBy(OUT_ZONES, Constant.PALLET_TYPE);
|
|
|
+ Assert.isTrue(CollectionUtil.isNotEmpty(baseLocationLotattList), "there is no stock in the warehouse");
|
|
|
+ return filterInv1(baseLocationLotattList);
|
|
|
+ }
|
|
|
+
|
|
|
+ protected BaseLocationInfo selectLocationInfo() {
|
|
|
+ return baseLocationInfoSubService.recommendAReceiptLocation(Constant.PALLET_TYPE);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 任务状态反馈
|
|
@@ -312,7 +330,7 @@ public class WcsToWmsApiService {
|
|
|
* @param locationLotattList
|
|
|
* @return
|
|
|
*/
|
|
|
- public synchronized BaseLocationLotattVO filterInv1(List<BaseLocationLotattVO> locationLotattList) {
|
|
|
+ public synchronized BaseLocationLotattDTO filterInv1(List<BaseLocationLotattDTO> locationLotattList) {
|
|
|
return locationLotattList.parallelStream()
|
|
|
.filter(item -> ObjectUtil.isNotNull(item)
|
|
|
&& StringUtils.equals(Constant.PALLET_TYPE, item.getSku())
|
|
@@ -611,86 +629,70 @@ public class WcsToWmsApiService {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 桶装入库
|
|
|
+ * 桶装入库预备创建库存
|
|
|
+ * @param sku
|
|
|
+ * @param sourceLocationId
|
|
|
+ * @param asnNo
|
|
|
+ * @param palletNo
|
|
|
+ * @param quantity
|
|
|
* @return
|
|
|
*/
|
|
|
- @Transactional
|
|
|
- public synchronized AjaxResult theBucketIsLoadedIntoTheLibrary(String sku, String asnNo, String palletNo, BigDecimal num) {
|
|
|
-
|
|
|
-
|
|
|
- // 数量
|
|
|
- Double qty = num.doubleValue();
|
|
|
+ public LocationCoordDTO createInvPrepare(String taskNo, String sku, Long sourceLocationId, String asnNo, String palletNo, BigDecimal quantity) {
|
|
|
+ //获取桶装物料在真实库位中存放的位置
|
|
|
+ List<Long> realBucketLocationIdList = getBucketLocationIdList("realBucketLocationIdList");
|
|
|
+ //TODO 目前只有一个真实库位用于存放桶装料,多个就要选取库位了
|
|
|
+ Long targetLocationId = realBucketLocationIdList.get(0);
|
|
|
+ BaseLocationInfo baseLocationInfo = iBaseLocationInfoService.selectBaseLocationInfoById(targetLocationId);
|
|
|
+ Assert.isTrue(ObjectUtil.isNotNull(baseLocationInfo), "没有可以推荐的目标库位!");
|
|
|
+
|
|
|
+ //预备创建库存
|
|
|
+ InvLotLocIdSubService.initInv(String.valueOf(sourceLocationId), sku, palletNo, asnNo, taskNo, quantity.doubleValue());
|
|
|
+ return assemblyLocationCoordInfo(baseLocationInfo.getLocationNo(), taskNo);
|
|
|
+ }
|
|
|
|
|
|
- // 任务号
|
|
|
- String wcsNo = "";
|
|
|
|
|
|
- // 判重
|
|
|
- WcsTask wcsTaskQuery = new WcsTask();
|
|
|
- wcsTaskQuery.setExt1(asnNo);
|
|
|
- wcsTaskQuery.setExt2(palletNo);
|
|
|
- wcsTaskQuery.setExt3(wcsNo);
|
|
|
- WcsTask wcsTask = iWcsTaskService.selectWcsTaskByModel(wcsTaskQuery);
|
|
|
- if (wcsTask != null) {
|
|
|
- String locationTo = wcsTask.getLocationTo();
|
|
|
- BaseLocationInfo baseLocationInfo = iBaseLocationInfoService.selectBaseLocationInfoByIdOrNo(locationTo, Constant.WAREHOUSE_ID);
|
|
|
- LocationCoordinateVo locationCoordinateVo = new LocationCoordinateVo();
|
|
|
- locationCoordinateVo.setTaskNo(wcsTask.getTaskNo());
|
|
|
- locationCoordinateVo.setLocationId(baseLocationInfo.getLocationNo());
|
|
|
- locationCoordinateVo.setFloor(Integer.valueOf(baseLocationInfo.getShiftNo()));
|
|
|
- locationCoordinateVo.setCol(Integer.valueOf(baseLocationInfo.getRowNo()));
|
|
|
- locationCoordinateVo.setRow(Integer.valueOf(baseLocationInfo.getRowIndex()));
|
|
|
- return AjaxResult.success("仓位获取成功!", locationCoordinateVo);
|
|
|
- }
|
|
|
+ public LocationCoordDTO getInvInfoByTask(WcsTask wcsTask) {
|
|
|
+ if(ObjectUtil.isNotNull(wcsTask) && StringUtils.isNotBlank(wcsTask.getTaskNo())) return new LocationCoordDTO();
|
|
|
+ return assemblyLocationCoordInfo(wcsTask.getLocationTo(), wcsTask.getTaskNo());
|
|
|
+ }
|
|
|
|
|
|
- // 推荐目标库位
|
|
|
- BaseLocationLotattVO baseLocationLotattVO = baseLocationInfoSubService.recommendAReceiptLocation(sku);
|
|
|
- if (baseLocationLotattVO == null) {
|
|
|
- AjaxResult.error("没有可以推荐的目标库位!");
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 根据场景code返回库位列表
|
|
|
+ * @param subSceneCode
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<Long> getBucketLocationIdList(String subSceneCode) {
|
|
|
+ String bucketConfig = sysConfigService.selectConfigByKey(SceneConstants.STORAGE_BUCKET_SCENE);
|
|
|
+ if(StringUtils.isBlank(bucketConfig)) return Lists.newArrayList();
|
|
|
+
|
|
|
+ JSONObject bucketSceneConfig = JSONObject.parseObject(bucketConfig);
|
|
|
+ List<Integer> bucketLocationIdList = ObjectUtil.isNotNull(bucketSceneConfig) && ObjectUtil.isNotNull(bucketSceneConfig.get(subSceneCode))
|
|
|
+ ? (List<Integer>) bucketSceneConfig.get(subSceneCode) : Lists.newArrayList();
|
|
|
+ return bucketLocationIdList.stream().filter(item -> ObjectUtil.isNotNull(item))
|
|
|
+ .map(item -> item.longValue()).collect(Collectors.toList());
|
|
|
+ }
|
|
|
|
|
|
- // 生成任务
|
|
|
- String taskNo = "";
|
|
|
- AjaxResult ajaxResult = wcsTaskSubService.addWcsTask(Constant.LOC_STAGE_CACHE.toString()
|
|
|
- , baseLocationLotattVO.getId().toString()
|
|
|
- , asnNo
|
|
|
- , palletNo
|
|
|
- , wcsNo);
|
|
|
- if (!ajaxResult.isSuccess()) {
|
|
|
- return ajaxResult;
|
|
|
- }
|
|
|
- taskNo = ajaxResult.get("data").toString();
|
|
|
- // 入库缓存位生成库存
|
|
|
- InvLotLocIdSubService.initInv(Constant.LOC_STAGE_CACHE.toString(), sku, palletNo, asnNo, taskNo, qty);
|
|
|
- // 反馈
|
|
|
- LocationCoordinateVo locationCoordinateVo = new LocationCoordinateVo();
|
|
|
- locationCoordinateVo.setTaskNo(taskNo);
|
|
|
- locationCoordinateVo.setLocationId(baseLocationLotattVO.getLocationNo());
|
|
|
- locationCoordinateVo.setFloor(Integer.valueOf(baseLocationLotattVO.getShiftNo()));
|
|
|
- locationCoordinateVo.setCol(Integer.valueOf(baseLocationLotattVO.getRowNo()));
|
|
|
- locationCoordinateVo.setRow(Integer.valueOf(baseLocationLotattVO.getRowIndex()));
|
|
|
- return AjaxResult.success("仓位获取成功!", locationCoordinateVo);
|
|
|
+ private LocationCoordDTO assemblyLocationCoordInfo(String locationNo, String taskNo) {
|
|
|
+ BaseLocationInfo baseLocationInfo = iBaseLocationInfoService.selectBaseLocationInfoByIdOrNo(locationNo, Constant.WAREHOUSE_ID);
|
|
|
+ LocationCoordDTO locationCoordDTO = new LocationCoordDTO();
|
|
|
+ locationCoordDTO.setTaskNo(taskNo);
|
|
|
+ locationCoordDTO.setLocationId(baseLocationInfo.getLocationNo());
|
|
|
+ locationCoordDTO.setFloor(Integer.valueOf(baseLocationInfo.getShiftNo()));
|
|
|
+ locationCoordDTO.setCol(Integer.valueOf(baseLocationInfo.getRowNo()));
|
|
|
+ locationCoordDTO.setRow(Integer.valueOf(baseLocationInfo.getRowIndex()));
|
|
|
+ return locationCoordDTO;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 安全交握
|
|
|
- * @param callbackTaskFrom
|
|
|
+ * 安全交握,Wcs回调通知agv是否可以执行
|
|
|
+ * @param callbackForm
|
|
|
* @return
|
|
|
*/
|
|
|
- public AjaxResult secureHandover(CallbackTaskFrom callbackTaskFrom) {
|
|
|
- if (callbackTaskFrom.getSafeCode().equals("1")){
|
|
|
- WcsTask wcsTask = new WcsTask();
|
|
|
- wcsTask.setState(new Long(13));
|
|
|
- WcsTask wcsTask1 = wcsTaskService.selectWcsTaskByModel(wcsTask);
|
|
|
- wcsTask1.setState(new Long(9));
|
|
|
- int i = wcsTaskService.updateWcsTask(wcsTask1);
|
|
|
- if (i>0){
|
|
|
- return AjaxResult.success();
|
|
|
- }
|
|
|
- }else if (callbackTaskFrom.getSafeCode().equals("0")){
|
|
|
- log.error(callbackTaskFrom.getMessage());
|
|
|
- return AjaxResult.success("未执行");
|
|
|
- }
|
|
|
- return AjaxResult.success();
|
|
|
+ public Boolean callbackNotice(CallbackTaskForm callbackForm) {
|
|
|
+ Assert.isTrue(StringUtils.equals(Constant.SAFE_CODE.PASS.getCode(), callbackForm.getSafeCode()),
|
|
|
+ "当前任务未执行");
|
|
|
+ return wcsTaskService.updateTaskStatus(callbackForm.getTaskNo(),
|
|
|
+ Constant.TASK_STS.TASK_CREATE.getValue(), Constant.TASK_STS.TASK_WAIT.getValue());
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -729,4 +731,7 @@ public class WcsToWmsApiService {
|
|
|
wmsDocAsnSubService.wmsAgvCallbackIntask(taskNo);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|