|
|
|
@ -5,6 +5,7 @@ import cn.hutool.core.date.DateUtil;
|
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.logpm.basic.entity.BasicMaterialEntity; |
|
|
|
|
import com.logpm.basic.feign.IBasicMaterialClient; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataClientEntity; |
|
|
|
@ -24,6 +25,7 @@ import com.logpm.trunkline.dto.OrderStatusDTO;
|
|
|
|
|
import com.logpm.trunkline.entity.TrunklineAdvanceDetailEntity; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineAdvanceEntity; |
|
|
|
|
import com.logpm.trunkline.mapper.TrunklineAdvanceMapper; |
|
|
|
|
import com.logpm.trunkline.service.ITrunklineAdvanceDetailService; |
|
|
|
|
import com.logpm.trunkline.service.ITrunklineAdvanceService; |
|
|
|
|
import com.logpm.trunkline.vo.CustomerInfoVO; |
|
|
|
|
import com.logpm.trunkline.vo.OpenOrderVO; |
|
|
|
@ -41,6 +43,7 @@ import org.springblade.core.tool.utils.Func;
|
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.amqp.rabbit.core.RabbitTemplate; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.function.Function; |
|
|
|
@ -61,6 +64,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
private final IWarehouseWaybillClient warehouseWaybillClient; |
|
|
|
|
private final IBasicdataTripartiteMallClient basicdataTripartiteMallClient; |
|
|
|
|
private final RabbitTemplate rabbitTemplate; |
|
|
|
|
private final ITrunklineAdvanceDetailService advanceDetailService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -69,38 +73,38 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
String orderCode = advanceDetailEntity.getOrderCode(); |
|
|
|
|
Long advanceId = advanceDetailEntity.getAdvanceId(); |
|
|
|
|
String tenantId = advanceDetailEntity.getTenantId(); |
|
|
|
|
log.info("############saveOrderAndPackage: 保存订单和包件信息 orderPackageCode={}",orderPackageCode); |
|
|
|
|
log.info("############saveOrderAndPackage: 保存订单和包件信息 orderPackageCode={}", orderPackageCode); |
|
|
|
|
|
|
|
|
|
BasicdataWarehouseEntity warehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(warehouseId); |
|
|
|
|
if(Objects.isNull(warehouseEntity)){ |
|
|
|
|
log.warn("############saveOrderAndPackage: 仓库信息不存在warehouseId={}",warehouseId); |
|
|
|
|
throw new CustomerException(405,"仓库信息不存在"); |
|
|
|
|
if (Objects.isNull(warehouseEntity)) { |
|
|
|
|
log.warn("############saveOrderAndPackage: 仓库信息不存在warehouseId={}", warehouseId); |
|
|
|
|
throw new CustomerException(405, "仓库信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//1.判断包件是否已经存在
|
|
|
|
|
DistributionParcelListEntity parcelListEntity = parcelListClient.findByPacketBarCodeAndWarehouseId(orderPackageCode, warehouseId); |
|
|
|
|
if(!Objects.isNull(parcelListEntity)){ |
|
|
|
|
log.warn("############saveOrderAndPackage: 包件信息已存在 orderPackageCode={} warehouseId={}",orderPackageCode,warehouseId); |
|
|
|
|
if (!Objects.isNull(parcelListEntity)) { |
|
|
|
|
log.warn("############saveOrderAndPackage: 包件信息已存在 orderPackageCode={} warehouseId={}", orderPackageCode, warehouseId); |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceEntity advanceEntity = getById(advanceId); |
|
|
|
|
if(Objects.isNull(advanceEntity)){ |
|
|
|
|
log.warn("############saveOrderAndPackage: 暂存单信息不存在 advanceId={} warehouseId={}",advanceId,warehouseId); |
|
|
|
|
throw new CustomerException(405,"暂存单信息不存在"); |
|
|
|
|
if (Objects.isNull(advanceEntity)) { |
|
|
|
|
log.warn("############saveOrderAndPackage: 暂存单信息不存在 advanceId={} warehouseId={}", advanceId, warehouseId); |
|
|
|
|
throw new CustomerException(405, "暂存单信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Long userId = AuthUtil.getUserId(); |
|
|
|
|
Long deptId = null; |
|
|
|
|
String deptIds = AuthUtil.getDeptId(); |
|
|
|
|
String[] split = deptIds.split(","); |
|
|
|
|
if(Objects.isNull(userId)){ |
|
|
|
|
if (Objects.isNull(userId)) { |
|
|
|
|
userId = advanceDetailEntity.getCreateUser(); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isEmpty(Arrays.asList(split))){ |
|
|
|
|
if (CollUtil.isEmpty(Arrays.asList(split))) { |
|
|
|
|
deptId = Long.parseLong(split[0]); |
|
|
|
|
} |
|
|
|
|
if(Objects.isNull(deptId)){ |
|
|
|
|
if (Objects.isNull(deptId)) { |
|
|
|
|
userId = advanceDetailEntity.getCreateDept(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -110,7 +114,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
Date date = new Date(); |
|
|
|
|
Long orderId = null; |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = stockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, warehouseId); |
|
|
|
|
if(Objects.isNull(stockArticleEntity)){ |
|
|
|
|
if (Objects.isNull(stockArticleEntity)) { |
|
|
|
|
log.info("#############saveOrderAndPackage: 订单信息为空,同步订单信息"); |
|
|
|
|
//订单信息为空
|
|
|
|
|
String waybillNo = advanceEntity.getWaybillNo(); |
|
|
|
@ -139,13 +143,13 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
|
|
|
|
|
stockArticleEntity.setTypeService("1");//默认商配
|
|
|
|
|
|
|
|
|
|
if(!StringUtil.isBlank(waybillNo)){ |
|
|
|
|
if (!StringUtil.isBlank(waybillNo)) { |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
|
if (!Objects.isNull(waybillEntity)) { |
|
|
|
|
Long consigneeId = waybillEntity.getConsigneeId(); |
|
|
|
|
|
|
|
|
|
BasicdataClientEntity clientEntity = basicdataClientClient.findEntityById(consigneeId); |
|
|
|
|
if(!Objects.isNull(clientEntity)){ |
|
|
|
|
if (!Objects.isNull(clientEntity)) { |
|
|
|
|
stockArticleEntity.setMallId(clientEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(clientEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(clientEntity.getClientCode()); |
|
|
|
@ -160,44 +164,44 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
stockArticleEntity.setConsigneeAddress(consigneeAddress); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(consigneeId, 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
Long clientId = basicdataTripartiteMallClient.getClientIdByNameAndBrand(dealerName, advanceEntity.getBrand()); |
|
|
|
|
BasicdataClientEntity basicdataClientEntity = basicdataClientClient.findEntityById(clientId); |
|
|
|
|
if(!Objects.isNull(basicdataClientEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataClientEntity)) { |
|
|
|
|
String clientType = basicdataClientEntity.getClientType(); |
|
|
|
|
if("5".equals(clientType)){ |
|
|
|
|
if ("5".equals(clientType)) { |
|
|
|
|
stockArticleEntity.setStoreId(basicdataClientEntity.getId()); |
|
|
|
|
stockArticleEntity.setStoreCode(basicdataClientEntity.getClientCode()); |
|
|
|
|
stockArticleEntity.setStoreName(basicdataClientEntity.getClientName()); |
|
|
|
|
//查询门店的父级商场
|
|
|
|
|
Long pid = basicdataClientEntity.getPid(); |
|
|
|
|
BasicdataClientEntity pidEntity = basicdataClientClient.findEntityById(pid); |
|
|
|
|
if(!Objects.isNull(pidEntity)){ |
|
|
|
|
if (!Objects.isNull(pidEntity)) { |
|
|
|
|
String pidEntityClientType = pidEntity.getClientType(); |
|
|
|
|
if("2".equals(pidEntityClientType)){ |
|
|
|
|
if ("2".equals(pidEntityClientType)) { |
|
|
|
|
//商城
|
|
|
|
|
stockArticleEntity.setMallId(pidEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(pidEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(pidEntity.getClientCode()); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(pidEntity.getId(), 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else if("2".equals(clientType)){ |
|
|
|
|
} else if ("2".equals(clientType)) { |
|
|
|
|
//商城
|
|
|
|
|
stockArticleEntity.setMallId(basicdataClientEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(basicdataClientEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(basicdataClientEntity.getClientCode()); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(basicdataClientEntity.getId(), 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -221,17 +225,17 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
stockArticleEntity.setTransferQuantity(0); |
|
|
|
|
stockArticleEntity.setSigninQuantity(0); |
|
|
|
|
orderId = stockArticleClient.addData(stockArticleEntity); |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
stockArticleEntity.setTotalNumber(total); |
|
|
|
|
stockArticleClient.saveOrUpdate(stockArticleEntity); |
|
|
|
|
orderId = stockArticleEntity.getId(); |
|
|
|
|
} |
|
|
|
|
if(Objects.isNull(orderId)){ |
|
|
|
|
log.warn("##############saveOrderAndPackage: 订单信息有误 orderId={}",orderId); |
|
|
|
|
throw new CustomerException(405,"订单信息有误"); |
|
|
|
|
if (Objects.isNull(orderId)) { |
|
|
|
|
log.warn("##############saveOrderAndPackage: 订单信息有误 orderId={}", orderId); |
|
|
|
|
throw new CustomerException(405, "订单信息有误"); |
|
|
|
|
} |
|
|
|
|
log.info("#############saveOrderAndPackage: 订单信息保存成功 orderId={}",orderId); |
|
|
|
|
log.info("#############saveOrderAndPackage: 订单信息保存成功 orderId={}", orderId); |
|
|
|
|
|
|
|
|
|
//保存包件信息
|
|
|
|
|
DistributionParcelListEntity parcelList = new DistributionParcelListEntity(); |
|
|
|
@ -243,9 +247,9 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
parcelList.setWarehouseId(warehouseId); |
|
|
|
|
parcelList.setIsTransfer(1); |
|
|
|
|
String waybillNo = advanceEntity.getWaybillNo(); |
|
|
|
|
if(StringUtil.isNotBlank(waybillNo)){ |
|
|
|
|
if (StringUtil.isNotBlank(waybillNo)) { |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
|
if (!Objects.isNull(waybillEntity)) { |
|
|
|
|
parcelList.setWaybillId(waybillEntity.getId()); |
|
|
|
|
parcelList.setWaybillNumber(waybillEntity.getWaybillNo()); |
|
|
|
|
parcelList.setSendWarehouseId(waybillEntity.getDepartureWarehouseId()); |
|
|
|
@ -253,7 +257,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
|
parcelList.setAcceptWarehouseId(destinationWarehouseId); |
|
|
|
|
parcelList.setAcceptWarehouseName(waybillEntity.getDestinationWarehouseName()); |
|
|
|
|
if(warehouseId.equals(destinationWarehouseId)){ |
|
|
|
|
if (warehouseId.equals(destinationWarehouseId)) { |
|
|
|
|
parcelList.setIsTransfer(0); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -273,17 +277,17 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
Long materialId = advanceDetailEntity.getMaterialId(); |
|
|
|
|
String materialCode = advanceDetailEntity.getMaterialCode(); |
|
|
|
|
String materialName = advanceDetailEntity.getMaterialName(); |
|
|
|
|
if(Objects.isNull(materialId)){ |
|
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.findEntityByCodeAndName(materialCode,materialName); |
|
|
|
|
if(!Objects.isNull(materialEntity)){ |
|
|
|
|
if (Objects.isNull(materialId)) { |
|
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.findEntityByCodeAndName(materialCode, materialName); |
|
|
|
|
if (!Objects.isNull(materialEntity)) { |
|
|
|
|
parcelList.setMaterialId(materialEntity.getId()); |
|
|
|
|
parcelList.setMaterialName(materialEntity.getName()); |
|
|
|
|
parcelList.setMaterialCode(materialEntity.getProductCode()); |
|
|
|
|
parcelList.setMaterialUnit(materialEntity.getSpecification()); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
BasicMaterialEntity materialOwnId = basicMaterialClient.getMaterialOwnId(materialId); |
|
|
|
|
if(!Objects.isNull(materialOwnId)){ |
|
|
|
|
if (!Objects.isNull(materialOwnId)) { |
|
|
|
|
parcelList.setMaterialId(materialOwnId.getId()); |
|
|
|
|
parcelList.setMaterialName(materialOwnId.getName()); |
|
|
|
|
parcelList.setMaterialCode(materialOwnId.getProductCode()); |
|
|
|
@ -302,8 +306,8 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
parcelList.setDealerCode(stockArticleEntity.getDealerCode()); |
|
|
|
|
parcelList.setDealerName(stockArticleEntity.getDealerName()); |
|
|
|
|
Long orderPackageId = parcelListClient.addReturnId(parcelList); |
|
|
|
|
if(!Objects.isNull(orderPackageId)){ |
|
|
|
|
log.info("################saveOrderAndPackage: 包件信息保存成功 OrderPackageCode={}",advanceDetailEntity.getOrderPackageCode()); |
|
|
|
|
if (!Objects.isNull(orderPackageId)) { |
|
|
|
|
log.info("################saveOrderAndPackage: 包件信息保存成功 OrderPackageCode={}", advanceDetailEntity.getOrderPackageCode()); |
|
|
|
|
//1.修改订单在库件数和最后入库时间和入库状态
|
|
|
|
|
|
|
|
|
|
// List<DistributionParcelListEntity> parcelListEntityList = parcelListClient.findEntityListByOrderCode(orderCode, warehouseId);
|
|
|
|
@ -330,7 +334,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
// }
|
|
|
|
|
// stockArticleClient.saveOrUpdate(stockArticleEntity);
|
|
|
|
|
} |
|
|
|
|
log.info("#############saveOrderAndPackage: 订单包件信息保存完成 OrderPackageCode={}",advanceDetailEntity.getOrderPackageCode()); |
|
|
|
|
log.info("#############saveOrderAndPackage: 订单包件信息保存完成 OrderPackageCode={}", advanceDetailEntity.getOrderPackageCode()); |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -375,23 +379,23 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
@Override |
|
|
|
|
public TrunklineAdvanceEntity findEntityByOrderCodeAndServiceNumAndTrainNumber(String orderCode, String trainNumber, String serviceNum) { |
|
|
|
|
QueryWrapper<TrunklineAdvanceEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("order_code",orderCode) |
|
|
|
|
.eq("train_number",trainNumber) |
|
|
|
|
.eq("service_num",serviceNum); |
|
|
|
|
queryWrapper.eq("order_code", orderCode) |
|
|
|
|
.eq("train_number", trainNumber) |
|
|
|
|
.eq("service_num", serviceNum); |
|
|
|
|
return baseMapper.selectOne(queryWrapper); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public TrunklineAdvanceEntity findEntityByOrderCodeAndTrainNumber(String orderCode, String trainNumber) { |
|
|
|
|
QueryWrapper<TrunklineAdvanceEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("order_code",orderCode) |
|
|
|
|
.eq("train_number",trainNumber); |
|
|
|
|
queryWrapper.eq("order_code", orderCode) |
|
|
|
|
.eq("train_number", trainNumber); |
|
|
|
|
return baseMapper.selectOne(queryWrapper); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void updateTotalNumById(Long id, int totalNum) { |
|
|
|
|
baseMapper.updateTotalNumById(id,totalNum); |
|
|
|
|
baseMapper.updateTotalNumById(id, totalNum); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -401,7 +405,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void updateIncomingWarehouseName(String incomingWarehouseName, Long advanceId) { |
|
|
|
|
baseMapper.updateIncomingWarehouseName(incomingWarehouseName,advanceId); |
|
|
|
|
baseMapper.updateIncomingWarehouseName(incomingWarehouseName, advanceId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -415,17 +419,17 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
Date date = new Date(); |
|
|
|
|
|
|
|
|
|
BasicdataWarehouseEntity warehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(warehouseId); |
|
|
|
|
if(Objects.isNull(warehouseEntity)){ |
|
|
|
|
log.warn("###############incomingPackageBatch: 仓库信息不存在 warehouseId={}",warehouseId); |
|
|
|
|
throw new CustomerException(405,"仓库信息不存在"); |
|
|
|
|
if (Objects.isNull(warehouseEntity)) { |
|
|
|
|
log.warn("###############incomingPackageBatch: 仓库信息不存在 warehouseId={}", warehouseId); |
|
|
|
|
throw new CustomerException(405, "仓库信息不存在"); |
|
|
|
|
} |
|
|
|
|
String warehouseName = warehouseEntity.getName(); |
|
|
|
|
|
|
|
|
|
//查询暂存单数据
|
|
|
|
|
TrunklineAdvanceEntity advanceEntity = baseMapper.selectById(advanceId); |
|
|
|
|
if(Objects.isNull(advanceEntity)){ |
|
|
|
|
log.warn("###############incomingPackageBatch: 暂存单信息不存在 advanceId={}",advanceId); |
|
|
|
|
throw new CustomerException(405,"暂存单信息不存在"); |
|
|
|
|
if (Objects.isNull(advanceEntity)) { |
|
|
|
|
log.warn("###############incomingPackageBatch: 暂存单信息不存在 advanceId={}", advanceId); |
|
|
|
|
throw new CustomerException(405, "暂存单信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String orderCode = advanceEntity.getOrderCode(); |
|
|
|
@ -433,7 +437,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
|
|
|
|
|
Long orderId = null; |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = stockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, warehouseId); |
|
|
|
|
if(Objects.isNull(stockArticleEntity)){ |
|
|
|
|
if (Objects.isNull(stockArticleEntity)) { |
|
|
|
|
log.info("#############saveOrderAndPackage: 订单信息为空,同步订单信息"); |
|
|
|
|
//订单信息为空
|
|
|
|
|
String waybillNo = advanceEntity.getWaybillNo(); |
|
|
|
@ -463,16 +467,16 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
|
|
|
|
|
stockArticleEntity.setTypeService("1");//默认商配
|
|
|
|
|
|
|
|
|
|
if(Objects.isNull(waybillEntity)){ |
|
|
|
|
if(!StringUtil.isBlank(waybillNo)){ |
|
|
|
|
if (Objects.isNull(waybillEntity)) { |
|
|
|
|
if (!StringUtil.isBlank(waybillNo)) { |
|
|
|
|
waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(Objects.isNull(waybillEntity)){ |
|
|
|
|
throw new CustomerException(405,"运单信息不存在"); |
|
|
|
|
if (Objects.isNull(waybillEntity)) { |
|
|
|
|
throw new CustomerException(405, "运单信息不存在"); |
|
|
|
|
} |
|
|
|
|
Long consigneeId = waybillEntity.getConsigneeId(); |
|
|
|
|
|
|
|
|
|
BasicdataClientEntity clientEntity = basicdataClientClient.findEntityById(consigneeId); |
|
|
|
|
if(!Objects.isNull(clientEntity)){ |
|
|
|
|
if (!Objects.isNull(clientEntity)) { |
|
|
|
|
stockArticleEntity.setMallId(clientEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(clientEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(clientEntity.getClientCode()); |
|
|
|
@ -487,53 +491,53 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
stockArticleEntity.setConsigneeAddress(consigneeAddress); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(consigneeId, 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
Long clientId = basicdataTripartiteMallClient.getClientIdByNameAndBrand(dealerName, advanceEntity.getBrand()); |
|
|
|
|
BasicdataClientEntity basicdataClientEntity = basicdataClientClient.findEntityById(clientId); |
|
|
|
|
if(!Objects.isNull(basicdataClientEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataClientEntity)) { |
|
|
|
|
String clientType = basicdataClientEntity.getClientType(); |
|
|
|
|
if("5".equals(clientType)){ |
|
|
|
|
if ("5".equals(clientType)) { |
|
|
|
|
stockArticleEntity.setStoreId(basicdataClientEntity.getId()); |
|
|
|
|
stockArticleEntity.setStoreCode(basicdataClientEntity.getClientCode()); |
|
|
|
|
stockArticleEntity.setStoreName(basicdataClientEntity.getClientName()); |
|
|
|
|
//查询门店的父级商场
|
|
|
|
|
Long pid = basicdataClientEntity.getPid(); |
|
|
|
|
BasicdataClientEntity pidEntity = basicdataClientClient.findEntityById(pid); |
|
|
|
|
if(!Objects.isNull(pidEntity)){ |
|
|
|
|
if (!Objects.isNull(pidEntity)) { |
|
|
|
|
String pidEntityClientType = pidEntity.getClientType(); |
|
|
|
|
if("2".equals(pidEntityClientType)){ |
|
|
|
|
if ("2".equals(pidEntityClientType)) { |
|
|
|
|
//商城
|
|
|
|
|
stockArticleEntity.setMallId(pidEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(pidEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(pidEntity.getClientCode()); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(pidEntity.getId(), 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else if("2".equals(clientType)){ |
|
|
|
|
} else if ("2".equals(clientType)) { |
|
|
|
|
//商城
|
|
|
|
|
stockArticleEntity.setMallId(basicdataClientEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(basicdataClientEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(basicdataClientEntity.getClientCode()); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(basicdataClientEntity.getId(), 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
Long consigneeId = waybillEntity.getConsigneeId(); |
|
|
|
|
|
|
|
|
|
BasicdataClientEntity clientEntity = basicdataClientClient.findEntityById(consigneeId); |
|
|
|
|
if(!Objects.isNull(clientEntity)){ |
|
|
|
|
if (!Objects.isNull(clientEntity)) { |
|
|
|
|
stockArticleEntity.setMallId(clientEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(clientEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(clientEntity.getClientCode()); |
|
|
|
@ -548,7 +552,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
stockArticleEntity.setConsigneeAddress(consigneeAddress); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(consigneeId, 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -570,17 +574,17 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
stockArticleEntity.setTransferQuantity(0); |
|
|
|
|
stockArticleEntity.setSigninQuantity(0); |
|
|
|
|
orderId = stockArticleClient.addData(stockArticleEntity); |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
stockArticleEntity.setTotalNumber(total); |
|
|
|
|
stockArticleClient.saveOrUpdate(stockArticleEntity); |
|
|
|
|
orderId = stockArticleEntity.getId(); |
|
|
|
|
} |
|
|
|
|
if(Objects.isNull(orderId)){ |
|
|
|
|
log.warn("##############saveOrderAndPackage: 订单信息有误 orderId={}",orderId); |
|
|
|
|
throw new CustomerException(405,"订单信息有误"); |
|
|
|
|
if (Objects.isNull(orderId)) { |
|
|
|
|
log.warn("##############saveOrderAndPackage: 订单信息有误 orderId={}", orderId); |
|
|
|
|
throw new CustomerException(405, "订单信息有误"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
stockArticleClient.updateAllOrderTotalNum(orderCode,total); |
|
|
|
|
stockArticleClient.updateAllOrderTotalNum(orderCode, total); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = new ArrayList<>(); |
|
|
|
|
List<String> orderPackageCodes = new ArrayList<>(); |
|
|
|
@ -597,7 +601,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
parcelList.setWarehouse(warehouseEntity.getName()); |
|
|
|
|
parcelList.setWarehouseId(warehouseId); |
|
|
|
|
String waybillNo = advanceEntity.getWaybillNo(); |
|
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
|
if (!Objects.isNull(waybillEntity)) { |
|
|
|
|
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId(); |
|
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
|
parcelList.setWaybillId(waybillEntity.getId()); |
|
|
|
@ -606,7 +610,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
parcelList.setSendWarehouseName(waybillEntity.getDepartureWarehouseName()); |
|
|
|
|
parcelList.setAcceptWarehouseId(destinationWarehouseId); |
|
|
|
|
parcelList.setAcceptWarehouseName(waybillEntity.getDestinationWarehouseName()); |
|
|
|
|
if(departureWarehouseId.equals(destinationWarehouseId)){ |
|
|
|
|
if (departureWarehouseId.equals(destinationWarehouseId)) { |
|
|
|
|
parcelList.setIsTransfer(0); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -625,17 +629,17 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
Long materialId = advanceDetailEntity.getMaterialId(); |
|
|
|
|
String materialCode = advanceDetailEntity.getMaterialCode(); |
|
|
|
|
String materialName = advanceDetailEntity.getMaterialName(); |
|
|
|
|
if(Objects.isNull(materialId)){ |
|
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.findEntityByCodeAndName(materialCode,materialName); |
|
|
|
|
if(!Objects.isNull(materialEntity)){ |
|
|
|
|
if (Objects.isNull(materialId)) { |
|
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.findEntityByCodeAndName(materialCode, materialName); |
|
|
|
|
if (!Objects.isNull(materialEntity)) { |
|
|
|
|
parcelList.setMaterialId(materialEntity.getId()); |
|
|
|
|
parcelList.setMaterialName(materialEntity.getName()); |
|
|
|
|
parcelList.setMaterialCode(materialEntity.getProductCode()); |
|
|
|
|
parcelList.setMaterialUnit(materialEntity.getSpecification()); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
BasicMaterialEntity materialOwnId = basicMaterialClient.getMaterialOwnId(materialId); |
|
|
|
|
if(!Objects.isNull(materialOwnId)){ |
|
|
|
|
if (!Objects.isNull(materialOwnId)) { |
|
|
|
|
parcelList.setMaterialId(materialOwnId.getId()); |
|
|
|
|
parcelList.setMaterialName(materialOwnId.getName()); |
|
|
|
|
parcelList.setMaterialCode(materialOwnId.getProductCode()); |
|
|
|
@ -664,7 +668,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
} |
|
|
|
|
parcelListClient.addBatch(parcelListEntityList); |
|
|
|
|
try { |
|
|
|
|
if(CollUtil.isNotEmpty(parcelListEntityList)){ |
|
|
|
|
if (CollUtil.isNotEmpty(parcelListEntityList)) { |
|
|
|
|
for (DistributionParcelListEntity parcelListEntity : parcelListEntityList) { |
|
|
|
|
// 发送入库消息
|
|
|
|
|
OrderStatusDTO orderStatusDTO = new OrderStatusDTO(); |
|
|
|
@ -694,19 +698,19 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
public boolean saveOrderAndPackages(List<TrunklineAdvanceDetailEntity> advanceDetailEntities, Long warehouseId) { |
|
|
|
|
|
|
|
|
|
BasicdataWarehouseEntity warehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(warehouseId); |
|
|
|
|
if(Objects.isNull(warehouseEntity)){ |
|
|
|
|
log.warn("############saveOrderAndPackages: 仓库信息不存在warehouseId={}",warehouseId); |
|
|
|
|
throw new CustomerException(405,"仓库信息不存在"); |
|
|
|
|
if (Objects.isNull(warehouseEntity)) { |
|
|
|
|
log.warn("############saveOrderAndPackages: 仓库信息不存在warehouseId={}", warehouseId); |
|
|
|
|
throw new CustomerException(405, "仓库信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceDetailEntity advanceDetailEntity = advanceDetailEntities.get(0); |
|
|
|
|
String tenantId = advanceDetailEntity.getTenantId(); |
|
|
|
|
Long userId = AuthUtil.getUserId(); |
|
|
|
|
Long deptId = Func.firstLong(AuthUtil.getDeptId()); |
|
|
|
|
if(Objects.isNull(userId)){ |
|
|
|
|
if (Objects.isNull(userId)) { |
|
|
|
|
userId = advanceDetailEntity.getCreateUser(); |
|
|
|
|
} |
|
|
|
|
if(Objects.isNull(deptId)){ |
|
|
|
|
if (Objects.isNull(deptId)) { |
|
|
|
|
userId = advanceDetailEntity.getCreateDept(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -725,21 +729,21 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
Set<Long> advanceIdSet = advanceDetailEntities.stream().map(TrunklineAdvanceDetailEntity::getAdvanceId).collect(Collectors.toSet()); |
|
|
|
|
List<TrunklineAdvanceEntity> advanceEntityList = findListByIds(new ArrayList<>(advanceIdSet)); |
|
|
|
|
|
|
|
|
|
Map<String,TrunklineAdvanceEntity> advanceEntityMap = new HashMap<>(); |
|
|
|
|
if(!advanceEntityList.isEmpty()){ |
|
|
|
|
Map<String, TrunklineAdvanceEntity> advanceEntityMap = new HashMap<>(); |
|
|
|
|
if (!advanceEntityList.isEmpty()) { |
|
|
|
|
advanceEntityMap = advanceEntityList.stream().collect(Collectors.toMap(TrunklineAdvanceEntity::getOrderCode, Function.identity())); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<DistributionStockArticleEntity> stockArticleEntities = stockArticleClient.findListByOrderCodesAndWarehouseId(orderCodeSet,warehouseId); |
|
|
|
|
List<DistributionStockArticleEntity> stockArticleEntities = stockArticleClient.findListByOrderCodesAndWarehouseId(orderCodeSet, warehouseId); |
|
|
|
|
Map<String, DistributionStockArticleEntity> stockArticleMap = new HashMap<>(); |
|
|
|
|
if(!stockArticleEntities.isEmpty()){ |
|
|
|
|
if (!stockArticleEntities.isEmpty()) { |
|
|
|
|
stockArticleMap = stockArticleEntities.stream().collect(Collectors.toMap(DistributionStockArticleEntity::getOrderCode, Function.identity())); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = parcelListClient.findListByOrderCodesAndWarehouseId(orderCodeSet,warehouseId); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = parcelListClient.findListByOrderCodesAndWarehouseId(orderCodeSet, warehouseId); |
|
|
|
|
Map<String, DistributionParcelListEntity> parcelListMap = new HashMap<>(); |
|
|
|
|
if(!parcelListEntities.isEmpty()){ |
|
|
|
|
if (!parcelListEntities.isEmpty()) { |
|
|
|
|
parcelListMap = parcelListEntities.stream().collect(Collectors.toMap(DistributionParcelListEntity::getOrderPackageCode, Function.identity())); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -758,9 +762,9 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
int total = baseMapper.getAllTotalNum(orderCode); |
|
|
|
|
|
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = finalStockArticleMap.get(orderCode); |
|
|
|
|
if(Objects.isNull(stockArticleEntity)){ |
|
|
|
|
if (Objects.isNull(stockArticleEntity)) { |
|
|
|
|
TrunklineAdvanceEntity advanceEntity = finalAdvanceEntityMap.get(orderCode); |
|
|
|
|
if(!Objects.isNull(advanceEntity)){ |
|
|
|
|
if (!Objects.isNull(advanceEntity)) { |
|
|
|
|
String waybillNo = advanceEntity.getWaybillNo(); |
|
|
|
|
|
|
|
|
|
stockArticleEntity = new DistributionStockArticleEntity(); |
|
|
|
@ -787,13 +791,13 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
|
|
|
|
|
stockArticleEntity.setTypeService("1");//默认商配
|
|
|
|
|
|
|
|
|
|
if(!StringUtil.isBlank(waybillNo)){ |
|
|
|
|
if (!StringUtil.isBlank(waybillNo)) { |
|
|
|
|
WarehouseWaybillEntity waybillEntity = waybillEntityMap.get(waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
|
if (!Objects.isNull(waybillEntity)) { |
|
|
|
|
Long consigneeId = waybillEntity.getConsigneeId(); |
|
|
|
|
|
|
|
|
|
BasicdataClientEntity clientEntity = basicdataClientClient.findEntityById(consigneeId); |
|
|
|
|
if(!Objects.isNull(clientEntity)){ |
|
|
|
|
if (!Objects.isNull(clientEntity)) { |
|
|
|
|
stockArticleEntity.setMallId(clientEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(clientEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(clientEntity.getClientCode()); |
|
|
|
@ -808,44 +812,44 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
stockArticleEntity.setConsigneeAddress(consigneeAddress); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(consigneeId, 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
Long clientId = basicdataTripartiteMallClient.getClientIdByNameAndBrand(dealerName, advanceEntity.getBrand()); |
|
|
|
|
BasicdataClientEntity basicdataClientEntity = basicdataClientClient.findEntityById(clientId); |
|
|
|
|
if(!Objects.isNull(basicdataClientEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataClientEntity)) { |
|
|
|
|
String clientType = basicdataClientEntity.getClientType(); |
|
|
|
|
if("5".equals(clientType)){ |
|
|
|
|
if ("5".equals(clientType)) { |
|
|
|
|
stockArticleEntity.setStoreId(basicdataClientEntity.getId()); |
|
|
|
|
stockArticleEntity.setStoreCode(basicdataClientEntity.getClientCode()); |
|
|
|
|
stockArticleEntity.setStoreName(basicdataClientEntity.getClientName()); |
|
|
|
|
//查询门店的父级商场
|
|
|
|
|
Long pid = basicdataClientEntity.getPid(); |
|
|
|
|
BasicdataClientEntity pidEntity = basicdataClientClient.findEntityById(pid); |
|
|
|
|
if(!Objects.isNull(pidEntity)){ |
|
|
|
|
if (!Objects.isNull(pidEntity)) { |
|
|
|
|
String pidEntityClientType = pidEntity.getClientType(); |
|
|
|
|
if("2".equals(pidEntityClientType)){ |
|
|
|
|
if ("2".equals(pidEntityClientType)) { |
|
|
|
|
//商城
|
|
|
|
|
stockArticleEntity.setMallId(pidEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(pidEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(pidEntity.getClientCode()); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(pidEntity.getId(), 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else if("2".equals(clientType)){ |
|
|
|
|
} else if ("2".equals(clientType)) { |
|
|
|
|
//商城
|
|
|
|
|
stockArticleEntity.setMallId(basicdataClientEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(basicdataClientEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(basicdataClientEntity.getClientCode()); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(basicdataClientEntity.getId(), 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
if (!Objects.isNull(basicdataStoreBusinessEntity)) { |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -869,7 +873,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
stockArticleEntity.setSigninQuantity(0); |
|
|
|
|
addStockArticleEntities.add(stockArticleEntity); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
stockArticleEntity.setTotalNumber(total); |
|
|
|
|
updateStockArticleEntities.add(stockArticleEntity); |
|
|
|
|
} |
|
|
|
@ -879,17 +883,17 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
List<DistributionStockArticleEntity> returnStockArticleEntities = stockArticleClient.addReturnList(addStockArticleEntities); |
|
|
|
|
returnStockArticleEntities.addAll(updateStockArticleEntities); |
|
|
|
|
|
|
|
|
|
Map<String,DistributionStockArticleEntity> saMap = returnStockArticleEntities.stream().collect(Collectors.toMap(DistributionStockArticleEntity::getOrderCode, Function.identity())); |
|
|
|
|
Map<String, DistributionStockArticleEntity> saMap = returnStockArticleEntities.stream().collect(Collectors.toMap(DistributionStockArticleEntity::getOrderCode, Function.identity())); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = new ArrayList<>(); |
|
|
|
|
orderCodeMap.keySet().forEach(orderCode->{ |
|
|
|
|
orderCodeMap.keySet().forEach(orderCode -> { |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = saMap.get(orderCode); |
|
|
|
|
if(!Objects.isNull(stockArticleEntity)){ |
|
|
|
|
if (!Objects.isNull(stockArticleEntity)) { |
|
|
|
|
Long orderId = stockArticleEntity.getId(); |
|
|
|
|
List<TrunklineAdvanceDetailEntity> adList = orderCodeMap.get(orderCode); |
|
|
|
|
adList.forEach(ad->{ |
|
|
|
|
adList.forEach(ad -> { |
|
|
|
|
String orderPackageCode = ad.getOrderPackageCode(); |
|
|
|
|
if(!hasOrderPackageCodes.contains(orderPackageCode)){ |
|
|
|
|
if (!hasOrderPackageCodes.contains(orderPackageCode)) { |
|
|
|
|
String trainNumber = ad.getTrainNumber(); |
|
|
|
|
DistributionParcelListEntity parcelList = new DistributionParcelListEntity(); |
|
|
|
|
parcelList.setCreateUser(finalUserId); |
|
|
|
@ -900,9 +904,9 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
parcelList.setWarehouseId(warehouseId); |
|
|
|
|
parcelList.setIsTransfer(1); |
|
|
|
|
String waybillNo = ad.getWaybillNo(); |
|
|
|
|
if(StringUtil.isNotBlank(waybillNo)){ |
|
|
|
|
if (StringUtil.isNotBlank(waybillNo)) { |
|
|
|
|
WarehouseWaybillEntity waybillEntity = waybillEntityMap.get(waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
|
if (!Objects.isNull(waybillEntity)) { |
|
|
|
|
parcelList.setWaybillId(waybillEntity.getId()); |
|
|
|
|
parcelList.setWaybillNumber(waybillEntity.getWaybillNo()); |
|
|
|
|
parcelList.setSendWarehouseId(waybillEntity.getDepartureWarehouseId()); |
|
|
|
@ -910,7 +914,7 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
|
parcelList.setAcceptWarehouseId(destinationWarehouseId); |
|
|
|
|
parcelList.setAcceptWarehouseName(waybillEntity.getDestinationWarehouseName()); |
|
|
|
|
if(warehouseId.equals(destinationWarehouseId)){ |
|
|
|
|
if (warehouseId.equals(destinationWarehouseId)) { |
|
|
|
|
parcelList.setIsTransfer(0); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -930,17 +934,17 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
Long materialId = advanceDetailEntity.getMaterialId(); |
|
|
|
|
String materialCode = advanceDetailEntity.getMaterialCode(); |
|
|
|
|
String materialName = advanceDetailEntity.getMaterialName(); |
|
|
|
|
if(Objects.isNull(materialId)){ |
|
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.findEntityByCodeAndName(materialCode,materialName); |
|
|
|
|
if(!Objects.isNull(materialEntity)){ |
|
|
|
|
if (Objects.isNull(materialId)) { |
|
|
|
|
BasicMaterialEntity materialEntity = basicMaterialClient.findEntityByCodeAndName(materialCode, materialName); |
|
|
|
|
if (!Objects.isNull(materialEntity)) { |
|
|
|
|
parcelList.setMaterialId(materialEntity.getId()); |
|
|
|
|
parcelList.setMaterialName(materialEntity.getName()); |
|
|
|
|
parcelList.setMaterialCode(materialEntity.getProductCode()); |
|
|
|
|
parcelList.setMaterialUnit(materialEntity.getSpecification()); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
BasicMaterialEntity materialOwnId = basicMaterialClient.getMaterialOwnId(materialId); |
|
|
|
|
if(!Objects.isNull(materialOwnId)){ |
|
|
|
|
if (!Objects.isNull(materialOwnId)) { |
|
|
|
|
parcelList.setMaterialId(materialOwnId.getId()); |
|
|
|
|
parcelList.setMaterialName(materialOwnId.getName()); |
|
|
|
|
parcelList.setMaterialCode(materialOwnId.getProductCode()); |
|
|
|
@ -966,8 +970,8 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
|
|
|
|
|
parcelListClient.addBatch(parcelListEntityList); |
|
|
|
|
|
|
|
|
|
orderCodeSet.forEach(orderCode->{ |
|
|
|
|
stockArticleClient.updateOrderInfo(orderCode,warehouseId); |
|
|
|
|
orderCodeSet.forEach(orderCode -> { |
|
|
|
|
stockArticleClient.updateOrderInfo(orderCode, warehouseId); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1240,4 +1244,28 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
public Boolean cancelOrder(String orderCode) { |
|
|
|
|
List<TrunklineAdvanceDetailEntity> list = advanceDetailService.list(Wrappers.<TrunklineAdvanceDetailEntity>lambdaQuery() |
|
|
|
|
.eq(TrunklineAdvanceDetailEntity::getOrderCode, orderCode) |
|
|
|
|
.and( |
|
|
|
|
wrapper -> wrapper.eq(TrunklineAdvanceDetailEntity::getPackageStatus, "1") |
|
|
|
|
.or().isNotNull(TrunklineAdvanceDetailEntity::getWaybillNo) |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
|
return Boolean.FALSE; |
|
|
|
|
} |
|
|
|
|
boolean detailUpdate = advanceDetailService.update(Wrappers.<TrunklineAdvanceDetailEntity>lambdaUpdate() |
|
|
|
|
.eq(TrunklineAdvanceDetailEntity::getOrderCode, orderCode) |
|
|
|
|
.set(TrunklineAdvanceDetailEntity::getIsDeleted, "1") |
|
|
|
|
); |
|
|
|
|
boolean advanceUpdate = this.update(Wrappers.<TrunklineAdvanceEntity>lambdaUpdate() |
|
|
|
|
.eq(TrunklineAdvanceEntity::getOrderCode, orderCode) |
|
|
|
|
.set(TrunklineAdvanceEntity::getIsDeleted, "1") |
|
|
|
|
); |
|
|
|
|
return detailUpdate && advanceUpdate; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|