|
|
|
@ -4,8 +4,10 @@ import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.util.NumberUtil; |
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import com.logpm.report.dto.DeliveryTrainLoadedScanDTO; |
|
|
|
|
import com.logpm.report.mapper.ReportDeliverMapeer; |
|
|
|
@ -26,6 +28,7 @@ import com.logpm.report.vo.ReportDetailVO;
|
|
|
|
|
import com.logpm.report.vo.ReportDevilerVO; |
|
|
|
|
import com.logpm.report.vo.StockOrderVO; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import org.apache.poi.ss.formula.functions.T; |
|
|
|
|
import org.jetbrains.annotations.NotNull; |
|
|
|
|
import org.slf4j.Logger; |
|
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
@ -70,11 +73,16 @@ public class ReportDeliverServiceImpl implements ReportDeliverService {
|
|
|
|
|
// 2 用户页面没有选择仓库,但是切换了仓库,按切换的仓库查
|
|
|
|
|
// 3 用户没有选择仓库,也没有切换仓库,按用户当前所有仓查询
|
|
|
|
|
ReportUtil.buildReportWarehouseAuth(vo.getWarehouseName(), query.getWarehouseNameRange(), queryWrapper, warehouseClient); |
|
|
|
|
List<ReportDevilerVO> deliveryTrainPage = getReportDevilerVOList(page, queryWrapper); |
|
|
|
|
return page.setRecords(deliveryTrainPage); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private @NotNull List<ReportDevilerVO> getReportDevilerVOList(IPage<ReportDevilerVO> page, Wrapper queryWrapper) { |
|
|
|
|
// 查询数据
|
|
|
|
|
List<ReportDevilerVO> deliveryTrainPage = reportDeliverMapeer.getDeliveryTrainPage(page, queryWrapper); |
|
|
|
|
// 异步组装统计数据
|
|
|
|
|
asyncBuildDeliveryTrainPage(deliveryTrainPage); |
|
|
|
|
return page.setRecords(deliveryTrainPage); |
|
|
|
|
return deliveryTrainPage; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void asyncBuildDeliveryTrainPage(List<ReportDevilerVO> deliveryTrainPage) { |
|
|
|
@ -336,4 +344,9 @@ public class ReportDeliverServiceImpl implements ReportDeliverService {
|
|
|
|
|
new ReportExcelUtil().export(response, stockOrderReader, StockOrderVO.class, queryWrapper, "在库订单表"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<T> getDeliveryTrainPageReader(Page page, Wrapper query) { |
|
|
|
|
return this.getReportDevilerVOList(page, query); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|