|
@@ -3,6 +3,7 @@ package com.ruoyi.ams.order.service.impl;
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
import cn.hutool.core.comparator.CompareUtil;
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.IdWorker;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.ruoyi.ams.asn.service.IWmsDocAsnHeaderService;
|
|
@@ -33,6 +34,7 @@ import com.ruoyi.ams.order.domain.ActAllocationDetails;
|
|
|
import com.ruoyi.ams.order.domain.PalletMatchLog;
|
|
|
import com.ruoyi.ams.order.domain.WmsDocOrderDetails;
|
|
|
import com.ruoyi.ams.order.domain.WmsDocOrderHeader;
|
|
|
+import com.ruoyi.ams.order.dto.PalletMatchLogDTO;
|
|
|
import com.ruoyi.ams.order.dto.PdaGroupDiskDTO;
|
|
|
import com.ruoyi.ams.order.form.*;
|
|
|
import com.ruoyi.ams.order.mapper.WmsDocOrderDetailsMapper;
|
|
@@ -49,6 +51,7 @@ import com.ruoyi.base.form.SnCheckSoForm;
|
|
|
import com.ruoyi.base.service.IBaseLocationInfoService;
|
|
|
import com.ruoyi.base.service.ICodeSkuRelationshipService;
|
|
|
import com.ruoyi.base.utils.IdSequenceUtils;
|
|
|
+import com.ruoyi.common.constant.Constants;
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
import com.ruoyi.common.core.domain.model.LoginUser;
|
|
|
import com.ruoyi.common.exception.ServiceException;
|
|
@@ -974,13 +977,13 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
@Transactional(propagation = Propagation.REQUIRES_NEW)
|
|
|
@Override
|
|
|
public AjaxResult doCheckout(CheckOutInfoForm check) {
|
|
|
- String orderNo = check.getOrderNo();
|
|
|
+// String orderNo = check.getOrderNo();
|
|
|
String palletNo = check.getPalletNo();
|
|
|
// 验证出库单号
|
|
|
- WmsDocOrderHeader wmsDocOrderHeader = wmsDocOrderHeaderService.selectWmsDocOrderHeaderByErpNo(orderNo);
|
|
|
- if (wmsDocOrderHeader == null) {
|
|
|
- return AjaxResult.error("对应出库单号不存在!");
|
|
|
- }
|
|
|
+// WmsDocOrderHeader wmsDocOrderHeader = wmsDocOrderHeaderService.selectWmsDocOrderHeaderByErpNo(orderNo);
|
|
|
+// if (wmsDocOrderHeader == null) {
|
|
|
+// return AjaxResult.error("对应出库单号不存在!");
|
|
|
+// }
|
|
|
//生成任务呼叫到接驳位
|
|
|
BaseLocationInfo baseLocationInfo = baseLocationInfoService.selectBaseLocationInfoByIdOrNo(check.getLocationNo(), Constant.WAREHOUSE_ID);
|
|
|
FlowConfigHeaderVO flowConfigHeaderVO = flowConfigHeaderService.selectFlowConfigHeaderById((long) Constant.FLOW_ID_SO);
|
|
@@ -992,7 +995,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
agvCallDTO.setWarehouseId(Constant.WAREHOUSE_ID);
|
|
|
// 参数内容过长无法添加
|
|
|
agvCallDTO.setExtParam("");
|
|
|
- agvCallDTO.setOrderNo(wmsDocOrderHeader.getOrderNo());
|
|
|
+ agvCallDTO.setOrderNo(StringUtils.EMPTY);
|
|
|
agvCallDTO.setTaskType(Constant.FLOW_ID_SO + "");
|
|
|
AjaxResult result = businessService.agvCall(flowConfigHeaderVO, agvCallDTO);
|
|
|
if ((int) result.get(AjaxResult.CODE_TAG) == 500) {
|
|
@@ -1307,26 +1310,15 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
|
|
|
@Override
|
|
|
public AjaxResult groupDiskBHCheck(GroupDiskFrom groupDiskFrom) {
|
|
|
-
|
|
|
- // 验证出库单
|
|
|
- WmsDocOrderHeader header = wmsDocOrderHeaderService.selectWmsDocOrderHeaderByOrderNo(groupDiskFrom.getOrderNo());
|
|
|
- if (null == header) return AjaxResult.error("查无此出库单数据" + groupDiskFrom.getOrderNo());
|
|
|
- if (!header.getOrderType().equals(Constant.ORDER_TYP.BH.getValue())) {
|
|
|
- return AjaxResult.error("出库单类型不可备货组盘!");
|
|
|
- }
|
|
|
- if (!header.getOrderStatus().equals(Constant.ORDER_STS.STS10.getValue())
|
|
|
- && !header.getOrderStatus().equals(Constant.ORDER_STS.STS20.getValue())
|
|
|
- && !header.getOrderStatus().equals(Constant.ORDER_STS.STS22.getValue())) {
|
|
|
- return AjaxResult.error("出库单状态不可备货组盘!");
|
|
|
- }
|
|
|
-
|
|
|
- //验证目标托盘库存,一个托盘只能备货一个出库单
|
|
|
- AjaxResult ajaxResultC = invLotLocIdService.checkPalletIsOnlyOrderNo(groupDiskFrom.getPalletNoTo()
|
|
|
- , groupDiskFrom.getOrderNo());
|
|
|
- if (!ajaxResultC.isSuccess()) {
|
|
|
- return ajaxResultC;
|
|
|
- }
|
|
|
-
|
|
|
+ //通过ERP单号获取WMS的出库单号
|
|
|
+ String orderNo = wmsDocOrderHeaderService.changeErpNoToOrderNo(groupDiskFrom.getOrderNo());
|
|
|
+ if (StringUtils.isBlank(orderNo)) return AjaxResult.error("出库单号不存在!");
|
|
|
+ //todo 查询出库单状态和类型
|
|
|
+
|
|
|
+ //todo查询托盘是否存在
|
|
|
+ WmsBoxInfo wmsBoxInfo = wmsBoxInfoService.selectWmsBoxInfoByBoxNo(groupDiskFrom.getBoxNo());
|
|
|
+ Optional.ofNullable(wmsBoxInfo).orElseThrow(() -> new BaseException("托盘不存在!"));
|
|
|
+ if (Constants.YES.equals(wmsBoxInfo.getIsFull())) return AjaxResult.error("该托盘已满托!");
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
|
|
@@ -1767,7 +1759,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
// 验证库存
|
|
|
if (StringUtils.isEmpty(endLotattVO.getLotatt15())) {
|
|
|
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
WmsDocOrderHeader header = wmsDocOrderHeaderService.selectDocOrderHeaderByOrderNo(endLotattVO.getLotatt15());
|
|
|
if (header == null || !header.getOrderType().equals(Constant.ORDER_TYP.LH.getValue())) {
|
|
|
return AjaxResult.success("扫描的条码不可反拣组盘!不存在对应的出库理货单!");
|
|
@@ -2737,22 +2729,32 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 并发控制
|
|
|
+ * @param pdaGroupDiskDTO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public synchronized AjaxResult syncPdaGroupDiskBH(PdaGroupDiskDTO pdaGroupDiskDTO){
|
|
|
+ return pdaGroupDiskBH(pdaGroupDiskDTO);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* PDA理货备货
|
|
|
+ *
|
|
|
* @param pdaGroupDiskDTO
|
|
|
* @return
|
|
|
*/
|
|
|
@Override
|
|
|
@Transactional
|
|
|
- public synchronized AjaxResult pdaGroupDiskBH(PdaGroupDiskDTO pdaGroupDiskDTO) {
|
|
|
+ public AjaxResult pdaGroupDiskBH(PdaGroupDiskDTO pdaGroupDiskDTO) {
|
|
|
String palletNoFrom = pdaGroupDiskDTO.getPalletNoFrom(); // 起始托盘
|
|
|
String palletNoTo = pdaGroupDiskDTO.getPalletNoTo(); // 目标托盘
|
|
|
String sn = pdaGroupDiskDTO.getSn(); // 条码号
|
|
|
- String orderNo = StringUtils.isNotBlank(pdaGroupDiskDTO.getOrderNo()) ? pdaGroupDiskDTO.getOrderNo() : ""; // 出库单号(备货才会传入)
|
|
|
String boxNo = StringUtils.isNotBlank(pdaGroupDiskDTO.getBoxNo()) ? pdaGroupDiskDTO.getBoxNo() : palletNoTo; //箱号
|
|
|
BigDecimal qty = new BigDecimal(pdaGroupDiskDTO.getQty()); // 数量
|
|
|
-
|
|
|
- verifyWmsDocOrder(orderNo);
|
|
|
+ WmsDocOrderHeader wmsDocOrderHeader = selectWmsDocOrderHeaderByErpNo(pdaGroupDiskDTO.getOrderNo());
|
|
|
+ String orderNo = wmsDocOrderHeader.getOrderNo();
|
|
|
|
|
|
// 根据条码获取物料号
|
|
|
CodeSkuRelationshipVO codeSkuRelationshipVO = codeSkuRelationshipService.checkIsProduct(sn);
|
|
@@ -2766,9 +2768,9 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
String locationId = invLotLocId.getLocationId();
|
|
|
BigDecimal qtyAllocated = ObjectUtil.isNotNull(invLotLocId.getQtyallocated()) ? invLotLocId.getQtyallocated() : BigDecimal.ZERO;
|
|
|
BigDecimal invLotLocQty = invLotLocId.getQty().subtract(qtyAllocated);
|
|
|
- if (CompareUtil.compare(qty, invLotLocQty) >= 0){
|
|
|
+ if (CompareUtil.compare(qty, invLotLocQty) >= 0) {
|
|
|
invLotLocIdService.updateInvLotLocId(invLotLocId.getLotnum(), lotNum, invLotLocQty, sku, locationId);
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
// 拆分库存
|
|
|
// 修改原库存
|
|
|
invLotLocIdService.updateInvLotLocId(invLotLocId.getLotnum(), qtyAllocated.add(qty), invLotLocId.getSku());
|
|
@@ -2787,10 +2789,10 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
BigDecimal wmsDocOrderDetailsQty = wmsDocOrderDetails.getQtyOrdered().subtract(wmsDocOrderDetailsQtyAllocated);
|
|
|
BigDecimal remainQty = qty.subtract(wmsDocOrderDetailsQty);
|
|
|
Boolean flag = CompareUtil.compare(remainQty, BigDecimal.ZERO) < 0;
|
|
|
- wmsDocOrderDetails.setQtyAllocated(flag ? qty : wmsDocOrderDetailsQty);
|
|
|
+ wmsDocOrderDetails.setQtyAllocated(flag ? wmsDocOrderDetailsQtyAllocated.add(qty) : wmsDocOrderDetails.getQtyOrdered());
|
|
|
wmsDocOrderDetails.setQtyAllocatedEach(wmsDocOrderDetails.getQtyAllocated());
|
|
|
wmsDocOrderDetails.setLineStatus(flag ? Constant.ORDER_STS.STS10.getValue() : Constant.ORDER_STS.STS20.getValue());
|
|
|
- wmsDocOrderDetailsMapper.updateWmsDocOrderDetails(wmsDocOrderDetails);
|
|
|
+ wmsDocOrderDetailsService.updateWmsDocOrderDetails(wmsDocOrderDetails);
|
|
|
//生成分配明细
|
|
|
actAllocationDetailsService.addActAllocationDetails(lotNum, locationId, qty, wmsDocOrderDetails
|
|
|
, wmsDocOrderDetails.getLineStatus());
|
|
@@ -2802,15 +2804,20 @@ 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());
|
|
|
+ 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("当前托盘备货成功!");
|
|
|
}
|
|
|
|
|
|
- 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) {
|
|
|
InvLotLocId invLotLocId = new InvLotLocId();
|
|
|
invLotLocId.setLotnum(lotNum);
|
|
|
invLotLocId.setTraceid(traceId);
|
|
|
invLotLocId.setLocationId(locationId);
|
|
|
invLotLocId.setCustomerId(Constant.CUSTOMER_ID);
|
|
|
+
|
|
|
invLotLocId.setSku(sku);
|
|
|
invLotLocId.setQty(qty);
|
|
|
invLotLocId.setQtyEach(qty);
|
|
@@ -2819,7 +2826,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
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) {
|
|
|
InvLotAtt invLotAtt = new InvLotAtt();
|
|
|
invLotAtt.setLotnum(lotNum);
|
|
|
invLotAtt.setLotatt07(palletNoTo);
|
|
@@ -2830,8 +2837,10 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
invLotAtt.setCreateTime(DateUtils.getNowDate());
|
|
|
return invLotAtt;
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
* 验证出库单
|
|
|
+ *
|
|
|
* @param orderNo
|
|
|
*/
|
|
|
private void verifyWmsDocOrder(String orderNo) {
|
|
@@ -2847,15 +2856,22 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 库存分配
|
|
|
- * @param orderList
|
|
|
+ *
|
|
|
+ * @param orderNos
|
|
|
* @return
|
|
|
*/
|
|
|
@Override
|
|
|
@Transactional
|
|
|
- public Boolean inventoryMatch(List<String> orderList) {
|
|
|
+ public Boolean inventoryMatch(String orderNos) {
|
|
|
+ List<String> orderList = JSONArray.parseArray(orderNos, String.class);
|
|
|
+ String order = orderList.stream().collect(Collectors.joining(","));
|
|
|
+ List<PalletMatchLog> palletMatchLogList = palletMatchLogService.queryAllPalletMatchLogByOrderNos(order);
|
|
|
+ if (CollectionUtil.isNotEmpty(palletMatchLogList)) {
|
|
|
+ palletMatchLogService.logicalDeletionPalletMatchLog(palletMatchLogList);
|
|
|
+ }
|
|
|
+
|
|
|
//根据erp单号获取出库单头列表
|
|
|
List<WmsDocOrderHeader> wmsDocOrderHeaderList = wmsDocOrderHeaderMapper.selectList(Wrappers.<WmsDocOrderHeader>lambdaQuery().in(WmsDocOrderHeader::getSoReference1, orderList).orderByDesc(WmsDocOrderHeader::getCreateTime));
|
|
|
if (CollectionUtil.isEmpty(wmsDocOrderHeaderList)) {
|
|
@@ -2863,19 +2879,19 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
}
|
|
|
List<WmsDocOrderHeader> wmsDocOrderHeaderFilterList = wmsDocOrderHeaderList.stream().filter(item -> item.getOrderStatus().equals(Constant.ORDER_STS.STS00.getValue())
|
|
|
|| item.getOrderStatus().equals(Constant.ORDER_STS.STS10.getValue()) || item.getOrderStatus().equals(Constant.ORDER_STS.STS22.getValue())).collect(Collectors.toList());
|
|
|
- if (CollectionUtil.isEmpty(wmsDocOrderHeaderFilterList)){
|
|
|
+ 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()));
|
|
|
- if (CollectionUtil.isEmpty(wmsDocOrderDetailsList)){
|
|
|
+ if (CollectionUtil.isEmpty(wmsDocOrderDetailsList)) {
|
|
|
throw new BaseException("出库单明细为空!");
|
|
|
}
|
|
|
Map<String, List<WmsDocOrderDetails>> wmsDocOrderDetailsGroupBySkuMap = wmsDocOrderDetailsList.stream().filter(item -> StringUtils.isNotBlank(item.getSku())).collect(Collectors.groupingBy(WmsDocOrderDetails::getSku));
|
|
|
- if (CollectionUtil.isEmpty(wmsDocOrderDetailsGroupBySkuMap)){
|
|
|
+ if (CollectionUtil.isEmpty(wmsDocOrderDetailsGroupBySkuMap)) {
|
|
|
throw new BaseException("出库单明细绑定sku为空!");
|
|
|
}
|
|
|
Map<String, List<InvLotAttPalletTotalDTO>> invLotAttPalletTotalMap = invLotAttService.buildInvLotAttPalletTotalMap(wmsDocOrderDetailsGroupBySkuMap.entrySet().stream().map(Map.Entry::getKey).collect(Collectors.toList()));
|
|
|
- if (CollectionUtil.isEmpty(invLotAttPalletTotalMap)){
|
|
|
+ if (CollectionUtil.isEmpty(invLotAttPalletTotalMap)) {
|
|
|
throw new BaseException("所选出库单绑定sku无库存!");
|
|
|
}
|
|
|
//所需出库托盘
|
|
@@ -2887,9 +2903,17 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
if (CompareUtil.compare(total, BigDecimal.ZERO) <= 0) continue;
|
|
|
List<InvLotAttPalletTotalDTO> invLotAttPalletTotalDTOList = invLotAttPalletTotalMap.get(wmsDocOrderDetailsGroupBySkuMapEntry.getKey());
|
|
|
if (CollectionUtil.isEmpty(invLotAttPalletTotalDTOList)) continue;
|
|
|
- for (InvLotAttPalletTotalDTO invLotAttPalletTotalDTO : invLotAttPalletTotalDTOList) {
|
|
|
+ List<InvLotAttPalletTotalDTO> invLotAttPalletTotalList = new ArrayList<>();
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+ for (InvLotAttPalletTotalDTO invLotAttPalletTotalDTO : invLotAttPalletTotalList) {
|
|
|
BigDecimal palletTotal = invLotAttPalletTotalDTO.getTotalQty();
|
|
|
- if (CompareUtil.compare(total, palletTotal) <= 0){
|
|
|
+ if (CompareUtil.compare(total, palletTotal) <= 0) {
|
|
|
result.add(invLotAttPalletTotalDTO);
|
|
|
break;
|
|
|
}
|
|
@@ -2901,17 +2925,29 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<PalletMatchLog> queryPalletMatchInfoList(String orderNos) {
|
|
|
- return palletMatchLogService.queryPalletMatchLogByOrderNos(orderNos);
|
|
|
+ public List<PalletMatchLogDTO> queryPalletMatchInfoList(String orderNos) {
|
|
|
+ List<String> orderList = JSONArray.parseArray(orderNos, String.class);
|
|
|
+ String order = orderList.stream().collect(Collectors.joining(","));
|
|
|
+ List<PalletMatchLog> palletMatchLogList = palletMatchLogService.queryPalletMatchLogByOrderNos(order);
|
|
|
+ List<BaseLocationInfo> baseLocationInfoList = baseLocationInfoService.selectBaseLocationInfoList(palletMatchLogList.stream().map(PalletMatchLog::getLocationId).collect(Collectors.toList()));
|
|
|
+
|
|
|
+ return palletMatchLogList.stream().map(item -> {
|
|
|
+ PalletMatchLogDTO palletMatchLogDTO = ConvertUtils.sourceToTarget(item, PalletMatchLogDTO.class);
|
|
|
+ BaseLocationInfo locationInfo = baseLocationInfoList.stream().filter(baseLocationInfo -> baseLocationInfo.getId().equals(Long.parseLong(item.getLocationId()))).findFirst().orElseThrow(() -> new BaseException("库位信息有误"));
|
|
|
+ palletMatchLogDTO.setLocationNo(locationInfo.getLocationNo());
|
|
|
+ return palletMatchLogDTO;
|
|
|
+ }).collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
- private List<PalletMatchLog> buildPalletMatchLogList(List<InvLotAttPalletTotalDTO> invLotAttPalletTotalDTOList, List<String> orderList){
|
|
|
+ private List<PalletMatchLog> buildPalletMatchLogList(List<InvLotAttPalletTotalDTO> invLotAttPalletTotalDTOList, List<String> orderList) {
|
|
|
String orderNos = orderList.stream().collect(Collectors.joining(","));
|
|
|
Date createTime = DateUtils.getNowDate();
|
|
|
return invLotAttPalletTotalDTOList.stream().map(item -> {
|
|
|
PalletMatchLog palletMatchLog = ConvertUtils.sourceToTarget(item, PalletMatchLog.class);
|
|
|
+ palletMatchLog.setTotalQty(item.getTotalQty().toString());
|
|
|
palletMatchLog.setCreateTime(createTime);
|
|
|
palletMatchLog.setOrderNos(orderNos);
|
|
|
+ palletMatchLog.setUserdefine1(Constants.NO);
|
|
|
return palletMatchLog;
|
|
|
}).collect(Collectors.toList());
|
|
|
}
|