|
|
@ -1,8 +1,14 @@ |
|
|
|
package com.logpm.report.service.impl; |
|
|
|
package com.logpm.report.service.impl; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil; |
|
|
|
import cn.hutool.core.util.NumberUtil; |
|
|
|
import cn.hutool.core.util.NumberUtil; |
|
|
|
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
|
|
|
import com.logpm.report.dto.DeliveryTrainLoadedScanDTO; |
|
|
|
import com.logpm.report.mapper.ReportDeliverMapeer; |
|
|
|
import com.logpm.report.mapper.ReportDeliverMapeer; |
|
|
|
import com.logpm.report.query.DevilerDetailsQuery; |
|
|
|
import com.logpm.report.query.DevilerDetailsQuery; |
|
|
|
import com.logpm.report.query.ReportCustomerQuery; |
|
|
|
import com.logpm.report.query.ReportCustomerQuery; |
|
|
@ -13,6 +19,7 @@ import com.logpm.report.reader.DeliveryDetailReader; |
|
|
|
import com.logpm.report.reader.DeliveryTrainReader; |
|
|
|
import com.logpm.report.reader.DeliveryTrainReader; |
|
|
|
import com.logpm.report.reader.StockOrderReader; |
|
|
|
import com.logpm.report.reader.StockOrderReader; |
|
|
|
import com.logpm.report.service.ReportDeliverService; |
|
|
|
import com.logpm.report.service.ReportDeliverService; |
|
|
|
|
|
|
|
import com.logpm.report.util.CheckDataUtil; |
|
|
|
import com.logpm.report.util.QueryUtil; |
|
|
|
import com.logpm.report.util.QueryUtil; |
|
|
|
import com.logpm.report.util.ReportExcelUtil; |
|
|
|
import com.logpm.report.util.ReportExcelUtil; |
|
|
|
import com.logpm.report.vo.ReportCustomerVO; |
|
|
|
import com.logpm.report.vo.ReportCustomerVO; |
|
|
@ -20,11 +27,19 @@ import com.logpm.report.vo.ReportDetailVO; |
|
|
|
import com.logpm.report.vo.ReportDevilerVO; |
|
|
|
import com.logpm.report.vo.ReportDevilerVO; |
|
|
|
import com.logpm.report.vo.StockOrderVO; |
|
|
|
import com.logpm.report.vo.StockOrderVO; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
|
|
|
import org.jetbrains.annotations.NotNull; |
|
|
|
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
import org.springblade.core.mp.support.Condition; |
|
|
|
import org.springblade.core.mp.support.Condition; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
import java.util.HashMap; |
|
|
|
import java.util.List; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
import java.util.concurrent.CompletableFuture; |
|
|
|
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @author zhaoqiaobo |
|
|
|
* @author zhaoqiaobo |
|
|
@ -39,14 +54,110 @@ public class ReportDeliverServiceImpl implements ReportDeliverService { |
|
|
|
private final DeliveryCustomerReader deliveryCustomerReader; |
|
|
|
private final DeliveryCustomerReader deliveryCustomerReader; |
|
|
|
private final DeliveryDetailReader deliveryDetailReader; |
|
|
|
private final DeliveryDetailReader deliveryDetailReader; |
|
|
|
private final StockOrderReader stockOrderReader; |
|
|
|
private final StockOrderReader stockOrderReader; |
|
|
|
|
|
|
|
private final IBasicdataWarehouseClient warehouseClient; |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public IPage<ReportDevilerVO> deliveryTrainPage(ReportDevilerVO vo, ReportDevilerQuery query) { |
|
|
|
public IPage<ReportDevilerVO> deliveryTrainPage(ReportDevilerVO vo, ReportDevilerQuery query) { |
|
|
|
|
|
|
|
// 校验时间
|
|
|
|
|
|
|
|
dateIsWithinOneMonth(vo.getTaskTime(), query.getStartTaskTime(), query.getEndTaskTime()); |
|
|
|
IPage<ReportDevilerVO> page = Condition.getPage(query); |
|
|
|
IPage<ReportDevilerVO> page = Condition.getPage(query); |
|
|
|
QueryWrapper<ReportDevilerVO> queryWrapper = QueryUtil.buildQueryWrapper(vo, ReportDevilerVO.class); |
|
|
|
QueryWrapper<ReportDevilerVO> queryWrapper = QueryUtil.buildQueryWrapper(vo, ReportDevilerVO.class); |
|
|
|
// 自定义 sql 查询条件
|
|
|
|
// 自定义 sql 查询条件
|
|
|
|
trainCustomQuery(query, queryWrapper); |
|
|
|
trainCustomQuery(query, queryWrapper); |
|
|
|
return page.setRecords(reportDeliverMapeer.getDeliveryTrainPage(page, queryWrapper)); |
|
|
|
// 用户仓库权限
|
|
|
|
|
|
|
|
// 1 如果用户页面选择了仓库,按选择的仓库查询。
|
|
|
|
|
|
|
|
// 2 用户页面没有选择仓库,但是切换了仓库,按切换的仓库查
|
|
|
|
|
|
|
|
// 3 用户没有选择仓库,也没有切换仓库,按用户当前所有仓查询
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(vo.getWarehouseName())) { |
|
|
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
|
|
|
if (ObjectUtil.isNotEmpty(myCurrentWarehouse)) { |
|
|
|
|
|
|
|
queryWrapper.eq("warehouse_id", myCurrentWarehouse.getId()); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
List<BasicdataWarehouseEntity> warehouseEntities = warehouseClient.getMyWarehouseList(); |
|
|
|
|
|
|
|
queryWrapper.in("warehouse_id", warehouseEntities.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList())); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<ReportDevilerVO> deliveryTrainPage = reportDeliverMapeer.getDeliveryTrainPage(page, queryWrapper); |
|
|
|
|
|
|
|
List<Long> ids = deliveryTrainPage.stream().map(ReportDevilerVO::getId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
// 异步查询扫描装车和异常扫描装车数据
|
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(ids)) { |
|
|
|
|
|
|
|
// 每5000个提交一次查询
|
|
|
|
|
|
|
|
List<List<Long>> partitionedIds = CollUtil.split(ids, 5000); |
|
|
|
|
|
|
|
List<CompletableFuture<List<DeliveryTrainLoadedScanDTO>>> futures = new ArrayList<>(); |
|
|
|
|
|
|
|
for (List<Long> idBatch : partitionedIds) { |
|
|
|
|
|
|
|
futures.add(getTrainLoadedScanFuture(idBatch, deliveryTrainPage)); |
|
|
|
|
|
|
|
futures.add(getTrainLoadedScanInvnFuture(idBatch, deliveryTrainPage)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
CompletableFuture<Void> allFutures = CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])); |
|
|
|
|
|
|
|
allFutures.join(); |
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return page.setRecords(deliveryTrainPage); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private @NotNull CompletableFuture<List<DeliveryTrainLoadedScanDTO>> getTrainLoadedScanInvnFuture(List<Long> idBatch, List<ReportDevilerVO> deliveryTrainPage) { |
|
|
|
|
|
|
|
CompletableFuture<List<DeliveryTrainLoadedScanDTO>> future = CompletableFuture.supplyAsync(() -> |
|
|
|
|
|
|
|
reportDeliverMapeer.getDeliveryTrainLoadSacnInvnByIds(idBatch)); |
|
|
|
|
|
|
|
future.thenAccept(list -> { |
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
|
|
|
|
// list 封装为map deliveryId为key
|
|
|
|
|
|
|
|
Map<Long, DeliveryTrainLoadedScanDTO> loadedScanDTOMap = new HashMap<>(); |
|
|
|
|
|
|
|
list.forEach(dto -> loadedScanDTOMap.put(dto.getDeliveryId(), dto)); |
|
|
|
|
|
|
|
List<ReportDevilerVO> collect = deliveryTrainPage.stream().filter(reportDevilerVO -> idBatch.contains(reportDevilerVO.getId())).collect(Collectors.toList()); |
|
|
|
|
|
|
|
for (ReportDevilerVO reportDevilerVO : collect) { |
|
|
|
|
|
|
|
if (loadedScanDTOMap.containsKey(reportDevilerVO.getId())) { |
|
|
|
|
|
|
|
DeliveryTrainLoadedScanDTO dto = loadedScanDTOMap.get(reportDevilerVO.getId()); |
|
|
|
|
|
|
|
reportDevilerVO.setInvnLoadedNum(StrUtil.isNotEmpty(dto.getLoadedNum()) ? dto.getLoadedNum() : "0"); |
|
|
|
|
|
|
|
reportDevilerVO.setInvnReNum(StrUtil.isNotEmpty(dto.getReNum()) ? dto.getReNum() : "0"); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
reportDevilerVO.setInvnLoadedNum("0"); |
|
|
|
|
|
|
|
reportDevilerVO.setInvnReNum("0"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
return future; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private @NotNull CompletableFuture<List<DeliveryTrainLoadedScanDTO>> getTrainLoadedScanFuture(List<Long> idBatch, List<ReportDevilerVO> deliveryTrainPage) { |
|
|
|
|
|
|
|
CompletableFuture<List<DeliveryTrainLoadedScanDTO>> future = CompletableFuture.supplyAsync(() -> |
|
|
|
|
|
|
|
reportDeliverMapeer.getDeliveryTrainLoadSacnByIds(idBatch)); |
|
|
|
|
|
|
|
future.thenAccept(list -> { |
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
|
|
|
|
// list 封装为map deliveryId为key
|
|
|
|
|
|
|
|
Map<Long, DeliveryTrainLoadedScanDTO> loadedScanDTOMap = new HashMap<>(); |
|
|
|
|
|
|
|
list.forEach(dto -> loadedScanDTOMap.put(dto.getDeliveryId(), dto)); |
|
|
|
|
|
|
|
List<ReportDevilerVO> collect = deliveryTrainPage.stream().filter(reportDevilerVO -> idBatch.contains(reportDevilerVO.getId())).collect(Collectors.toList()); |
|
|
|
|
|
|
|
for (ReportDevilerVO reportDevilerVO : collect) { |
|
|
|
|
|
|
|
if (loadedScanDTOMap.containsKey(reportDevilerVO.getId())) { |
|
|
|
|
|
|
|
DeliveryTrainLoadedScanDTO dto = loadedScanDTOMap.get(reportDevilerVO.getId()); |
|
|
|
|
|
|
|
reportDevilerVO.setLoadedNum(StrUtil.isNotEmpty(dto.getLoadedNum()) ? dto.getLoadedNum() : "0"); |
|
|
|
|
|
|
|
reportDevilerVO.setReNum(StrUtil.isNotEmpty(dto.getReNum()) ? dto.getReNum() : "0"); |
|
|
|
|
|
|
|
reportDevilerVO.setExLoadedNum(StrUtil.isNotEmpty(dto.getExLoadedNum()) ? dto.getExLoadedNum() : "0"); |
|
|
|
|
|
|
|
reportDevilerVO.setExReNum(StrUtil.isNotEmpty(dto.getExReNum()) ? dto.getExReNum() : "0"); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
reportDevilerVO.setLoadedNum("0"); |
|
|
|
|
|
|
|
reportDevilerVO.setReNum("0"); |
|
|
|
|
|
|
|
reportDevilerVO.setExLoadedNum("0"); |
|
|
|
|
|
|
|
reportDevilerVO.setExReNum("0"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
return future; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static void dateIsWithinOneMonth(String taskTime, Date startTaskTime, Date endTaskTime) { |
|
|
|
|
|
|
|
if (ObjectUtil.isEmpty(taskTime)) { |
|
|
|
|
|
|
|
boolean withinOneMonth = CheckDataUtil.isWithinOneMonth(startTaskTime, endTaskTime); |
|
|
|
|
|
|
|
if (!withinOneMonth) { |
|
|
|
|
|
|
|
throw new ServiceException("日期必选且日期只能选择一个月"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void trainCustomQuery(ReportDevilerQuery query, QueryWrapper<ReportDevilerVO> queryWrapper) { |
|
|
|
private void trainCustomQuery(ReportDevilerQuery query, QueryWrapper<ReportDevilerVO> queryWrapper) { |
|
|
@ -68,6 +179,7 @@ public class ReportDeliverServiceImpl implements ReportDeliverService { |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void exportTrain(HttpServletResponse response, ReportDevilerVO vo, ReportDevilerQuery query) { |
|
|
|
public void exportTrain(HttpServletResponse response, ReportDevilerVO vo, ReportDevilerQuery query) { |
|
|
|
|
|
|
|
dateIsWithinOneMonth(vo.getTaskTime(), query.getStartTaskTime(), query.getEndTaskTime()); |
|
|
|
QueryWrapper<ReportDevilerVO> queryWrapper = QueryUtil.buildQueryWrapper(vo, ReportDevilerVO.class); |
|
|
|
QueryWrapper<ReportDevilerVO> queryWrapper = QueryUtil.buildQueryWrapper(vo, ReportDevilerVO.class); |
|
|
|
trainCustomQuery(query, queryWrapper); |
|
|
|
trainCustomQuery(query, queryWrapper); |
|
|
|
new ReportExcelUtil().export(response, deliveryTrainReader, ReportDevilerVO.class, queryWrapper, "配送车次维度报表"); |
|
|
|
new ReportExcelUtil().export(response, deliveryTrainReader, ReportDevilerVO.class, queryWrapper, "配送车次维度报表"); |
|
|
|