|
@@ -66,6 +66,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Propagation;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
+import org.springframework.transaction.interceptor.TransactionAspectSupport;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.*;
|
|
@@ -1319,7 +1320,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
WmsBoxInfo wmsBoxInfo = wmsBoxInfoService.selectWmsBoxInfoByBoxNo(groupDiskFrom.getBoxNo());
|
|
|
Optional.ofNullable(wmsBoxInfo).orElseThrow(() -> new BaseException("托盘不存在!"));
|
|
|
if (Constants.YES.equals(wmsBoxInfo.getIsFull())) return AjaxResult.error("该托盘已满托!");
|
|
|
- verifyInvLotAndGetLocationId(groupDiskFrom.getPalletNoTo(), null, groupDiskFrom.getOrderNo());
|
|
|
+ verifyInvLotAndGetLocationId(groupDiskFrom.getPalletNoTo(), null, orderNo);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
|
|
@@ -2747,7 +2748,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
* @return
|
|
|
*/
|
|
|
@Override
|
|
|
- @Transactional
|
|
|
+ @Transactional(propagation = Propagation.REQUIRES_NEW)
|
|
|
public AjaxResult pdaGroupDiskBH(PdaGroupDiskDTO pdaGroupDiskDTO) {
|
|
|
String palletNoFrom = pdaGroupDiskDTO.getPalletNoFrom(); // 起始托盘
|
|
|
String palletNoTo = pdaGroupDiskDTO.getPalletNoTo(); // 目标托盘
|
|
@@ -2766,7 +2767,8 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
throw new BaseException("出库明细未绑定此类产品!");
|
|
|
}
|
|
|
//筛选出相同sku并且数量未分配或未分配完的明细信息
|
|
|
- List<WmsDocOrderDetails> wmsDocOrderDetailsFilterList = wmsDocOrderDetailsMatchSkuList.stream().filter(item -> CompareUtil.compare(item.getQtyOrdered().subtract(item.getQtyAllocated()), BigDecimal.ZERO) > 0).collect(Collectors.toList());
|
|
|
+ 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("出库单该产品已备货完成!");
|
|
|
}
|
|
@@ -2783,6 +2785,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
invLotAttService.insertInvLotAtt(buildInvLotAtt(lotNum, palletNoTo, orderNo, sn, sku, asnNo));
|
|
|
BigDecimal qtyAllocated = ObjectUtil.isNotNull(invLotLocId.getQtyallocated()) ? invLotLocId.getQtyallocated() : BigDecimal.ZERO;
|
|
|
BigDecimal invLotLocQty = invLotLocId.getQty().subtract(qtyAllocated);
|
|
|
+ locationId = StringUtils.isNotBlank(locationId) ? locationId : invLotLocId.getLocationId();
|
|
|
if (CompareUtil.compare(qty, invLotLocQty) >= 0) {
|
|
|
invLotLocIdService.updateInvLotLocId(invLotLocId.getLotnum(), lotNum, invLotLocQty, sku, locationId);
|
|
|
} else {
|
|
@@ -2818,7 +2821,8 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
// 更新托盘
|
|
|
wmsBoxInfoService.updateWmsBoxLocationIdByBoxNo(boxNo, Long.parseLong(locationId));
|
|
|
List<WmsDocOrderDetails> wmsDocOrderDetailsByOrderNo = wmsDocOrderDetailsService.queryWmsDocOrderDetailsByOrderNo(orderNo);
|
|
|
- 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()
|
|
|
.set(WmsDocOrderHeader::getOrderStatus, CollectionUtil.isNotEmpty(docOrderDetailsList) ? Constant.ORDER_STS.STS22.getValue() : Constant.ORDER_STS.STS23.getValue()).eq(WmsDocOrderHeader::getOrderNo, orderNo));
|
|
|
return AjaxResult.success("当前托盘备货成功!托盘数量: " + invLotAttService.queryPalletTotal(palletNoTo));
|
|
@@ -2827,16 +2831,18 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
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()))) {
|
|
|
+ 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> 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("指向托盘库位信息丢失!"));
|
|
|
+ return invLotLocIdList.stream().filter(item -> StringUtils.isNotBlank(item.getLocationId())).map(InvLotLocId::getLocationId).findFirst().orElseThrow(() -> new BaseException("指向托盘库位信息丢失!"));
|
|
|
}
|
|
|
|
|
|
private InvLotLocId buildInvLotLocId(String lotNum, BigDecimal qty, String locationId, String traceId, String sku) {
|
|
@@ -2911,7 +2917,9 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
if (CollectionUtil.isEmpty(wmsDocOrderHeaderFilterList)) {
|
|
|
throw new BaseException("出库单状态不可进行库存匹配!");
|
|
|
}
|
|
|
- List<WmsDocOrderDetails> wmsDocOrderDetailsList = wmsDocOrderDetailsService.queryWmsDocOrderDetailsByOrderNo(wmsDocOrderHeaderFilterList.stream().filter(item -> StringUtils.isNotBlank(item.getOrderNo())).map(WmsDocOrderHeader::getOrderNo).collect(Collectors.toList()));
|
|
|
+ List<WmsDocOrderDetails> wmsDocOrderDetailsList = wmsDocOrderDetailsService.queryWmsDocOrderDetailsByOrderNo(
|
|
|
+ wmsDocOrderHeaderFilterList.stream().filter(item -> StringUtils.isNotBlank(item.getOrderNo()))
|
|
|
+ .map(WmsDocOrderHeader::getOrderNo).collect(Collectors.toList()));
|
|
|
if (CollectionUtil.isEmpty(wmsDocOrderDetailsList)) {
|
|
|
throw new BaseException("出库单明细为空!");
|
|
|
}
|