|
|
|
@ -181,11 +181,12 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
String waybillNo = warehouseWaybill.getWaybillNo(); |
|
|
|
|
Long waybillId = warehouseWaybill.getId(); |
|
|
|
|
String destinationWarehouse = warehouseWaybill.getDestinationWarehouseName();//目的仓
|
|
|
|
|
Long destinationWarehouseId = warehouseWaybill.getDestinationWarehouseId(); |
|
|
|
|
Integer totalCount = warehouseWaybill.getTotalCount();//订单总数量
|
|
|
|
|
Integer stockCount = warehouseWaybill.getStockCount();//订单在库数量
|
|
|
|
|
String consignee = warehouseWaybill.getConsignee(); |
|
|
|
|
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseClient.findByName(destinationWarehouse); |
|
|
|
|
DistributionStockArticleEntity distributionStockArticleEntity = distributionStockArticleClient.findByOrderSelfNum(waybillNo); |
|
|
|
|
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(destinationWarehouseId); |
|
|
|
|
DistributionStockArticleEntity distributionStockArticleEntity = distributionStockArticleClient.findByOrderSelfNum(waybillNo,destinationWarehouseId); |
|
|
|
|
BasicdataClientEntity clientEntity = basicdataClientClient.findByName(consignee); |
|
|
|
|
Date date = new Date(); |
|
|
|
|
|
|
|
|
@ -409,18 +410,32 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
log.info("###########splitOrder: 开始拆单 "); |
|
|
|
|
Long articleId = distributionStockArticleEntity.getId(); |
|
|
|
|
Integer handQuantity = distributionStockArticleEntity.getHandQuantity(); |
|
|
|
|
String orderSelfNum = distributionStockArticleEntity.getOrderCode(); |
|
|
|
|
Integer total = 0; |
|
|
|
|
for (SplitOrderDTO splitOrderDTO : splitOrderDTOList) { |
|
|
|
|
List<ProductDTO> products = splitOrderDTO.getProducts(); |
|
|
|
|
for (ProductDTO product : products) { |
|
|
|
|
total = total+ product.getSplitNum(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(handQuantity < total){ |
|
|
|
|
log.warn("##############splitOrder: 在库件数不足"); |
|
|
|
|
throw new CustomerException(405,"在库件数不足"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String orderCode = distributionStockArticleEntity.getOrderCode(); |
|
|
|
|
Long orderId = distributionStockArticleEntity.getId(); |
|
|
|
|
Long warehouseId = distributionStockArticleEntity.getWarehouseId(); |
|
|
|
|
List<ProductDTO> submitList = new ArrayList<>(); |
|
|
|
|
List<DistributionStockArticleEntity> articleList = distributionStockArticleClient.likeOrderSelfNumbering(orderSelfNum); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findEntityListByOrderCode(orderSelfNum, warehouseId); |
|
|
|
|
List<DistributionStockArticleEntity> articleList = distributionStockArticleClient.findListByOrderCodeLike(orderCode); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findEntityListByOrderCode(orderCode, warehouseId); |
|
|
|
|
int size = articleList.size(); |
|
|
|
|
Integer subNum = 0; |
|
|
|
|
for (int i = 0; i < splitOrderDTOList.size(); i++) { |
|
|
|
|
SplitOrderDTO splitOrderDTO = splitOrderDTOList.get(i); |
|
|
|
|
DistributionStockArticleEntity entity = new DistributionStockArticleEntity(); |
|
|
|
|
BeanUtil.copyProperties(distributionStockArticleEntity, entity); |
|
|
|
|
entity.setId(null); |
|
|
|
|
entity.setOrderCode(entity.getOrderCode() + "-" + size); |
|
|
|
|
entity.setCustomerName(splitOrderDTO.getCustomerPerson()); |
|
|
|
|
entity.setCustomerTelephone(splitOrderDTO.getCustomerMobile()); |
|
|
|
@ -444,6 +459,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
DistributionParcelListEntity distributionParcelListEntity = new DistributionParcelListEntity(); |
|
|
|
|
DistributionParcelListEntity distributionParcelListEntity1 = parcelListEntityList.get(0); |
|
|
|
|
BeanUtil.copyProperties(distributionParcelListEntity1, distributionParcelListEntity); |
|
|
|
|
distributionParcelListEntity.setId(null); |
|
|
|
|
distributionParcelListEntity.setFirsts(productDTO.getProductName()); |
|
|
|
|
distributionParcelListEntity.setQuantity(productDTO.getSplitNum()); |
|
|
|
|
list.add(distributionParcelListEntity); |
|
|
|
@ -508,8 +524,8 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
} |
|
|
|
|
distributionStockArticleEntity.setHandQuantity(handQuantity - allNum); |
|
|
|
|
distributionStockArticleClient.submitHandQuantity(allNum, articleId); |
|
|
|
|
String orderSelfNumbering = distributionStockArticleEntity.getOrderCode(); |
|
|
|
|
warehouseWaybillMapper.submitStockCount(orderSelfNumbering, allNum); |
|
|
|
|
// String orderSelfNumbering = distributionStockArticleEntity.getOrderCode();
|
|
|
|
|
// warehouseWaybillMapper.submitStockCount(orderSelfNumbering, allNum);
|
|
|
|
|
//删除主订单包件对应数据
|
|
|
|
|
for (ProductDTO productDTO : submitList) { |
|
|
|
|
String productName = productDTO.getProductName(); |
|
|
|
@ -524,7 +540,7 @@ public class WarehouseWaybillServiceImpl extends BaseServiceImpl<WarehouseWaybil
|
|
|
|
|
size++; |
|
|
|
|
} |
|
|
|
|
//减去零担零担上的在库件数
|
|
|
|
|
distributionStockArticleClient.submitHandleNumByOrderId(subNum,articleId); |
|
|
|
|
// distributionStockArticleClient.submitHandleNumByOrderId(subNum,articleId);
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|