|
|
|
@ -6,11 +6,14 @@ import com.baomidou.mybatisplus.core.conditions.Wrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.logpm.report.dto.DeliveryTrainLoadedScanDTO; |
|
|
|
|
import com.logpm.report.mapper.ReportDeliverMapeer; |
|
|
|
|
import com.logpm.report.service.IAsyncService; |
|
|
|
|
import com.logpm.report.service.ReportDataService; |
|
|
|
|
import com.logpm.report.vo.ReportDevilerVO; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.jetbrains.annotations.NotNull; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
@ -18,6 +21,7 @@ import java.util.HashMap;
|
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.concurrent.CompletableFuture; |
|
|
|
|
import java.util.concurrent.Executor; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -30,6 +34,10 @@ import java.util.stream.Collectors;
|
|
|
|
|
public class ReportDataServiceImpl implements ReportDataService { |
|
|
|
|
|
|
|
|
|
private final ReportDeliverMapeer reportDeliverMapeer; |
|
|
|
|
private final IAsyncService asyncService; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private Executor asyncExecutor; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<ReportDevilerVO> getReportDevilerVOList(IPage<ReportDevilerVO> page, Wrapper queryWrapper) { |
|
|
|
@ -62,7 +70,7 @@ public class ReportDataServiceImpl implements ReportDataService {
|
|
|
|
|
|
|
|
|
|
private @NotNull CompletableFuture<List<DeliveryTrainLoadedScanDTO>> getTrainLoadedScanInvnFuture(List<Long> idBatch, List<ReportDevilerVO> deliveryTrainPage) { |
|
|
|
|
CompletableFuture<List<DeliveryTrainLoadedScanDTO>> future = CompletableFuture.supplyAsync(() -> |
|
|
|
|
reportDeliverMapeer.getDeliveryTrainLoadSacnInvnByIds(idBatch)); |
|
|
|
|
asyncService.getDeliveryTrainLoadSacnInvnByIds(idBatch), (ThreadPoolTaskExecutor) asyncExecutor); |
|
|
|
|
future.thenAccept(list -> { |
|
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
|
// list 封装为map deliveryId为key
|
|
|
|
@ -86,7 +94,7 @@ public class ReportDataServiceImpl implements ReportDataService {
|
|
|
|
|
|
|
|
|
|
private @NotNull CompletableFuture<List<DeliveryTrainLoadedScanDTO>> getTrainLoadedScanFuture(List<Long> idBatch, List<ReportDevilerVO> deliveryTrainPage) { |
|
|
|
|
CompletableFuture<List<DeliveryTrainLoadedScanDTO>> future = CompletableFuture.supplyAsync(() -> |
|
|
|
|
reportDeliverMapeer.getDeliveryTrainLoadSacnByIds(idBatch)); |
|
|
|
|
asyncService.getDeliveryTrainLoadSacnByIds(idBatch), (ThreadPoolTaskExecutor) asyncExecutor); |
|
|
|
|
future.thenAccept(list -> { |
|
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
|
// list 封装为map deliveryId为key
|
|
|
|
|