|
|
|
@ -16,16 +16,18 @@ import com.logpm.distribution.vo.OrderPackgeCodeDataVO;
|
|
|
|
|
import com.logpm.trunkline.dto.AdvanceDTO; |
|
|
|
|
import com.logpm.trunkline.dto.AdvanceDetailDTO; |
|
|
|
|
import com.logpm.trunkline.dto.OrderDetailsDTO; |
|
|
|
|
import com.logpm.trunkline.entity.ReportPackageBasicEntity; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineAdvanceDetailEntity; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineAdvanceEntity; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineAdvanceMergeEntity; |
|
|
|
|
import com.logpm.trunkline.mapper.TrunklineAdvanceDetailMapper; |
|
|
|
|
import com.logpm.trunkline.mapper.TrunklineAdvanceMapper; |
|
|
|
|
import com.logpm.trunkline.service.IPackageTrackLogAsyncService; |
|
|
|
|
import com.logpm.trunkline.service.ISendFanoutService; |
|
|
|
|
import com.logpm.trunkline.service.ITrunklineAdvanceDetailService; |
|
|
|
|
import com.logpm.trunkline.service.*; |
|
|
|
|
import com.logpm.trunkline.vo.*; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseWayBillDetail; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseWaybillEntity; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseWaybillClient; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseWaybillDetailClient; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.common.constant.WorkNodeEnums; |
|
|
|
|
import org.springblade.common.constant.broadcast.FanoutConstants; |
|
|
|
@ -51,6 +53,7 @@ import org.springframework.context.annotation.Lazy;
|
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.function.Function; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
@Slf4j |
|
|
|
@ -72,6 +75,12 @@ public class TrunklineAdvanceDetailServiceImpl extends BaseServiceImpl<Trunkline
|
|
|
|
|
@Lazy |
|
|
|
|
@Autowired |
|
|
|
|
private IPackageTrackLogAsyncService packageTrackLogAsyncService; |
|
|
|
|
@Autowired |
|
|
|
|
private IReportPackageBasicService reportPackageBasicService; |
|
|
|
|
@Autowired |
|
|
|
|
private ITrunklineAdvanceMergeService advanceMergeService; |
|
|
|
|
@Autowired |
|
|
|
|
private IWarehouseWaybillDetailClient iWarehouseWaybillDetailClient; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void updatePackageStatusById(String packageStatus, Long advanceDetailId, Long warehouseId, String warehouseName, Date incomingTime) { |
|
|
|
@ -713,4 +722,222 @@ public class TrunklineAdvanceDetailServiceImpl extends BaseServiceImpl<Trunkline
|
|
|
|
|
public List<TrunklineAdvanceDetailEntity> findListByWaybillId(Long waybillId) { |
|
|
|
|
return baseMapper.findListByWaybillId(waybillId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void saveBasicdata(Long advanceId) { |
|
|
|
|
|
|
|
|
|
String key = AuthUtil.getTenantId()+":brandList"; |
|
|
|
|
|
|
|
|
|
Map<String, Long> brandMap = bladeRedis.hGetAll(key); |
|
|
|
|
|
|
|
|
|
if(CollUtil.isEmpty(brandMap)){ |
|
|
|
|
List<JSONObject> allList = basicdataBrandClient.findAllList(); |
|
|
|
|
Map<String, Long> brandIdMap = new HashMap<>(); |
|
|
|
|
allList.forEach(jsonObject -> { |
|
|
|
|
brandIdMap.put(jsonObject.getString("brandName"),jsonObject.getLong("brandId")); |
|
|
|
|
}); |
|
|
|
|
brandMap.putAll(brandIdMap); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceEntity advanceEntity = advanceMapper.selectById(advanceId); |
|
|
|
|
|
|
|
|
|
String createUserName = advanceEntity.getCreateUserName(); |
|
|
|
|
String brand = advanceEntity.getBrand(); |
|
|
|
|
String waybillNo = advanceEntity.getWaybillNo(); |
|
|
|
|
WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QueryWrapper<TrunklineAdvanceDetailEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("advance_id", advanceId); |
|
|
|
|
List<TrunklineAdvanceDetailEntity> advanceDetailEntities = baseMapper.selectList(queryWrapper); |
|
|
|
|
//把advanceDetailEntities中所有元素的orderPackageCode组成一个List<String>
|
|
|
|
|
List<String> orderPackageCodes = advanceDetailEntities.stream() |
|
|
|
|
.map(TrunklineAdvanceDetailEntity::getOrderPackageCode) |
|
|
|
|
.collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
QueryWrapper<TrunklineAdvanceMergeEntity> queryWrapper1 = new QueryWrapper<>(); |
|
|
|
|
queryWrapper1.in("order_package_code", orderPackageCodes); |
|
|
|
|
List<TrunklineAdvanceMergeEntity> advanceMergeEntityList = advanceMergeService.list(queryWrapper1); |
|
|
|
|
//把advanceMergeEntityList转化成以orderPackageCode为key的Map
|
|
|
|
|
Map<String, TrunklineAdvanceMergeEntity> advanceMergeEntityMap = advanceMergeEntityList.stream() |
|
|
|
|
.collect(Collectors.toMap(TrunklineAdvanceMergeEntity::getOrderPackageCode, Function.identity())); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<ReportPackageBasicEntity> packageBasicEntityList = reportPackageBasicService.findByOrderPackageCodes(orderPackageCodes); |
|
|
|
|
List<ReportPackageBasicEntity> addList = new ArrayList<>(); |
|
|
|
|
if(CollUtil.isNotEmpty(packageBasicEntityList)){ |
|
|
|
|
//把packageBasicEntityList转化为以orderPackageCode为key的Map
|
|
|
|
|
Map<String, ReportPackageBasicEntity> packageBasicEntityMap = packageBasicEntityList.stream() |
|
|
|
|
.collect(Collectors.toMap(ReportPackageBasicEntity::getOrderPackageCode, reportPackageBasicEntity -> reportPackageBasicEntity)); |
|
|
|
|
|
|
|
|
|
advanceDetailEntities.forEach(detailEntity -> { |
|
|
|
|
String orderPackageCode = detailEntity.getOrderPackageCode(); |
|
|
|
|
|
|
|
|
|
ReportPackageBasicEntity reportPackageBasicEntity1 = packageBasicEntityMap.get(orderPackageCode); |
|
|
|
|
if(Objects.isNull(reportPackageBasicEntity1)){ |
|
|
|
|
ReportPackageBasicEntity reportPackageBasicEntity = new ReportPackageBasicEntity(); |
|
|
|
|
reportPackageBasicEntity.setServiceNo(detailEntity.getServiceNum()); |
|
|
|
|
reportPackageBasicEntity.setOrderCode(detailEntity.getOrderCode()); |
|
|
|
|
reportPackageBasicEntity.setOrderPackageCode(orderPackageCode); |
|
|
|
|
TrunklineAdvanceMergeEntity trunklineAdvanceMergeEntity = advanceMergeEntityMap.get(orderPackageCode); |
|
|
|
|
if(!Objects.isNull(trunklineAdvanceMergeEntity)){ |
|
|
|
|
reportPackageBasicEntity.setMergePackageCode(trunklineAdvanceMergeEntity.getMergeCode()); |
|
|
|
|
} |
|
|
|
|
reportPackageBasicEntity.setNum(detailEntity.getQuantity()); |
|
|
|
|
reportPackageBasicEntity.setWeight(detailEntity.getWeight()); |
|
|
|
|
reportPackageBasicEntity.setVolume(detailEntity.getVolume()); |
|
|
|
|
reportPackageBasicEntity.setMaterialId(detailEntity.getMaterialId()); |
|
|
|
|
reportPackageBasicEntity.setMaterialCode(detailEntity.getMaterialCode()); |
|
|
|
|
reportPackageBasicEntity.setMaterialName(detailEntity.getMaterialName()); |
|
|
|
|
reportPackageBasicEntity.setDealerCode(advanceEntity.getDealerCode()); |
|
|
|
|
reportPackageBasicEntity.setDealerName(advanceEntity.getDealerName()); |
|
|
|
|
reportPackageBasicEntity.setPushUserId(detailEntity.getCreateUser()); |
|
|
|
|
reportPackageBasicEntity.setPushUserName(createUserName); |
|
|
|
|
reportPackageBasicEntity.setPushTime(detailEntity.getCreateTime()); |
|
|
|
|
reportPackageBasicEntity.setDataType(PackageTypeEnums.CMP.getCode()); |
|
|
|
|
reportPackageBasicEntity.setSystemType(detailEntity.getSystemType()); |
|
|
|
|
reportPackageBasicEntity.setCustomerTrain(advanceEntity.getTrainNumber()); |
|
|
|
|
reportPackageBasicEntity.setBrandId(brandMap.get(brand)); |
|
|
|
|
reportPackageBasicEntity.setBrand(brand); |
|
|
|
|
reportPackageBasicEntity.setWarehouse(detailEntity.getWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setWarehouseId(detailEntity.getWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setIncomingType(detailEntity.getIncomingType()); |
|
|
|
|
reportPackageBasicEntity.setIncomingStatus(Integer.parseInt(detailEntity.getPackageStatus())); |
|
|
|
|
if(!Objects.isNull(warehouseWaybillEntity)){ |
|
|
|
|
reportPackageBasicEntity.setOpenTime(warehouseWaybillEntity.getDocumentMakingTime()); |
|
|
|
|
reportPackageBasicEntity.setOpenUserName(warehouseWaybillEntity.getAgent()); |
|
|
|
|
reportPackageBasicEntity.setOpenUserId(warehouseWaybillEntity.getCreateUser()); |
|
|
|
|
reportPackageBasicEntity.setConsigneeId(warehouseWaybillEntity.getConsigneeId()); |
|
|
|
|
reportPackageBasicEntity.setConsigneeId(warehouseWaybillEntity.getConsigneeId()); |
|
|
|
|
reportPackageBasicEntity.setShipper(warehouseWaybillEntity.getShipper()); |
|
|
|
|
reportPackageBasicEntity.setShipperId(warehouseWaybillEntity.getShipperId()); |
|
|
|
|
reportPackageBasicEntity.setDepartureWarehouseId(warehouseWaybillEntity.getDepartureWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setDepartureWarehouseName(warehouseWaybillEntity.getDepartureWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setDestinationWarehouseId(warehouseWaybillEntity.getDestinationWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setDestinationWarehouseName(warehouseWaybillEntity.getDestinationWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setDeparture(warehouseWaybillEntity.getDeparture()); |
|
|
|
|
reportPackageBasicEntity.setDestination(warehouseWaybillEntity.getDestination()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
addList.add(reportPackageBasicEntity); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
advanceDetailEntities.forEach(detailEntity -> { |
|
|
|
|
String orderPackageCode = detailEntity.getOrderPackageCode(); |
|
|
|
|
ReportPackageBasicEntity reportPackageBasicEntity = new ReportPackageBasicEntity(); |
|
|
|
|
reportPackageBasicEntity.setServiceNo(detailEntity.getServiceNum()); |
|
|
|
|
reportPackageBasicEntity.setOrderCode(detailEntity.getOrderCode()); |
|
|
|
|
reportPackageBasicEntity.setOrderPackageCode(orderPackageCode); |
|
|
|
|
TrunklineAdvanceMergeEntity trunklineAdvanceMergeEntity = advanceMergeEntityMap.get(orderPackageCode); |
|
|
|
|
if(!Objects.isNull(trunklineAdvanceMergeEntity)){ |
|
|
|
|
reportPackageBasicEntity.setMergePackageCode(trunklineAdvanceMergeEntity.getMergeCode()); |
|
|
|
|
} |
|
|
|
|
reportPackageBasicEntity.setNum(detailEntity.getQuantity()); |
|
|
|
|
reportPackageBasicEntity.setWeight(detailEntity.getWeight()); |
|
|
|
|
reportPackageBasicEntity.setVolume(detailEntity.getVolume()); |
|
|
|
|
reportPackageBasicEntity.setMaterialId(detailEntity.getMaterialId()); |
|
|
|
|
reportPackageBasicEntity.setMaterialCode(detailEntity.getMaterialCode()); |
|
|
|
|
reportPackageBasicEntity.setMaterialName(detailEntity.getMaterialName()); |
|
|
|
|
reportPackageBasicEntity.setDealerCode(advanceEntity.getDealerCode()); |
|
|
|
|
reportPackageBasicEntity.setDealerName(advanceEntity.getDealerName()); |
|
|
|
|
reportPackageBasicEntity.setPushUserId(detailEntity.getCreateUser()); |
|
|
|
|
reportPackageBasicEntity.setPushUserName(createUserName); |
|
|
|
|
reportPackageBasicEntity.setPushTime(detailEntity.getCreateTime()); |
|
|
|
|
reportPackageBasicEntity.setDataType(PackageTypeEnums.CMP.getCode()); |
|
|
|
|
reportPackageBasicEntity.setSystemType(detailEntity.getSystemType()); |
|
|
|
|
reportPackageBasicEntity.setCustomerTrain(advanceEntity.getTrainNumber()); |
|
|
|
|
reportPackageBasicEntity.setBrandId(brandMap.get(brand)); |
|
|
|
|
reportPackageBasicEntity.setBrand(brand); |
|
|
|
|
reportPackageBasicEntity.setWarehouse(detailEntity.getWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setWarehouseId(detailEntity.getWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setIncomingType(detailEntity.getIncomingType()); |
|
|
|
|
reportPackageBasicEntity.setIncomingStatus(Integer.parseInt(detailEntity.getPackageStatus())); |
|
|
|
|
if(!Objects.isNull(warehouseWaybillEntity)){ |
|
|
|
|
reportPackageBasicEntity.setOpenTime(warehouseWaybillEntity.getDocumentMakingTime()); |
|
|
|
|
reportPackageBasicEntity.setOpenUserName(warehouseWaybillEntity.getAgent()); |
|
|
|
|
reportPackageBasicEntity.setOpenUserId(warehouseWaybillEntity.getCreateUser()); |
|
|
|
|
reportPackageBasicEntity.setConsigneeId(warehouseWaybillEntity.getConsigneeId()); |
|
|
|
|
reportPackageBasicEntity.setConsigneeId(warehouseWaybillEntity.getConsigneeId()); |
|
|
|
|
reportPackageBasicEntity.setShipper(warehouseWaybillEntity.getShipper()); |
|
|
|
|
reportPackageBasicEntity.setShipperId(warehouseWaybillEntity.getShipperId()); |
|
|
|
|
reportPackageBasicEntity.setDepartureWarehouseId(warehouseWaybillEntity.getDepartureWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setDepartureWarehouseName(warehouseWaybillEntity.getDepartureWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setDestinationWarehouseId(warehouseWaybillEntity.getDestinationWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setDestinationWarehouseName(warehouseWaybillEntity.getDestinationWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setDeparture(warehouseWaybillEntity.getDeparture()); |
|
|
|
|
reportPackageBasicEntity.setDestination(warehouseWaybillEntity.getDestination()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
addList.add(reportPackageBasicEntity); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(addList)){ |
|
|
|
|
reportPackageBasicService.saveBatch(addList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void saveBasicdataZero(String waybillNo) { |
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
Long waybillId = warehouseWaybillEntity.getId(); |
|
|
|
|
|
|
|
|
|
List<WarehouseWayBillDetail> wayBillDetailList = iWarehouseWaybillDetailClient.findByWaybillId(waybillId); |
|
|
|
|
|
|
|
|
|
List<ReportPackageBasicEntity> listByWaybillNo = reportPackageBasicService.findListByWaybillNo(waybillNo); |
|
|
|
|
//把listByWaybillNo转化为以productName为key 的Map
|
|
|
|
|
Map<String, ReportPackageBasicEntity> productNameMap = listByWaybillNo.stream() |
|
|
|
|
.collect(Collectors.toMap(ReportPackageBasicEntity::getProductName, reportPackageBasicEntity -> reportPackageBasicEntity)); |
|
|
|
|
List<ReportPackageBasicEntity> addList = new ArrayList<>(); |
|
|
|
|
wayBillDetailList.forEach(wayBillDetail -> { |
|
|
|
|
String productName = wayBillDetail.getProductName(); |
|
|
|
|
ReportPackageBasicEntity entity = productNameMap.get(productName); |
|
|
|
|
if(Objects.isNull(entity)){ |
|
|
|
|
ReportPackageBasicEntity reportPackageBasicEntity = new ReportPackageBasicEntity(); |
|
|
|
|
reportPackageBasicEntity.setWaybillNo(waybillNo); |
|
|
|
|
reportPackageBasicEntity.setOrderCode(waybillNo); |
|
|
|
|
reportPackageBasicEntity.setNum(wayBillDetail.getNum()); |
|
|
|
|
reportPackageBasicEntity.setWeight(wayBillDetail.getWeight()); |
|
|
|
|
reportPackageBasicEntity.setVolume(wayBillDetail.getVolume()); |
|
|
|
|
reportPackageBasicEntity.setPushUserId(warehouseWaybillEntity.getCreateUser()); |
|
|
|
|
reportPackageBasicEntity.setPushUserName(warehouseWaybillEntity.getAgent()); |
|
|
|
|
reportPackageBasicEntity.setPushTime(warehouseWaybillEntity.getDocumentMakingTime()); |
|
|
|
|
reportPackageBasicEntity.setOpenTime(warehouseWaybillEntity.getDocumentMakingTime()); |
|
|
|
|
reportPackageBasicEntity.setOpenUserName(warehouseWaybillEntity.getAgent()); |
|
|
|
|
reportPackageBasicEntity.setOpenUserId(warehouseWaybillEntity.getCreateUser()); |
|
|
|
|
reportPackageBasicEntity.setIncomingTime(warehouseWaybillEntity.getDocumentMakingTime()); |
|
|
|
|
reportPackageBasicEntity.setIncomingUserName(warehouseWaybillEntity.getAgent()); |
|
|
|
|
reportPackageBasicEntity.setIncomingUserId(warehouseWaybillEntity.getCreateUser()); |
|
|
|
|
reportPackageBasicEntity.setDataType(PackageTypeEnums.LTL.getCode()); |
|
|
|
|
reportPackageBasicEntity.setSystemType("线下"); |
|
|
|
|
reportPackageBasicEntity.setBrandId(warehouseWaybillEntity.getBrandId()); |
|
|
|
|
reportPackageBasicEntity.setBrand(warehouseWaybillEntity.getBrand()); |
|
|
|
|
reportPackageBasicEntity.setWarehouse(warehouseWaybillEntity.getDepartureWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setWarehouseId(warehouseWaybillEntity.getDepartureWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setIncomingType(3); |
|
|
|
|
reportPackageBasicEntity.setShipper(warehouseWaybillEntity.getShipper()); |
|
|
|
|
reportPackageBasicEntity.setShipperId(warehouseWaybillEntity.getShipperId()); |
|
|
|
|
reportPackageBasicEntity.setConsignee(warehouseWaybillEntity.getConsignee()); |
|
|
|
|
reportPackageBasicEntity.setConsigneeId(warehouseWaybillEntity.getConsigneeId()); |
|
|
|
|
reportPackageBasicEntity.setDepartureWarehouseId(warehouseWaybillEntity.getDepartureWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setDepartureWarehouseName(warehouseWaybillEntity.getDepartureWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setDestinationWarehouseId(warehouseWaybillEntity.getDestinationWarehouseId()); |
|
|
|
|
reportPackageBasicEntity.setDestinationWarehouseName(warehouseWaybillEntity.getDestinationWarehouseName()); |
|
|
|
|
reportPackageBasicEntity.setDeparture(warehouseWaybillEntity.getDeparture()); |
|
|
|
|
reportPackageBasicEntity.setDestination(warehouseWaybillEntity.getDestination()); |
|
|
|
|
reportPackageBasicEntity.setIncomingStatus(1); |
|
|
|
|
addList.add(reportPackageBasicEntity); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(addList)){ |
|
|
|
|
reportPackageBasicService.saveBatch(addList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|