|
@@ -9,7 +9,6 @@ import cn.hutool.core.util.ObjectUtil;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.IdWorker;
|
|
|
import com.google.common.collect.Lists;
|
|
|
-import com.google.common.collect.Maps;
|
|
|
import com.ruoyi.ams.asn.domain.WmsDocAsnDetails;
|
|
|
import com.ruoyi.ams.asn.service.IWmsDocAsnHeaderService;
|
|
|
import com.ruoyi.ams.config.domain.dto.LotattDTO;
|
|
@@ -88,8 +87,6 @@ public class WmsDocOrderSubService {
|
|
|
private ISysConfigService sysConfigService;
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
@Transactional
|
|
|
public AjaxResult initOrderDetails(@PathVariable("orderNo") String orderNo) {
|
|
|
|
|
@@ -107,13 +104,14 @@ public class WmsDocOrderSubService {
|
|
|
//筛选库存 由于选矿项目出库单头只对应一个
|
|
|
Boolean orderRule = getOrderRule();
|
|
|
List<BaseLocationLotattDTO> filteredLocationLotattList = orderRule
|
|
|
- ? selectInventoriesByLocation(baseLocationLotattList, list.get(0)) : filterInv(baseLocationLotattList, orderNo);
|
|
|
+ ? selectInventoriesByLocation(baseLocationLotattList, list.get(0)) : filterInv(baseLocationLotattList, orderNo);
|
|
|
// 匹配库存(撇开先进先出)
|
|
|
// baseLocationLotattVOS = addConfirmAllocationAuto(orderNo);
|
|
|
|
|
|
//重新筛选库存
|
|
|
// baseLocationLotattVOS1 = filterInv(baseLocationLotattVOS, orderNo);
|
|
|
|
|
|
+
|
|
|
boolean con = true;
|
|
|
//机械手应拆袋数
|
|
|
int allocateQuantities = 0;
|
|
@@ -235,15 +233,13 @@ public class WmsDocOrderSubService {
|
|
|
.filter(item -> StringUtils.equals(NumberUtil.toStr(item.getId()), invLotLocId.getLocationId())).findFirst().orElse(null);
|
|
|
if(ObjectUtil.isNull(locationInfo)) continue;
|
|
|
|
|
|
- String floorAppendRowKey = locationInfo.getShiftNo() + "_" + locationInfo.getRowIndex();
|
|
|
- Map<String, List<Long>> partitionRowNoListMapper = redisCache.getCacheObject(floorAppendRowKey);
|
|
|
- Map<String, Object> warehouseAttrMapper = getWarehouseAttrConfig();
|
|
|
- List<Integer> wayRowNoList = (List<Integer>) warehouseAttrMapper.get(Constants.WAY_ROW_NO_LIST);
|
|
|
- //获取到这个库位命中的子列在两边还是中间
|
|
|
- Integer firstWayNo = CollectionUtil.getFirst(wayRowNoList);
|
|
|
- Integer lastWayNo = CollectionUtil.getLast(wayRowNoList);
|
|
|
- String partitionRowKey = getPartitionRowKey(firstWayNo, lastWayNo, locationInfo.getRowNo());
|
|
|
- List<Long> partitionLocationIdList = partitionRowNoListMapper.get(partitionRowKey);
|
|
|
+ Map<String, Object> subLocationIdListMapper = baseLocationInfoService.clacSubLocationIdList(locationInfo);
|
|
|
+ String partitionRowKey = (String) subLocationIdListMapper.get("partitionRowKey");
|
|
|
+ List<Long> partitionLocationIdList = (List<Long>) subLocationIdListMapper.get("partitionLocationIdList");
|
|
|
+ if(ObjectUtil.isNull(partitionRowKey) || CollectionUtil.isEmpty(partitionLocationIdList)){
|
|
|
+ log.info("partitionRowKey or partitionLocationIdList can not be found");
|
|
|
+ return Lists.newArrayList();
|
|
|
+ }
|
|
|
|
|
|
int locationIndex = partitionLocationIdList.indexOf(locationInfo.getId());
|
|
|
if(StringUtils.equals(partitionRowKey, Constants.FIRST)) {
|
|
@@ -314,7 +310,10 @@ public class WmsDocOrderSubService {
|
|
|
|
|
|
List<Long> resultLocationIdList = checkLocationIdListOnBeside(locationId, sourceInvLotLocIdList, subList,
|
|
|
baseLocationLotattList, quantity);
|
|
|
- if(CollectionUtil.isEmpty(resultLocationIdList)) return Maps.newHashMap();
|
|
|
+ if(CollectionUtil.isEmpty(resultLocationIdList)) {
|
|
|
+ return MapUtil.builder(new HashMap<String, Object>()).put("quantity", quantity)
|
|
|
+ .put("baseLocationLotattList", baseLocationLotattList).map();
|
|
|
+ }
|
|
|
BigDecimal firstRightCount = sourceInvLotLocIdList.stream()
|
|
|
.filter(item -> CollectionUtil.contains(resultLocationIdList, Long.parseLong(item.getLocationId()))
|
|
|
&& ObjectUtil.isNotNull(item.getQty()))
|
|
@@ -372,14 +371,13 @@ public class WmsDocOrderSubService {
|
|
|
.filter(item -> CollectionUtil.contains(subList, Long.parseLong(item.getLocationId()))).collect(Collectors.toList());
|
|
|
BigDecimal currentRowInvCount = currentRowInvList.stream().filter(item -> ObjectUtil.isNotNull(item.getQty()))
|
|
|
.map(item -> item.getQty()).reduce(BigDecimal::add).orElse(BigDecimal.ZERO);
|
|
|
- List<InvLotLocId> exceptCurrentInvIdList = filterdInvLocIdList.stream()
|
|
|
- .filter(item -> !StringUtils.equals(item.getLocationId(), NumberUtil.toStr(locationId))).collect(Collectors.toList());
|
|
|
- BigDecimal exceptCurrentLocationInvCount = exceptCurrentInvIdList.stream().filter(item -> ObjectUtil.isNotNull(item.getQty()))
|
|
|
+ BigDecimal exceptCurrentLnvCount = currentRowInvList.stream()
|
|
|
+ .filter(item -> ObjectUtil.isNotNull(item.getQty()) && CollectionUtil.contains(filteredList, Long.parseLong(item.getLocationId())))
|
|
|
.map(item -> item.getQty()).reduce(BigDecimal::add).orElse(BigDecimal.ZERO);
|
|
|
List<Long> invIdList = currentRowInvList.stream().map(item -> Long.parseLong(item.getLocationId())).collect(Collectors.toList());
|
|
|
|
|
|
return CompareUtil.compare(currentRowInvCount, quantity) < 0
|
|
|
- || CompareUtil.compare(exceptCurrentLocationInvCount, quantity) < 0
|
|
|
+ || (CompareUtil.compare(currentRowInvCount, quantity) > 0 && CompareUtil.compare(exceptCurrentLnvCount, quantity) < 0)
|
|
|
? subList.stream().filter(item -> CollectionUtil.contains(invIdList, item)).collect(Collectors.toList())
|
|
|
: Lists.newArrayList();
|
|
|
}
|
|
@@ -413,23 +411,7 @@ public class WmsDocOrderSubService {
|
|
|
}
|
|
|
|
|
|
|
|
|
- private String getPartitionRowKey(Integer first, Integer last, String rowIndex) {
|
|
|
- if(CompareUtil.compare(Integer.parseInt(rowIndex), first) < 0) return Constants.FIRST;
|
|
|
- if(CompareUtil.compare(Integer.parseInt(rowIndex), first) > 0
|
|
|
- && CompareUtil.compare(Integer.parseInt(rowIndex), last) < 0) return Constants.MIDDLE;
|
|
|
- if(CompareUtil.compare(Integer.parseInt(rowIndex), last) > 0) return Constants.LAST;
|
|
|
- return StringUtils.EMPTY;
|
|
|
- }
|
|
|
|
|
|
- /**
|
|
|
- * 获取库位的配置
|
|
|
- * @return
|
|
|
- */
|
|
|
- private Map<String, Object> getWarehouseAttrConfig() {
|
|
|
- String warehouseAttrInfo = sysConfigService.selectConfigByKey(SceneConstants.WAREHOUSE_ATTRIBUTE_SCENE_CONFIG);
|
|
|
- Assert.isTrue(com.baomidou.mybatisplus.core.toolkit.StringUtils.isNotBlank(warehouseAttrInfo), "baseLocationInfoList is empty");
|
|
|
- return JSONObject.parseObject(warehouseAttrInfo);
|
|
|
- }
|
|
|
|
|
|
|
|
|
/**
|