|
|
|
@ -1,16 +1,27 @@
|
|
|
|
|
package com.logpm.datasharing.service.impl; |
|
|
|
|
|
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import com.logpm.datasharing.service.ILogpmDataSearchService; |
|
|
|
|
import com.logpm.datasharing.vo.NodeInfoVO; |
|
|
|
|
import com.logpm.datasharing.vo.WarehouseNumberVO; |
|
|
|
|
import com.logpm.datasharing.vo.WaybillInfoVO; |
|
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
|
import com.logpm.distribution.entity.QualityDeliverEntity; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionParcelListClient; |
|
|
|
|
import com.logpm.distribution.feign.IQualityDeliverClient; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineCarsLoadScanEntity; |
|
|
|
|
import com.logpm.trunkline.entity.TrunklineWaybillOrderEntity; |
|
|
|
|
import com.logpm.trunkline.feign.ITrunklineCarsLoadScanClient; |
|
|
|
|
import com.logpm.trunkline.feign.ITrunklineWaybillOrderClient; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseWaybillEntity; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseWaybillClient; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.system.entity.Tenant; |
|
|
|
|
import org.springblade.system.feign.ISysClient; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.util.*; |
|
|
|
@ -23,6 +34,11 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
|
|
|
|
|
private final IWarehouseWaybillClient warehouseWaybillClient; |
|
|
|
|
private final IDistributionParcelListClient distributionParcelListClient; |
|
|
|
|
private final ITrunklineCarsLoadScanClient traceCarsLoadScanClient; |
|
|
|
|
private final IQualityDeliverClient questualityDeliverClient; |
|
|
|
|
private final IBasicdataWarehouseClient basicdataWarehouseClient; |
|
|
|
|
private final ISysClient systemClient; |
|
|
|
|
private final ITrunklineWaybillOrderClient trunklineWaybillOrderClient; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R data(String type, String order) { |
|
|
|
@ -33,10 +49,9 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
case "order": |
|
|
|
|
// 订单查询
|
|
|
|
|
return dataOrder(order); |
|
|
|
|
|
|
|
|
|
case "waybill": |
|
|
|
|
// 运单查询
|
|
|
|
|
return R.data(dataWEaybill(order)) ; |
|
|
|
|
return R.data(dataWEaybill(order)); |
|
|
|
|
default: |
|
|
|
|
// 需要没有参数的查询全部的情况
|
|
|
|
|
return R.fail("参数错误"); |
|
|
|
@ -47,18 +62,177 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 运单查询 |
|
|
|
|
* |
|
|
|
|
* @param waybillNo |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private WaybillInfoVO dataWEaybillByOrderCode(String waybillNo,String orderCode) { |
|
|
|
|
|
|
|
|
|
WaybillInfoVO result = new WaybillInfoVO(); |
|
|
|
|
// todo 查询运单
|
|
|
|
|
WarehouseWaybillEntity byWaybillNo = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if (Objects.isNull(byWaybillNo)) { |
|
|
|
|
throw new CustomerException("运单信息不存在~"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 获取租户信息
|
|
|
|
|
R<Tenant> tenant = systemClient.getTenant(AuthUtil.getTenantId()); |
|
|
|
|
if (tenant.isSuccess() && !Objects.isNull(tenant.getData())) { |
|
|
|
|
Tenant data = tenant.getData(); |
|
|
|
|
result.setContactNumber(data.getContactNumber()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
result.setOrderCode(orderCode); |
|
|
|
|
// 获取到订单在这个运单的件数
|
|
|
|
|
TrunklineWaybillOrderEntity entityByWaybillNoAndOrderCode = trunklineWaybillOrderClient.findEntityByWaybillNoAndOrderCode(waybillNo, orderCode); |
|
|
|
|
if(entityByWaybillNoAndOrderCode != null){ |
|
|
|
|
result.setOrderCount(entityByWaybillNoAndOrderCode.getTotalNumber()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
result.setWaybillNo(byWaybillNo.getWaybillNo()); |
|
|
|
|
result.setDestinationWarehouseName(byWaybillNo.getDestinationWarehouseName()); |
|
|
|
|
result.setDepartureWarehouseName(byWaybillNo.getDepartureWarehouseName()); |
|
|
|
|
result.setShipper(byWaybillNo.getShipper()); |
|
|
|
|
result.setShipperName(byWaybillNo.getShipperName()); |
|
|
|
|
result.setConsignee(byWaybillNo.getConsignee()); |
|
|
|
|
result.setConsigneeName(byWaybillNo.getConsigneeName()); |
|
|
|
|
result.setTotalCount(byWaybillNo.getTotalCount()); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> distributionParcelListEntities = distributionParcelListClient.findByWaybillNumberAndOrderCode(waybillNo,orderCode); |
|
|
|
|
// 按照仓库ID进行分组
|
|
|
|
|
Map<String, List<DistributionParcelListEntity>> groupedByWarehouse = distributionParcelListEntities.stream() |
|
|
|
|
.collect(Collectors.groupingBy(DistributionParcelListEntity::getWarehouse)); |
|
|
|
|
|
|
|
|
|
// 判断当前map 中的key长度
|
|
|
|
|
Set<String> keys = groupedByWarehouse.keySet(); |
|
|
|
|
List<WarehouseNumberVO> models = null; |
|
|
|
|
for (String key : keys) { |
|
|
|
|
if (models == null) { |
|
|
|
|
models = new ArrayList<>(); |
|
|
|
|
} |
|
|
|
|
WarehouseNumberVO middleWarehouseNumberVO = buildWarehouse(groupedByWarehouse, key); |
|
|
|
|
if(middleWarehouseNumberVO!=null){ |
|
|
|
|
models.add(middleWarehouseNumberVO); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 加入中转的数据
|
|
|
|
|
result.setMiddleWarehouseNumber(models); |
|
|
|
|
|
|
|
|
|
// 运单状态
|
|
|
|
|
result.setStatusName(changeStatusName(byWaybillNo.getWaybillStatus())); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 增加节点信息
|
|
|
|
|
List<NodeInfoVO> nodeInfoVOList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
// 入库
|
|
|
|
|
NodeInfoVO nodeInfoVO = buildFristRuKu(groupedByWarehouse, result.getDepartureWarehouseName(), result.getTotalCount()); |
|
|
|
|
if(nodeInfoVO != null){ |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 干线发车
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> allListByWaybillNo = traceCarsLoadScanClient.findAllListByWaybillNoAndOrderCode(waybillNo,orderCode); |
|
|
|
|
|
|
|
|
|
if (allListByWaybillNo != null && !allListByWaybillNo.isEmpty()) { |
|
|
|
|
// 按照 车次号进行分组
|
|
|
|
|
Map<String, List<TrunklineCarsLoadScanEntity>> groupedByLoadId = allListByWaybillNo.stream().collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getLoadCode)); |
|
|
|
|
Set<String> strings = groupedByLoadId.keySet(); |
|
|
|
|
for (String key : strings) { |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> trunklineCarsLoadScanEntities = groupedByLoadId.get(key); |
|
|
|
|
//干线发车
|
|
|
|
|
nodeInfoVO = buildTrunklineByLoadCar(trunklineCarsLoadScanEntities, key); |
|
|
|
|
if (nodeInfoVO != null) { |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
// 干线到达
|
|
|
|
|
nodeInfoVO = buildTrunklineByUnLoadCar(trunklineCarsLoadScanEntities, key); |
|
|
|
|
if (nodeInfoVO != null) { |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<QualityDeliverEntity> signListByWaybillNumber = questualityDeliverClient.findSignListByWaybillNumberAndOrderCode(waybillNo,orderCode); |
|
|
|
|
|
|
|
|
|
if (signListByWaybillNumber != null && !signListByWaybillNumber.isEmpty()) { |
|
|
|
|
|
|
|
|
|
//统计装车数量load_num
|
|
|
|
|
int loadNum = signListByWaybillNumber.stream().mapToInt(QualityDeliverEntity::getLoadNum).sum(); |
|
|
|
|
|
|
|
|
|
// 计划配送数 plan_num
|
|
|
|
|
int planNum = signListByWaybillNumber.stream().mapToInt(QualityDeliverEntity::getPlanNum).sum(); |
|
|
|
|
|
|
|
|
|
// 计算签收数量sign_num
|
|
|
|
|
int signNum = signListByWaybillNumber.stream().mapToInt(QualityDeliverEntity::getSignNum).sum(); |
|
|
|
|
|
|
|
|
|
// 配送装车
|
|
|
|
|
QualityDeliverEntity qualityDeliverEntity = signListByWaybillNumber.get(0); |
|
|
|
|
if (loadNum != 0) { |
|
|
|
|
nodeInfoVO = new NodeInfoVO(); |
|
|
|
|
nodeInfoVO.setOperateName("配送装车"); |
|
|
|
|
nodeInfoVO.setOperateNumber(loadNum + ""); |
|
|
|
|
nodeInfoVO.setOperateWarehouseName(qualityDeliverEntity.getWarehouseName()); |
|
|
|
|
nodeInfoVO.setOperateTime(qualityDeliverEntity.getCreateTime()); |
|
|
|
|
// 增加网点电话
|
|
|
|
|
BasicdataWarehouseEntity entityWarehouseId = basicdataWarehouseClient.getEntityWarehouseId(qualityDeliverEntity.getWarehouseId()); |
|
|
|
|
if (entityWarehouseId != null) { |
|
|
|
|
nodeInfoVO.setOperateWarehousePhone(entityWarehouseId.getContactNumber()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (planNum != 0) { |
|
|
|
|
nodeInfoVO = new NodeInfoVO(); |
|
|
|
|
nodeInfoVO.setOperateName("配送签收"); |
|
|
|
|
nodeInfoVO.setOperateNumber(signNum + "/" + loadNum); |
|
|
|
|
nodeInfoVO.setOperateWarehouseName(qualityDeliverEntity.getWarehouseName()); |
|
|
|
|
nodeInfoVO.setOperateTime(qualityDeliverEntity.getCreateTime()); |
|
|
|
|
// 增加网点电话
|
|
|
|
|
BasicdataWarehouseEntity entityWarehouseId = basicdataWarehouseClient.getEntityWarehouseId(qualityDeliverEntity.getWarehouseId()); |
|
|
|
|
if (entityWarehouseId != null) { |
|
|
|
|
nodeInfoVO.setOperateWarehousePhone(entityWarehouseId.getContactNumber()); |
|
|
|
|
} |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
result.setNodeInfoVOList(nodeInfoVOList); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// 配送签收
|
|
|
|
|
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 运单查询 |
|
|
|
|
* |
|
|
|
|
* @param waybillNo |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private WaybillInfoVO dataWEaybill(String waybillNo) { |
|
|
|
|
|
|
|
|
|
WaybillInfoVO result = new WaybillInfoVO(); |
|
|
|
|
int temp =0; |
|
|
|
|
// todo 查询运单
|
|
|
|
|
WarehouseWaybillEntity byWaybillNo = warehouseWaybillClient.findByWaybillNo(waybillNo); |
|
|
|
|
if(Objects.isNull(byWaybillNo)){ |
|
|
|
|
if (Objects.isNull(byWaybillNo)) { |
|
|
|
|
throw new CustomerException("运单信息不存在~"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 获取租户信息
|
|
|
|
|
R<Tenant> tenant = systemClient.getTenant(AuthUtil.getTenantId()); |
|
|
|
|
if (tenant.isSuccess() && !Objects.isNull(tenant.getData())) { |
|
|
|
|
Tenant data = tenant.getData(); |
|
|
|
|
result.setContactNumber(data.getContactNumber()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
result.setWaybillNo(byWaybillNo.getWaybillNo()); |
|
|
|
|
result.setDestinationWarehouseName(byWaybillNo.getDestinationWarehouseName()); |
|
|
|
|
result.setDepartureWarehouseName(byWaybillNo.getDepartureWarehouseName()); |
|
|
|
@ -68,75 +242,172 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
result.setConsigneeName(byWaybillNo.getConsigneeName()); |
|
|
|
|
result.setTotalCount(byWaybillNo.getTotalCount()); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> distributionParcelListEntities = distributionParcelListClient.findByWaybillNumber(waybillNo); |
|
|
|
|
List<DistributionParcelListEntity> distributionParcelListEntities = distributionParcelListClient.findByWaybillNumber(waybillNo); |
|
|
|
|
// 按照仓库ID进行分组
|
|
|
|
|
Map<String, List<DistributionParcelListEntity>> groupedByWarehouse= distributionParcelListEntities.stream() |
|
|
|
|
Map<String, List<DistributionParcelListEntity>> groupedByWarehouse = distributionParcelListEntities.stream() |
|
|
|
|
.collect(Collectors.groupingBy(DistributionParcelListEntity::getWarehouse)); |
|
|
|
|
|
|
|
|
|
// 获取始发仓的入库数据
|
|
|
|
|
WarehouseNumberVO startWarehouseNumber =buildWarehouse(groupedByWarehouse,result.getDepartureWarehouseName()); |
|
|
|
|
// WarehouseNumberVO startWarehouseNumber = buildWarehouse(groupedByWarehouse, result.getDepartureWarehouseName());
|
|
|
|
|
// 移除当前的仓库
|
|
|
|
|
groupedByWarehouse.remove(result.getDepartureWarehouseName()); |
|
|
|
|
result.setStartWarehouseNumber(startWarehouseNumber); |
|
|
|
|
temp +=startWarehouseNumber!=null?startWarehouseNumber.getNumber():0; |
|
|
|
|
// groupedByWarehouse.remove(result.getDepartureWarehouseName());
|
|
|
|
|
// result.setStartWarehouseNumber(startWarehouseNumber);
|
|
|
|
|
/*********************************m目的仓 start********************************/ |
|
|
|
|
String destinationWarehouseName = result.getDestinationWarehouseName(); |
|
|
|
|
WarehouseNumberVO endWarehouseNumber=buildWarehouse(groupedByWarehouse,destinationWarehouseName); |
|
|
|
|
temp +=endWarehouseNumber!=null?endWarehouseNumber.getNumber():0; |
|
|
|
|
// 计算预约数量
|
|
|
|
|
List<DistributionParcelListEntity> end = groupedByWarehouse.get(destinationWarehouseName); |
|
|
|
|
|
|
|
|
|
if(end!=null){ |
|
|
|
|
int resNum = end.stream().filter(t->"20".equals(t.getOrderPackageReservationStatus())).mapToInt(DistributionParcelListEntity::getQuantity).sum(); |
|
|
|
|
result.setDeliveryNum(resNum); |
|
|
|
|
} |
|
|
|
|
// String destinationWarehouseName = result.getDestinationWarehouseName();
|
|
|
|
|
// WarehouseNumberVO endWarehouseNumber = buildWarehouse(groupedByWarehouse, destinationWarehouseName);
|
|
|
|
|
|
|
|
|
|
groupedByWarehouse.remove(result.getDestinationWarehouseName()); |
|
|
|
|
result.setEndWarehouseNumber(endWarehouseNumber); |
|
|
|
|
// groupedByWarehouse.remove(result.getDestinationWarehouseName());
|
|
|
|
|
// result.setEndWarehouseNumber(endWarehouseNumber);
|
|
|
|
|
/*********************************m目的仓 end********************************/ |
|
|
|
|
// 判断当前map 中的key长度
|
|
|
|
|
Set<String> keys = groupedByWarehouse.keySet(); |
|
|
|
|
List<WarehouseNumberVO> models = null; |
|
|
|
|
for (String key : keys) { |
|
|
|
|
if(models==null){ |
|
|
|
|
if (models == null) { |
|
|
|
|
models = new ArrayList<>(); |
|
|
|
|
} |
|
|
|
|
WarehouseNumberVO middleWarehouseNumberVO = buildWarehouse(groupedByWarehouse,key); |
|
|
|
|
models.add(middleWarehouseNumberVO); |
|
|
|
|
temp +=middleWarehouseNumberVO!=null?middleWarehouseNumberVO.getNumber():0; |
|
|
|
|
WarehouseNumberVO middleWarehouseNumberVO = buildWarehouse(groupedByWarehouse, key); |
|
|
|
|
if(middleWarehouseNumberVO != null){ |
|
|
|
|
models.add(middleWarehouseNumberVO); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 加入中转的数据
|
|
|
|
|
result.setMiddleWarehouseNumber(models); |
|
|
|
|
|
|
|
|
|
// 查询运单的签收数量
|
|
|
|
|
result.setSignNum(byWaybillNo.getSignNum()); |
|
|
|
|
|
|
|
|
|
// 运单状态
|
|
|
|
|
|
|
|
|
|
result.setStatusName(changeStatusName(byWaybillNo.getWaybillStatus())); |
|
|
|
|
|
|
|
|
|
// 计算在途数量
|
|
|
|
|
result.setOnWayCount(result.getTotalCount()-temp); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 增加节点信息
|
|
|
|
|
List<NodeInfoVO> nodeInfoVOList = new ArrayList<>();; |
|
|
|
|
List<NodeInfoVO> nodeInfoVOList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
// 入库
|
|
|
|
|
NodeInfoVO nodeInfoVO =buildFristRuKu(groupedByWarehouse,result.getDepartureWarehouseName(),result.getTotalCount()); |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
NodeInfoVO nodeInfoVO = buildFristRuKu(groupedByWarehouse, result.getDepartureWarehouseName(), result.getTotalCount()); |
|
|
|
|
if(nodeInfoVO != null){ |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 干线发车
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> allListByWaybillNo = traceCarsLoadScanClient.findAllListByWaybillNo(waybillNo); |
|
|
|
|
|
|
|
|
|
if (allListByWaybillNo != null && !allListByWaybillNo.isEmpty()) { |
|
|
|
|
// 按照 车次号进行分组
|
|
|
|
|
Map<String, List<TrunklineCarsLoadScanEntity>> groupedByLoadId = allListByWaybillNo.stream().collect(Collectors.groupingBy(TrunklineCarsLoadScanEntity::getLoadCode)); |
|
|
|
|
Set<String> strings = groupedByLoadId.keySet(); |
|
|
|
|
for (String key : strings) { |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> trunklineCarsLoadScanEntities = groupedByLoadId.get(key); |
|
|
|
|
//干线发车
|
|
|
|
|
nodeInfoVO = buildTrunklineByLoadCar(trunklineCarsLoadScanEntities, key); |
|
|
|
|
if (nodeInfoVO != null) { |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
// 干线到达
|
|
|
|
|
nodeInfoVO = buildTrunklineByUnLoadCar(trunklineCarsLoadScanEntities, key); |
|
|
|
|
if (nodeInfoVO != null) { |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<QualityDeliverEntity> signListByWaybillNumber = questualityDeliverClient.findSignListByWaybillNumber(waybillNo); |
|
|
|
|
|
|
|
|
|
if (signListByWaybillNumber != null && !signListByWaybillNumber.isEmpty()) { |
|
|
|
|
|
|
|
|
|
//统计装车数量load_num
|
|
|
|
|
int loadNum = signListByWaybillNumber.stream().mapToInt(QualityDeliverEntity::getLoadNum).sum(); |
|
|
|
|
|
|
|
|
|
// 计划配送数 plan_num
|
|
|
|
|
int planNum = signListByWaybillNumber.stream().mapToInt(QualityDeliverEntity::getPlanNum).sum(); |
|
|
|
|
|
|
|
|
|
// 计算签收数量sign_num
|
|
|
|
|
int signNum = signListByWaybillNumber.stream().mapToInt(QualityDeliverEntity::getSignNum).sum(); |
|
|
|
|
|
|
|
|
|
// 配送装车
|
|
|
|
|
QualityDeliverEntity qualityDeliverEntity = signListByWaybillNumber.get(0); |
|
|
|
|
if (loadNum != 0) { |
|
|
|
|
nodeInfoVO = new NodeInfoVO(); |
|
|
|
|
nodeInfoVO.setOperateName("配送装车"); |
|
|
|
|
nodeInfoVO.setOperateNumber(loadNum + ""); |
|
|
|
|
nodeInfoVO.setOperateWarehouseName(qualityDeliverEntity.getWarehouseName()); |
|
|
|
|
nodeInfoVO.setOperateTime(qualityDeliverEntity.getCreateTime()); |
|
|
|
|
// 增加网点电话
|
|
|
|
|
BasicdataWarehouseEntity entityWarehouseId = basicdataWarehouseClient.getEntityWarehouseId(qualityDeliverEntity.getWarehouseId()); |
|
|
|
|
if (entityWarehouseId != null) { |
|
|
|
|
nodeInfoVO.setOperateWarehousePhone(entityWarehouseId.getContactNumber()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (planNum != 0) { |
|
|
|
|
nodeInfoVO = new NodeInfoVO(); |
|
|
|
|
nodeInfoVO.setOperateName("配送签收"); |
|
|
|
|
nodeInfoVO.setOperateNumber(signNum + "/" + loadNum); |
|
|
|
|
nodeInfoVO.setOperateWarehouseName(qualityDeliverEntity.getWarehouseName()); |
|
|
|
|
nodeInfoVO.setOperateTime(qualityDeliverEntity.getCreateTime()); |
|
|
|
|
// 增加网点电话
|
|
|
|
|
BasicdataWarehouseEntity entityWarehouseId = basicdataWarehouseClient.getEntityWarehouseId(qualityDeliverEntity.getWarehouseId()); |
|
|
|
|
if (entityWarehouseId != null) { |
|
|
|
|
nodeInfoVO.setOperateWarehousePhone(entityWarehouseId.getContactNumber()); |
|
|
|
|
} |
|
|
|
|
nodeInfoVOList.add(nodeInfoVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
result.setNodeInfoVOList(nodeInfoVOList); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 配送签收
|
|
|
|
|
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private NodeInfoVO buildFristRuKu(Map<String, List<DistributionParcelListEntity>> groupedByWarehouse, String departureWarehouseName,Integer totalCount) { |
|
|
|
|
private NodeInfoVO buildTrunklineByUnLoadCar(List<TrunklineCarsLoadScanEntity> trunklineCarsLoadScanEntities, String key) { |
|
|
|
|
|
|
|
|
|
// 获取卸车集合
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> collect = trunklineCarsLoadScanEntities.stream().filter(t -> t.getScanStatus().equals("2")).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
if (collect.isEmpty()) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity = collect.get(0); |
|
|
|
|
NodeInfoVO nodeInfoVO = new NodeInfoVO(); |
|
|
|
|
nodeInfoVO.setOperateName("干线到达"); |
|
|
|
|
nodeInfoVO.setOperateNumber(collect.size() + ""); |
|
|
|
|
nodeInfoVO.setOperateWarehouseName(trunklineCarsLoadScanEntity.getWarehouseName()); |
|
|
|
|
nodeInfoVO.setOperateTime(trunklineCarsLoadScanEntity.getCreateTime()); |
|
|
|
|
return nodeInfoVO; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private NodeInfoVO buildTrunklineByLoadCar(List<TrunklineCarsLoadScanEntity> trunklineCarsLoadScanEntities, String key) { |
|
|
|
|
|
|
|
|
|
// 判断trunklineCarsLoadScanEntities 中 warehouseId 不是null的集合
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> collect = trunklineCarsLoadScanEntities.stream().filter(t -> t.getWarehouseId() != null).collect(Collectors.toList()); |
|
|
|
|
if (collect.isEmpty()) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity = collect.get(0); |
|
|
|
|
NodeInfoVO nodeInfoVO = new NodeInfoVO(); |
|
|
|
|
nodeInfoVO.setOperateName("干线发车"); |
|
|
|
|
nodeInfoVO.setOperateNumber(collect.size() + ""); |
|
|
|
|
nodeInfoVO.setOperateWarehouseName(trunklineCarsLoadScanEntity.getWarehouseName()); |
|
|
|
|
nodeInfoVO.setOperateTime(trunklineCarsLoadScanEntity.getCreateTime()); |
|
|
|
|
return nodeInfoVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private NodeInfoVO buildFristRuKu(Map<String, List<DistributionParcelListEntity>> groupedByWarehouse, String departureWarehouseName, Integer totalCount) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(groupedByWarehouse.isEmpty()){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
NodeInfoVO nodeInfoVO = new NodeInfoVO(); |
|
|
|
|
nodeInfoVO.setOperateName("入库"); |
|
|
|
@ -144,7 +415,7 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
List<DistributionParcelListEntity> distributionParcelListEntities = groupedByWarehouse.get(departureWarehouseName); |
|
|
|
|
// 获取第一个时间
|
|
|
|
|
nodeInfoVO.setOperateTime(distributionParcelListEntities.get(0).getCreateTime()); |
|
|
|
|
nodeInfoVO.setOperateNumber(distributionParcelListEntities.size()+"/"+totalCount); |
|
|
|
|
nodeInfoVO.setOperateNumber(distributionParcelListEntities.size() + "/" + totalCount); |
|
|
|
|
|
|
|
|
|
return nodeInfoVO; |
|
|
|
|
} |
|
|
|
@ -152,11 +423,11 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
|
|
|
|
|
private String changeStatusName(String waybillStatus) { |
|
|
|
|
|
|
|
|
|
if(waybillStatus==null){ |
|
|
|
|
waybillStatus=""; |
|
|
|
|
if (waybillStatus == null) { |
|
|
|
|
waybillStatus = ""; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
switch (waybillStatus){ |
|
|
|
|
switch (waybillStatus) { |
|
|
|
|
case "20": |
|
|
|
|
return "已入库"; |
|
|
|
|
|
|
|
|
@ -187,22 +458,18 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private WarehouseNumberVO buildWarehouse(Map<String, List<DistributionParcelListEntity>> groupedByWarehouse,String warehouseName){ |
|
|
|
|
private WarehouseNumberVO buildWarehouse(Map<String, List<DistributionParcelListEntity>> groupedByWarehouse, String warehouseName) { |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> end = groupedByWarehouse.get(warehouseName); |
|
|
|
|
if(end==null){ |
|
|
|
|
if (end == null) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
// 获取始发仓的在库数量
|
|
|
|
|
int num = end.stream().filter(t->"20".equals(t.getOrderPackageStatus()) && t.getQuantity()!=0).mapToInt(DistributionParcelListEntity::getQuantity).sum(); |
|
|
|
|
if(num != 0) { |
|
|
|
|
int num = end.stream().filter(t -> "20".equals(t.getOrderPackageStatus()) && t.getQuantity() != 0).mapToInt(DistributionParcelListEntity::getQuantity).sum(); |
|
|
|
|
if (num != 0) { |
|
|
|
|
WarehouseNumberVO endWarehouseNumber = new WarehouseNumberVO(); |
|
|
|
|
endWarehouseNumber.setNumber(num); |
|
|
|
|
endWarehouseNumber.setWarehouseName(warehouseName); |
|
|
|
@ -215,8 +482,6 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private R dataOrder(String order) { |
|
|
|
|
// 通过订单查询运单号
|
|
|
|
|
List<WarehouseWaybillEntity> waybillVOByOrderCode = warehouseWaybillClient.findWaybillVOByOrderCode(order); |
|
|
|
@ -226,7 +491,7 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
|
|
|
|
|
Set<String> keys = groupedByWaybillNo.keySet(); |
|
|
|
|
List<WaybillInfoVO> data = new ArrayList<>(); |
|
|
|
|
for (String key : keys) { |
|
|
|
|
WaybillInfoVO waybillInfoVO = dataWEaybill(key); |
|
|
|
|
WaybillInfoVO waybillInfoVO = dataWEaybillByOrderCode(key,order); |
|
|
|
|
data.add(waybillInfoVO); |
|
|
|
|
} |
|
|
|
|
return R.data(data); |
|
|
|
|