|
@@ -1319,6 +1319,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
WmsBoxInfo wmsBoxInfo = wmsBoxInfoService.selectWmsBoxInfoByBoxNo(groupDiskFrom.getBoxNo());
|
|
WmsBoxInfo wmsBoxInfo = wmsBoxInfoService.selectWmsBoxInfoByBoxNo(groupDiskFrom.getBoxNo());
|
|
Optional.ofNullable(wmsBoxInfo).orElseThrow(() -> new BaseException("托盘不存在!"));
|
|
Optional.ofNullable(wmsBoxInfo).orElseThrow(() -> new BaseException("托盘不存在!"));
|
|
if (Constants.YES.equals(wmsBoxInfo.getIsFull())) return AjaxResult.error("该托盘已满托!");
|
|
if (Constants.YES.equals(wmsBoxInfo.getIsFull())) return AjaxResult.error("该托盘已满托!");
|
|
|
|
+ verifyInvLotAndGetLocationId(groupDiskFrom.getPalletNoTo(), null, groupDiskFrom.getOrderNo());
|
|
return AjaxResult.success();
|
|
return AjaxResult.success();
|
|
}
|
|
}
|
|
|
|
|
|
@@ -2764,13 +2765,22 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
if (CollectionUtil.isEmpty(wmsDocOrderDetailsMatchSkuList)){
|
|
if (CollectionUtil.isEmpty(wmsDocOrderDetailsMatchSkuList)){
|
|
throw new BaseException("出库明细未绑定此类产品!");
|
|
throw new BaseException("出库明细未绑定此类产品!");
|
|
}
|
|
}
|
|
|
|
+ //筛选出相同sku并且数量未分配或未分配完的明细信息
|
|
|
|
+ List<WmsDocOrderDetails> wmsDocOrderDetailsFilterList = wmsDocOrderDetailsMatchSkuList.stream().filter(item -> CompareUtil.compare(item.getQtyOrdered().subtract(item.getQtyAllocated()), BigDecimal.ZERO) > 0).collect(Collectors.toList());
|
|
|
|
+ if (CollectionUtil.isEmpty(wmsDocOrderDetailsFilterList)){
|
|
|
|
+ throw new BaseException("出库单该产品已备货完成!");
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ //验证托盘相关信息并获取指向托盘库位信息
|
|
|
|
+ String locationId = verifyInvLotAndGetLocationId(palletNoTo, sn, orderNo);
|
|
|
|
+
|
|
|
|
+ List<InvLotAtt> invLotAttList = invLotAttService.queryInvLotAtt(palletNoFrom, sn);
|
|
|
|
+ List<InvLotLocId> invLotLocIdList = invLotLocIdService.queryInvLotLocIdByLotnum(invLotAttList.stream().map(InvLotAtt::getLotnum).collect(Collectors.toList()));
|
|
//创建新批次
|
|
//创建新批次
|
|
String lotNum = IdWorker.getIdStr();
|
|
String lotNum = IdWorker.getIdStr();
|
|
- invLotAttService.insertInvLotAtt(buildInvLotAtt(lotNum, palletNoTo, orderNo, sn, sku));
|
|
|
|
- InvLotAtt invLotAtt = invLotAttService.queryInvLotAttBySn(palletNoFrom, sn);
|
|
|
|
- InvLotLocId invLotLocId = invLotLocIdService.queryInvLotLocIdByLotnum(invLotAtt.getLotnum());
|
|
|
|
- String locationId = invLotLocId.getLocationId();
|
|
|
|
|
|
+ InvLotLocId invLotLocId = invLotLocIdList.stream().findFirst().orElseThrow(() -> new BaseException("库位库存信息丢失!"));
|
|
|
|
+ String asnNo = invLotAttList.stream().filter(item -> item.getLotnum().equals(invLotLocId.getLotnum())).map(InvLotAtt::getLotatt08).findFirst().orElseThrow(() -> new BaseException("此批次入库信息丢失!"));
|
|
|
|
+ invLotAttService.insertInvLotAtt(buildInvLotAtt(lotNum, palletNoTo, orderNo, sn, sku, asnNo));
|
|
BigDecimal qtyAllocated = ObjectUtil.isNotNull(invLotLocId.getQtyallocated()) ? invLotLocId.getQtyallocated() : BigDecimal.ZERO;
|
|
BigDecimal qtyAllocated = ObjectUtil.isNotNull(invLotLocId.getQtyallocated()) ? invLotLocId.getQtyallocated() : BigDecimal.ZERO;
|
|
BigDecimal invLotLocQty = invLotLocId.getQty().subtract(qtyAllocated);
|
|
BigDecimal invLotLocQty = invLotLocId.getQty().subtract(qtyAllocated);
|
|
if (CompareUtil.compare(qty, invLotLocQty) >= 0) {
|
|
if (CompareUtil.compare(qty, invLotLocQty) >= 0) {
|
|
@@ -2783,16 +2793,15 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
invLotLocIdService.insertInvLotLocId(buildInvLotLocId(lotNum, qty, locationId, orderNo, sku));
|
|
invLotLocIdService.insertInvLotLocId(buildInvLotLocId(lotNum, qty, locationId, orderNo, sku));
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
- //筛选出相同sku并且数量未分配或未分配完的明细信息
|
|
|
|
- List<WmsDocOrderDetails> wmsDocOrderDetailsFilterList = wmsDocOrderDetailsMatchSkuList.stream().filter(item -> CompareUtil.compare(item.getQtyOrdered().subtract(item.getQtyAllocated()), BigDecimal.ZERO) > 0).collect(Collectors.toList());
|
|
|
|
for (WmsDocOrderDetails wmsDocOrderDetails : wmsDocOrderDetailsFilterList) {
|
|
for (WmsDocOrderDetails wmsDocOrderDetails : wmsDocOrderDetailsFilterList) {
|
|
//明细已分配数量
|
|
//明细已分配数量
|
|
BigDecimal wmsDocOrderDetailsQtyAllocated = ObjectUtil.isNotNull(wmsDocOrderDetails.getQtyAllocated()) ? wmsDocOrderDetails.getQtyAllocated() : BigDecimal.ZERO;
|
|
BigDecimal wmsDocOrderDetailsQtyAllocated = ObjectUtil.isNotNull(wmsDocOrderDetails.getQtyAllocated()) ? wmsDocOrderDetails.getQtyAllocated() : BigDecimal.ZERO;
|
|
//剩余需分配数量
|
|
//剩余需分配数量
|
|
BigDecimal wmsDocOrderDetailsQty = wmsDocOrderDetails.getQtyOrdered().subtract(wmsDocOrderDetailsQtyAllocated);
|
|
BigDecimal wmsDocOrderDetailsQty = wmsDocOrderDetails.getQtyOrdered().subtract(wmsDocOrderDetailsQtyAllocated);
|
|
|
|
+ //理货备货数量小于单个明细所需数量判断
|
|
BigDecimal remainQty = qty.subtract(wmsDocOrderDetailsQty);
|
|
BigDecimal remainQty = qty.subtract(wmsDocOrderDetailsQty);
|
|
Boolean flag = CompareUtil.compare(remainQty, BigDecimal.ZERO) < 0;
|
|
Boolean flag = CompareUtil.compare(remainQty, BigDecimal.ZERO) < 0;
|
|
|
|
+
|
|
wmsDocOrderDetails.setQtyAllocated(flag ? wmsDocOrderDetailsQtyAllocated.add(qty) : wmsDocOrderDetails.getQtyOrdered());
|
|
wmsDocOrderDetails.setQtyAllocated(flag ? wmsDocOrderDetailsQtyAllocated.add(qty) : wmsDocOrderDetails.getQtyOrdered());
|
|
wmsDocOrderDetails.setQtyAllocatedEach(wmsDocOrderDetails.getQtyAllocated());
|
|
wmsDocOrderDetails.setQtyAllocatedEach(wmsDocOrderDetails.getQtyAllocated());
|
|
wmsDocOrderDetails.setLineStatus(flag ? Constant.ORDER_STS.STS10.getValue() : Constant.ORDER_STS.STS20.getValue());
|
|
wmsDocOrderDetails.setLineStatus(flag ? Constant.ORDER_STS.STS10.getValue() : Constant.ORDER_STS.STS20.getValue());
|
|
@@ -2812,7 +2821,22 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
List<WmsDocOrderDetails> docOrderDetailsList = wmsDocOrderDetailsByOrderNo.stream().filter(item -> CompareUtil.compare(item.getLineStatus(), Constant.ORDER_STS.STS20.getValue()) != 0).collect(Collectors.toList());
|
|
List<WmsDocOrderDetails> docOrderDetailsList = wmsDocOrderDetailsByOrderNo.stream().filter(item -> CompareUtil.compare(item.getLineStatus(), Constant.ORDER_STS.STS20.getValue()) != 0).collect(Collectors.toList());
|
|
wmsDocOrderHeaderMapper.update(new WmsDocOrderHeader(), Wrappers.<WmsDocOrderHeader>lambdaUpdate()
|
|
wmsDocOrderHeaderMapper.update(new WmsDocOrderHeader(), Wrappers.<WmsDocOrderHeader>lambdaUpdate()
|
|
.set(WmsDocOrderHeader::getOrderStatus, CollectionUtil.isNotEmpty(docOrderDetailsList) ? Constant.ORDER_STS.STS22.getValue() : Constant.ORDER_STS.STS23.getValue()).eq(WmsDocOrderHeader::getOrderNo, orderNo));
|
|
.set(WmsDocOrderHeader::getOrderStatus, CollectionUtil.isNotEmpty(docOrderDetailsList) ? Constant.ORDER_STS.STS22.getValue() : Constant.ORDER_STS.STS23.getValue()).eq(WmsDocOrderHeader::getOrderNo, orderNo));
|
|
- return AjaxResult.success("当前托盘备货成功!");
|
|
|
|
|
|
+ return AjaxResult.success("当前托盘备货成功!托盘数量: " + invLotAttService.queryPalletTotal(palletNoTo));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private String verifyInvLotAndGetLocationId(String palletNoTo, String sn, String orderNo) {
|
|
|
|
+ List<InvLotAtt> palletNoToInvLotAttList = invLotAttService.queryInvLotAtt(palletNoTo);
|
|
|
|
+ if (CollectionUtil.isEmpty(palletNoToInvLotAttList)) return null;
|
|
|
|
+ if (StringUtils.isNotBlank(sn) && CollectionUtil.isNotEmpty(palletNoToInvLotAttList.stream().filter(item -> StringUtils.isBlank(item.getLotatt08()) && item.getLotatt02().equals(sn)).collect(Collectors.toList()))) {
|
|
|
|
+ throw new BaseException("该条码已生成批次");
|
|
|
|
+ }
|
|
|
|
+ //验证是否已经有不同出库单备货了
|
|
|
|
+ List<InvLotLocId> invLotLocIdList = invLotLocIdService.queryInvLotLocIdByLotnum(palletNoToInvLotAttList.stream().map(InvLotAtt::getLotnum).collect(Collectors.toList()));
|
|
|
|
+ if (CollectionUtil.isEmpty(invLotLocIdList)) return null;
|
|
|
|
+ List<InvLotAtt> invLotAttList = palletNoToInvLotAttList.stream().filter(item -> invLotLocIdList.stream().map(InvLotLocId::getLotnum).collect(Collectors.toList()).contains(item.getLotnum())).collect(Collectors.toList());
|
|
|
|
+ List<InvLotAtt> invLotAttFilterList = invLotAttList.stream().filter(item -> StringUtils.isNotBlank(item.getLotatt14()) && !item.getLotatt14().equals(orderNo)).collect(Collectors.toList());
|
|
|
|
+ if (CollectionUtil.isNotEmpty(invLotAttFilterList)) throw new BaseException("该托盘已备货其他出库单: " + invLotAttFilterList.stream().map(InvLotAtt::getLotatt14).collect(Collectors.joining(",")));
|
|
|
|
+ return invLotLocIdList.stream().map(InvLotLocId::getLocationId).findFirst().orElseThrow(() -> new BaseException("指向托盘库位信息丢失!"));
|
|
}
|
|
}
|
|
|
|
|
|
private InvLotLocId buildInvLotLocId(String lotNum, BigDecimal qty, String locationId, String traceId, String sku) {
|
|
private InvLotLocId buildInvLotLocId(String lotNum, BigDecimal qty, String locationId, String traceId, String sku) {
|
|
@@ -2821,7 +2845,6 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
invLotLocId.setTraceid(traceId);
|
|
invLotLocId.setTraceid(traceId);
|
|
invLotLocId.setLocationId(locationId);
|
|
invLotLocId.setLocationId(locationId);
|
|
invLotLocId.setCustomerId(Constant.CUSTOMER_ID);
|
|
invLotLocId.setCustomerId(Constant.CUSTOMER_ID);
|
|
-
|
|
|
|
invLotLocId.setSku(sku);
|
|
invLotLocId.setSku(sku);
|
|
invLotLocId.setQty(qty);
|
|
invLotLocId.setQty(qty);
|
|
invLotLocId.setQtyEach(qty);
|
|
invLotLocId.setQtyEach(qty);
|
|
@@ -2830,14 +2853,15 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
return invLotLocId;
|
|
return invLotLocId;
|
|
}
|
|
}
|
|
|
|
|
|
- private InvLotAtt buildInvLotAtt(String lotNum, String palletNoTo, String orderNo, String sn, String sku) {
|
|
|
|
|
|
+ private InvLotAtt buildInvLotAtt(String lotNum, String palletNoTo, String orderNo, String sn, String sku, String asnNo) {
|
|
InvLotAtt invLotAtt = new InvLotAtt();
|
|
InvLotAtt invLotAtt = new InvLotAtt();
|
|
invLotAtt.setLotnum(lotNum);
|
|
invLotAtt.setLotnum(lotNum);
|
|
|
|
+ invLotAtt.setCustomerId(Constant.CUSTOMER_ID);
|
|
|
|
+ invLotAtt.setSku(sku);
|
|
|
|
+ invLotAtt.setLotatt02(sn);
|
|
invLotAtt.setLotatt07(palletNoTo);
|
|
invLotAtt.setLotatt07(palletNoTo);
|
|
|
|
+ invLotAtt.setLotatt08(asnNo);
|
|
invLotAtt.setLotatt14(orderNo); // 备货对应的出库单号
|
|
invLotAtt.setLotatt14(orderNo); // 备货对应的出库单号
|
|
- invLotAtt.setLotatt02(sn);
|
|
|
|
- invLotAtt.setSku(sku);
|
|
|
|
- invLotAtt.setCustomerId(Constant.CUSTOMER_ID);
|
|
|
|
invLotAtt.setCreateTime(DateUtils.getNowDate());
|
|
invLotAtt.setCreateTime(DateUtils.getNowDate());
|
|
return invLotAtt;
|
|
return invLotAtt;
|
|
}
|
|
}
|
|
@@ -2863,7 +2887,8 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
/**
|
|
/**
|
|
* 库存分配
|
|
* 库存分配
|
|
*
|
|
*
|
|
- * @param orderNos
|
|
|
|
|
|
+ * @param
|
|
|
|
+ * orderNos
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
@@ -2907,16 +2932,17 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
if (CompareUtil.compare(total, BigDecimal.ZERO) <= 0) continue;
|
|
if (CompareUtil.compare(total, BigDecimal.ZERO) <= 0) continue;
|
|
List<InvLotAttPalletTotalDTO> invLotAttPalletTotalDTOList = invLotAttPalletTotalMap.get(wmsDocOrderDetailsGroupBySkuMapEntry.getKey());
|
|
List<InvLotAttPalletTotalDTO> invLotAttPalletTotalDTOList = invLotAttPalletTotalMap.get(wmsDocOrderDetailsGroupBySkuMapEntry.getKey());
|
|
if (CollectionUtil.isEmpty(invLotAttPalletTotalDTOList)) continue;
|
|
if (CollectionUtil.isEmpty(invLotAttPalletTotalDTOList)) continue;
|
|
- List<InvLotAttPalletTotalDTO> invLotAttPalletTotalList = new ArrayList<>();
|
|
|
|
if (CollectionUtil.isNotEmpty(palletMatchLogList)){
|
|
if (CollectionUtil.isNotEmpty(palletMatchLogList)){
|
|
- invLotAttPalletTotalList = invLotAttPalletTotalDTOList.stream().filter(item -> !palletMatchLogList.stream().map(palletMatchLog -> palletMatchLog.getPalletNo()).collect(Collectors.toList()).contains(item.getPalletNo())).collect(Collectors.toList());
|
|
|
|
- }
|
|
|
|
- if (CollectionUtil.isEmpty(invLotAttPalletTotalList)) {
|
|
|
|
- result.addAll(invLotAttPalletTotalDTOList);
|
|
|
|
- continue;
|
|
|
|
|
|
+ List<InvLotAttPalletTotalDTO> invLotAttPalletTotalList = invLotAttPalletTotalDTOList.stream().filter(item -> !palletMatchLogList.stream().map(palletMatchLog -> palletMatchLog.getPalletNo()).collect(Collectors.toList()).contains(item.getPalletNo())).collect(Collectors.toList());
|
|
|
|
+ if (CollectionUtil.isEmpty(invLotAttPalletTotalList)) {
|
|
|
|
+ result.addAll(invLotAttPalletTotalDTOList);
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ invLotAttPalletTotalDTOList = invLotAttPalletTotalList;
|
|
}
|
|
}
|
|
- for (InvLotAttPalletTotalDTO invLotAttPalletTotalDTO : invLotAttPalletTotalList) {
|
|
|
|
- BigDecimal palletTotal = invLotAttPalletTotalDTO.getTotalQty();
|
|
|
|
|
|
+
|
|
|
|
+ for (InvLotAttPalletTotalDTO invLotAttPalletTotalDTO : invLotAttPalletTotalDTOList) {
|
|
|
|
+ BigDecimal palletTotal = new BigDecimal(invLotAttPalletTotalDTO.getTotalQty());
|
|
if (CompareUtil.compare(total, palletTotal) <= 0) {
|
|
if (CompareUtil.compare(total, palletTotal) <= 0) {
|
|
result.add(invLotAttPalletTotalDTO);
|
|
result.add(invLotAttPalletTotalDTO);
|
|
break;
|
|
break;
|
|
@@ -2940,7 +2966,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
BaseLocationInfo locationInfo = baseLocationInfoList.stream().filter(baseLocationInfo -> baseLocationInfo.getId().equals(Long.parseLong(item.getLocationId()))).findFirst().orElseThrow(() -> new BaseException("库位信息有误"));
|
|
BaseLocationInfo locationInfo = baseLocationInfoList.stream().filter(baseLocationInfo -> baseLocationInfo.getId().equals(Long.parseLong(item.getLocationId()))).findFirst().orElseThrow(() -> new BaseException("库位信息有误"));
|
|
palletMatchLogDTO.setLocationNo(locationInfo.getLocationNo());
|
|
palletMatchLogDTO.setLocationNo(locationInfo.getLocationNo());
|
|
return palletMatchLogDTO;
|
|
return palletMatchLogDTO;
|
|
- }).collect(Collectors.toList());
|
|
|
|
|
|
+ }).collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(PalletMatchLogDTO::getPalletNo))), ArrayList::new));
|
|
}
|
|
}
|
|
|
|
|
|
private List<PalletMatchLog> buildPalletMatchLogList(List<InvLotAttPalletTotalDTO> invLotAttPalletTotalDTOList, List<String> orderList) {
|
|
private List<PalletMatchLog> buildPalletMatchLogList(List<InvLotAttPalletTotalDTO> invLotAttPalletTotalDTOList, List<String> orderList) {
|
|
@@ -2948,7 +2974,6 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
Date createTime = DateUtils.getNowDate();
|
|
Date createTime = DateUtils.getNowDate();
|
|
return invLotAttPalletTotalDTOList.stream().map(item -> {
|
|
return invLotAttPalletTotalDTOList.stream().map(item -> {
|
|
PalletMatchLog palletMatchLog = ConvertUtils.sourceToTarget(item, PalletMatchLog.class);
|
|
PalletMatchLog palletMatchLog = ConvertUtils.sourceToTarget(item, PalletMatchLog.class);
|
|
- palletMatchLog.setTotalQty(item.getTotalQty().toString());
|
|
|
|
palletMatchLog.setCreateTime(createTime);
|
|
palletMatchLog.setCreateTime(createTime);
|
|
palletMatchLog.setOrderNos(orderNos);
|
|
palletMatchLog.setOrderNos(orderNos);
|
|
palletMatchLog.setUserdefine1(Constants.NO);
|
|
palletMatchLog.setUserdefine1(Constants.NO);
|