|
|
|
@ -36,6 +36,7 @@ import org.springblade.core.secure.utils.AuthUtil;
|
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.Date; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Objects; |
|
|
|
@ -385,4 +386,233 @@ public class TrunklineAdvanceServiceImpl extends BaseServiceImpl<TrunklineAdvanc
|
|
|
|
|
return baseMapper.findIncomingOrderList(inComingDTO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<String> incomingPackageBatch(Long advanceId, Long warehouseId, List<TrunklineAdvanceDetailEntity> detailList, Long userId, Long deptId, String tenantId) { |
|
|
|
|
|
|
|
|
|
Date date = new Date(); |
|
|
|
|
|
|
|
|
|
BasicdataWarehouseEntity warehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(warehouseId); |
|
|
|
|
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,"暂存单信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String orderCode = advanceEntity.getOrderCode(); |
|
|
|
|
Integer total = baseMapper.findAllNumByOrderCode(orderCode); |
|
|
|
|
|
|
|
|
|
Long orderId = null; |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = stockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode, warehouseId); |
|
|
|
|
if(Objects.isNull(stockArticleEntity)){ |
|
|
|
|
log.info("#############saveOrderAndPackage: 订单信息为空,同步订单信息"); |
|
|
|
|
//订单信息为空
|
|
|
|
|
String waybillNo = advanceEntity.getWaybillNo(); |
|
|
|
|
|
|
|
|
|
stockArticleEntity = new DistributionStockArticleEntity(); |
|
|
|
|
stockArticleEntity.setCreateUser(userId); |
|
|
|
|
stockArticleEntity.setUpdateUser(userId); |
|
|
|
|
stockArticleEntity.setCreateDept(deptId); |
|
|
|
|
stockArticleEntity.setOrderCode(orderCode); |
|
|
|
|
stockArticleEntity.setServiceNumber(advanceEntity.getServiceNum()); |
|
|
|
|
stockArticleEntity.setWaybillNumber(waybillNo); |
|
|
|
|
stockArticleEntity.setTotalNumber(total); |
|
|
|
|
stockArticleEntity.setHandQuantity(0); |
|
|
|
|
stockArticleEntity.setTenantId(tenantId);// 对应租户ID
|
|
|
|
|
stockArticleEntity.setIsDeleted(0); |
|
|
|
|
stockArticleEntity.setStatus(1); |
|
|
|
|
stockArticleEntity.setWarehouse(warehouseName); |
|
|
|
|
stockArticleEntity.setWarehouseId(warehouseId); |
|
|
|
|
stockArticleEntity.setBrand(advanceEntity.getBrand()); |
|
|
|
|
stockArticleEntity.setDescriptionGoods(advanceEntity.getPackName()); |
|
|
|
|
stockArticleEntity.setWarehouseEntryTime(date); |
|
|
|
|
stockArticleEntity.setGenre(1); |
|
|
|
|
|
|
|
|
|
String dealerName = advanceEntity.getDealerName();//暂存单经销商名称
|
|
|
|
|
stockArticleEntity.setDealerCode(advanceEntity.getDealerCode()); |
|
|
|
|
stockArticleEntity.setDealerName(advanceEntity.getDealerName()); |
|
|
|
|
|
|
|
|
|
stockArticleEntity.setTypeService("1");//默认商配
|
|
|
|
|
|
|
|
|
|
if(!StringUtil.isBlank(waybillNo)){ |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
|
Long consigneeId = waybillEntity.getConsigneeId(); |
|
|
|
|
|
|
|
|
|
BasicdataClientEntity clientEntity = basicdataClientClient.findEntityById(consigneeId); |
|
|
|
|
if(!Objects.isNull(clientEntity)){ |
|
|
|
|
stockArticleEntity.setMallId(clientEntity.getId()); |
|
|
|
|
stockArticleEntity.setMallName(clientEntity.getClientName()); |
|
|
|
|
stockArticleEntity.setMallCode(clientEntity.getClientCode()); |
|
|
|
|
} |
|
|
|
|
String consignee = waybillEntity.getConsignee(); |
|
|
|
|
String consigneeName = waybillEntity.getConsigneeName(); |
|
|
|
|
String consigneeMobile = waybillEntity.getConsigneeMobile(); |
|
|
|
|
String consigneeAddress = waybillEntity.getConsigneeAddress(); |
|
|
|
|
stockArticleEntity.setConsigneeUnit(consignee); |
|
|
|
|
stockArticleEntity.setConsigneePerson(consigneeName); |
|
|
|
|
stockArticleEntity.setConsigneeMobile(consigneeMobile); |
|
|
|
|
stockArticleEntity.setConsigneeAddress(consigneeAddress); |
|
|
|
|
|
|
|
|
|
BasicdataStoreBusinessEntity basicdataStoreBusinessEntity = basicdataStoreBusinessClient.findByClientIdAndTypeService(consigneeId, 3); |
|
|
|
|
if(!Objects.isNull(basicdataStoreBusinessEntity)){ |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
Long clientId = basicdataTripartiteMallClient.getClientIdByNameAndBrand(dealerName, advanceEntity.getBrand()); |
|
|
|
|
BasicdataClientEntity basicdataClientEntity = basicdataClientClient.findEntityById(clientId); |
|
|
|
|
if(!Objects.isNull(basicdataClientEntity)){ |
|
|
|
|
String clientType = basicdataClientEntity.getClientType(); |
|
|
|
|
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)){ |
|
|
|
|
String pidEntityClientType = pidEntity.getClientType(); |
|
|
|
|
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)){ |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}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)){ |
|
|
|
|
stockArticleEntity.setTypeService(basicdataStoreBusinessEntity.getMold()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
stockArticleEntity.setCustomerName(advanceEntity.getCustomerName()); |
|
|
|
|
stockArticleEntity.setCustomerTelephone(advanceEntity.getCustomerPhone()); |
|
|
|
|
stockArticleEntity.setCustomerAddress(advanceEntity.getCustomerAddress()); |
|
|
|
|
stockArticleEntity.setStockupStatus("10"); |
|
|
|
|
stockArticleEntity.setReservationStatus("10"); |
|
|
|
|
stockArticleEntity.setOrderStatus("0"); |
|
|
|
|
stockArticleEntity.setGroundingStatus("10"); |
|
|
|
|
stockArticleEntity.setOrderReceiveStatus("10"); |
|
|
|
|
stockArticleEntity.setFreezeStatus("10"); |
|
|
|
|
stockArticleEntity.setNotification(2); |
|
|
|
|
stockArticleEntity.setIsHaveData(2); |
|
|
|
|
stockArticleEntity.setTrainNumber(advanceEntity.getTrainNumber()); |
|
|
|
|
stockArticleEntity.setSortingQuantity(0); |
|
|
|
|
stockArticleEntity.setDeliveryQuantity(0); |
|
|
|
|
stockArticleEntity.setTransferQuantity(0); |
|
|
|
|
stockArticleEntity.setSigninQuantity(0); |
|
|
|
|
orderId = stockArticleClient.addData(stockArticleEntity); |
|
|
|
|
}else{ |
|
|
|
|
stockArticleEntity.setTotalNumber(total); |
|
|
|
|
stockArticleClient.saveOrUpdate(stockArticleEntity); |
|
|
|
|
orderId = stockArticleEntity.getId(); |
|
|
|
|
} |
|
|
|
|
if(Objects.isNull(orderId)){ |
|
|
|
|
log.warn("##############saveOrderAndPackage: 订单信息有误 orderId={}",orderId); |
|
|
|
|
throw new CustomerException(405,"订单信息有误"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
stockArticleClient.updateAllOrderTotalNum(orderCode,total); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = new ArrayList<>(); |
|
|
|
|
List<String> orderPackageCodes = new ArrayList<>(); |
|
|
|
|
for (TrunklineAdvanceDetailEntity advanceDetailEntity : detailList) { |
|
|
|
|
String orderPackageCode = advanceDetailEntity.getOrderPackageCode(); |
|
|
|
|
DistributionParcelListEntity parcelList = new DistributionParcelListEntity(); |
|
|
|
|
parcelList.setCreateUser(userId); |
|
|
|
|
parcelList.setUpdateUser(userId); |
|
|
|
|
parcelList.setCreateDept(deptId); |
|
|
|
|
parcelList.setTenantId(tenantId); |
|
|
|
|
parcelList.setIsDeleted(0); |
|
|
|
|
parcelList.setStatus(1); |
|
|
|
|
parcelList.setWarehouse(warehouseEntity.getName()); |
|
|
|
|
parcelList.setWarehouseId(warehouseId); |
|
|
|
|
String waybillNo = advanceEntity.getWaybillNo(); |
|
|
|
|
if(StringUtil.isNotBlank(waybillNo)){ |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(!Objects.isNull(waybillEntity)){ |
|
|
|
|
parcelList.setWaybillId(waybillEntity.getId()+""); |
|
|
|
|
parcelList.setWaybillNumber(waybillEntity.getWaybillNo()); |
|
|
|
|
parcelList.setSendWarehouseId(waybillEntity.getDepartureWarehouseId()); |
|
|
|
|
parcelList.setSendWarehouseName(waybillEntity.getDepartureWarehouseName()); |
|
|
|
|
parcelList.setAcceptWarehouseId(waybillEntity.getDestinationWarehouseId()); |
|
|
|
|
parcelList.setAcceptWarehouseName(waybillEntity.getDestinationWarehouseName()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
parcelList.setConditions(1); |
|
|
|
|
parcelList.setOrderPackageCode(orderPackageCode); |
|
|
|
|
parcelList.setFirsts(advanceDetailEntity.getFirstPackName()); |
|
|
|
|
parcelList.setSecond(advanceDetailEntity.getSecondPackName()); |
|
|
|
|
parcelList.setThirdProduct(advanceDetailEntity.getThirdPackName()); |
|
|
|
|
parcelList.setQuantity(1); |
|
|
|
|
parcelList.setStockArticleId(orderId); |
|
|
|
|
parcelList.setOrderCode(orderCode); |
|
|
|
|
parcelList.setServiceNumber(advanceDetailEntity.getServiceNum()); |
|
|
|
|
parcelList.setIsTransfer(1); |
|
|
|
|
parcelList.setAdvanceId(advanceId); |
|
|
|
|
|
|
|
|
|
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)){ |
|
|
|
|
parcelList.setMaterialId(materialEntity.getId()); |
|
|
|
|
parcelList.setMaterialName(materialEntity.getName()); |
|
|
|
|
parcelList.setMaterialCode(materialEntity.getProductCode()); |
|
|
|
|
parcelList.setMaterialUnit(materialEntity.getSpecification()); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
BasicMaterialEntity materialOwnId = basicMaterialClient.getMaterialOwnId(materialId); |
|
|
|
|
if(!Objects.isNull(materialOwnId)){ |
|
|
|
|
parcelList.setMaterialId(materialOwnId.getId()); |
|
|
|
|
parcelList.setMaterialName(materialOwnId.getName()); |
|
|
|
|
parcelList.setMaterialCode(materialOwnId.getProductCode()); |
|
|
|
|
parcelList.setMaterialUnit(materialOwnId.getSpecification()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
parcelList.setBrandName(advanceDetailEntity.getBrand()); |
|
|
|
|
parcelList.setOrderPackageStatus("20"); |
|
|
|
|
parcelList.setOrderPackageFreezeStatus("10"); |
|
|
|
|
parcelList.setOrderPackageGroundingStatus("10"); |
|
|
|
|
parcelList.setOrderPackageStockupStatus("10"); |
|
|
|
|
parcelList.setOrderPackageReservationStatus("10"); |
|
|
|
|
parcelList.setOrderPackageLoadingStatus("10"); |
|
|
|
|
parcelList.setWarehouseEntryTimeEnd(date); |
|
|
|
|
parcelList.setDealerCode(stockArticleEntity.getDealerCode()); |
|
|
|
|
parcelList.setDealerName(stockArticleEntity.getDealerName()); |
|
|
|
|
parcelListEntityList.add(parcelList); |
|
|
|
|
|
|
|
|
|
advanceDetailEntity.setPackageStatus("1"); |
|
|
|
|
advanceDetailEntity.setWaybillNo(waybillNo); |
|
|
|
|
advanceDetailEntity.setIncomingWarehouseId(warehouseId); |
|
|
|
|
advanceDetailEntity.setIncomingWarehouseName(warehouseName); |
|
|
|
|
orderPackageCodes.add(orderPackageCode); |
|
|
|
|
} |
|
|
|
|
parcelListClient.addBatch(parcelListEntityList); |
|
|
|
|
|
|
|
|
|
return orderPackageCodes; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|