Browse Source

1.订单整体时效报表

fix-sign
zhenghaoyu 3 months ago
parent
commit
937231d1f7
  1. 26
      blade-service-api/logpm-report-api/src/main/java/com/logpm/report/entity/ReportConfigOrderAllEntity.java
  2. 25
      blade-service/logpm-report/src/main/java/com/logpm/report/controller/ReportConfigController.java
  3. 15
      blade-service/logpm-report/src/main/java/com/logpm/report/controller/ReportTimeController.java
  4. 13
      blade-service/logpm-report/src/main/java/com/logpm/report/dto/DestinationWarehouseDTO.java
  5. 3
      blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportConfigDTO.java
  6. 14
      blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportTimeDTO.java
  7. 13
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportConfigOrderAllMapper.java
  8. 31
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportConfigOrderAllMapper.xml
  9. 5
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.java
  10. 302
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.xml
  11. 14
      blade-service/logpm-report/src/main/java/com/logpm/report/service/IReportConfigOrderAllService.java
  12. 4
      blade-service/logpm-report/src/main/java/com/logpm/report/service/IReportTimeService.java
  13. 51
      blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportConfigAllTrunklineServiceImpl.java
  14. 85
      blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportConfigOrderAllServiceImpl.java
  15. 98
      blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportTimeServiceImpl.java
  16. 103
      blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportOrderAllTimeVO.java

26
blade-service-api/logpm-report-api/src/main/java/com/logpm/report/entity/ReportConfigOrderAllEntity.java

@ -0,0 +1,26 @@
package com.logpm.report.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import lombok.*;
import org.springblade.core.tenant.mp.TenantEntity;
@Data
@TableName("logpm_reportconfig_order_all")
@ApiModel(value = " ReportConfigOrderAll对象", description = "订单整体时效报表配置")
@EqualsAndHashCode(callSuper = true)
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class ReportConfigOrderAllEntity extends TenantEntity {
private Long departureWarehouseId;
private String departureWarehouseName;
private Long destinationWarehouseId;
private String destinationWarehouseName;
private String brand;
private Integer dayTime;
}

25
blade-service/logpm-report/src/main/java/com/logpm/report/controller/ReportConfigController.java

@ -24,6 +24,7 @@ public class ReportConfigController extends BladeController {
private final IReportConfigDespatchService reportConfigDespatchService;
private final IReportConfigTransferService reportConfigTransferService;
private final IReportConfigAllTrunklineService reportConfigAllTrunklineService;
private final IReportConfigOrderAllService reportConfigOrderAllService;
//-------------------------开单及时率
@ -139,4 +140,28 @@ public class ReportConfigController extends BladeController {
return reportConfigAllTrunklineService.deleteAllTrunklineConfig(reportConfigDTO);
}
//--------------------订单整体准时
@PostMapping("/orderAllConfigPage")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "订单整体准时配置", notes = "订单整体准时配置")
public R orderAllConfigPage(@RequestBody ReportConfigDTO reportConfigDTO) {
return reportConfigOrderAllService.orderAllConfigPage(reportConfigDTO);
}
@PostMapping("/addOrderAllConfig")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "新增订单整体准时配置", notes = "新增订单整体准时配置")
public R addOrderAllConfig(@RequestBody ReportConfigDTO reportConfigDTO) {
return reportConfigOrderAllService.addOrderAllConfig(reportConfigDTO);
}
@PostMapping("/deleteOrderAllConfig")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "删除订单整体准时配置", notes = "删除订单整体准时配置")
public R deleteOrderAllConfig(@RequestBody ReportConfigDTO reportConfigDTO) {
return reportConfigOrderAllService.deleteOrderAllConfig(reportConfigDTO);
}
}

15
blade-service/logpm-report/src/main/java/com/logpm/report/controller/ReportTimeController.java

@ -150,5 +150,20 @@ public class ReportTimeController extends BladeController {
reportTimeService.zeroAllTrunklineTimeExport(reportTimeDTO,response);
}
//-----------------------订单整体时效------------------------
@PostMapping("/orderAllTimePage")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "订单整体时效报表", notes = "订单整体时效报表")
public R orderAllTimePage(@RequestBody ReportTimeDTO reportTimeDTO) {
return reportTimeService.orderAllTimePage(reportTimeDTO);
}
@PostMapping("/orderAllTimeExport")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "订单整体时效导出", notes = "订单整体时效导出")
public void orderAllTimeExport(@RequestBody ReportTimeDTO reportTimeDTO, HttpServletResponse response) {
reportTimeService.orderAllTimeExport(reportTimeDTO,response);
}
}

13
blade-service/logpm-report/src/main/java/com/logpm/report/dto/DestinationWarehouseDTO.java

@ -0,0 +1,13 @@
package com.logpm.report.dto;
import lombok.Data;
import java.io.Serializable;
@Data
public class DestinationWarehouseDTO implements Serializable {
private Long warehouseId;
private String warehouseName;
}

3
blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportConfigDTO.java

@ -21,12 +21,15 @@ public class ReportConfigDTO implements Serializable {
private String brand;
private Integer hoursTime;
private Integer dayTime;
private Long id;
private List<Long> departureWarehouseIds;
private List<Long> destinationWarehouseIds;
private List<DestinationWarehouseDTO> destinationWarehouseDTOList;
private Long departureWarehouseId;
private String departureWarehouseName;

14
blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportTimeDTO.java

@ -25,5 +25,19 @@ public class ReportTimeDTO implements Serializable {
private Date endTime;
private Integer hoursTime;
private Integer dayTime;
private String orderCode;
private String waybillCode;
private String brand;
private String shipper;
private String consignee;
private String departureWarehouseName;
private String destinationWarehouseName;
private String trainNumber;
private String loadCode;
}

13
blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportConfigOrderAllMapper.java

@ -0,0 +1,13 @@
package com.logpm.report.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.report.dto.ReportConfigDTO;
import com.logpm.report.entity.ReportConfigOrderAllEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface ReportConfigOrderAllMapper extends BaseMapper<ReportConfigOrderAllEntity> {
IPage<ReportConfigOrderAllEntity> orderAllConfigPage(IPage<Object> page, @Param("param") ReportConfigDTO reportConfigDTO);
}

31
blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportConfigOrderAllMapper.xml

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.logpm.report.mapper.ReportConfigOrderAllMapper">
<select id="orderAllConfigPage" resultType="com.logpm.report.entity.ReportConfigOrderAllEntity">
select *
from logpm_reportconfig_order_all rat
<where>
and rat.is_deleted = 0
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0">
and rat.departure_warehouse_id in
<foreach collection="param.departureWarehouseIds" item="item" index="index" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0">
and rat.destination_warehouse_id in
<foreach collection="param.destinationWarehouseIds" item="item" index="index" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.brands != null and param.brands.size() > 0">
and rat.brand in
<foreach collection="param.brands" item="item" index="index" open="(" separator="," close=")">
#{item}
</foreach>
</if>
</where>
</select>
</mapper>

5
blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.java

@ -2,6 +2,7 @@ package com.logpm.report.mapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.report.dto.ReportTimeDTO;
import com.logpm.report.entity.ReportConfigOrderAllEntity;
import com.logpm.report.vo.*;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@ -43,4 +44,8 @@ public interface ReportTimeMapper {
IPage<ReportPackgeAllTrunklineTimeVO> zeroAllTrunklineTimePage(IPage<Object> page, @Param("param") ReportTimeDTO reportTimeDTO);
List<ReportPackgeAllTrunklineTimeVO> zeroAllTrunklineTimeExport(@Param("param") ReportTimeDTO reportTimeDTO);
IPage<ReportOrderAllTimeVO> orderAllTimePage(IPage<Object> page, @Param("param") ReportTimeDTO reportTimeDTO);
List<ReportConfigOrderAllEntity> orderAllTimeExport(@Param("param") ReportTimeDTO reportTimeDTO);
}

302
blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.xml

@ -829,12 +829,10 @@
IFNULL(round(sum(IFNULL(t.sevenToTenNum,0))/sum(lww.total_count)*100,2),'0.00') sevenToTenArriveRate,
sum(IFNULL(t.moreTenNum,0)) moreTenArriveNum,
IFNULL(round(sum(IFNULL(t.moreTenNum,0))/sum(lww.total_count)*100,2),'0.00') moreTenArriveRate
from logpm_warehouse_waybill lww
left join logpm_warehouse_warehouse waw on waw.id = lww.departure_warehouse_id
left join (select ldpl.waybill_id,
from (select ldpl.waybill_id,
sum(ldpl.quantity) totalNum,
sum(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time )) timeSecond,
sum(if(ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL IFNULL(lrat.hours_time,0) HOUR ),1,0)) onTimeNum,
sum(if(ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL IFNULL(lrat.hours_time,#{param.hoursTime}) HOUR ),1,0)) onTimeNum,
sum(if(ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL 24 HOUR ),1,0)) oneNum,
sum(if(DATE_ADD( ltad.create_time, INTERVAL 24 HOUR ) &lt;ldpl.create_time and ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL 48 HOUR ),1,0)) twoNum,
sum(if(DATE_ADD( ltad.create_time, INTERVAL 48 HOUR )&lt;ldpl.create_time and ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL 72 HOUR ),1,0)) threeNum,
@ -850,24 +848,6 @@
where ldpl.conditions != 3
and ldpl.send_warehouse_id != ldpl.accept_warehouse_id
and ltad.create_time > '2024-10-22 00:00:00'
<if test="param.brandList != null and param.brandList.size() > 0">
and ltad.brand in
<foreach collection="param.brandList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0">
and ldpl.send_warehouse_id in
<foreach collection="param.departureWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0">
and ldpl.accept_warehouse_id in
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.startTime != null ">
and ltad.create_time &gt;= #{param.startTime}
</if>
@ -876,10 +856,10 @@
</if>
and ldpl.warehouse_id = ldpl.accept_warehouse_id
and ldpl.warehouse_id != ldpl.send_warehouse_id
group by ldpl.waybill_id) t on t.waybill_id = lww.id
where lww.waybill_type = 1
and lww.departure_warehouse_id != lww.destination_warehouse_id
and lww.create_time > '2024-10-22 00:00:00'
group by ldpl.waybill_id) t
left join logpm_warehouse_waybill lww on lww.id = t.waybill_id
left join logpm_warehouse_warehouse waw on waw.id = lww.departure_warehouse_id
where 1=1
<if test="param.businessLineList != null and param.businessLineList.size() > 0">
and waw.business_line in
<foreach collection="param.businessLineList" item="item" open="(" separator="," close=")">
@ -887,29 +867,23 @@
</foreach>
</if>
<if test="param.brandList != null and param.brandList.size() > 0">
and lww.brand in
and ltad.brand in
<foreach collection="param.brandList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0">
and lww.departure_warehouse_id in
and ldpl.send_warehouse_id in
<foreach collection="param.departureWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0">
and lww.destination_warehouse_id in
and ldpl.accept_warehouse_id in
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.startTime != null ">
and lww.create_time &gt;= #{param.startTime}
</if>
<if test="param.endTime != null ">
and lww.create_time &lt;= #{param.endTime}
</if>
group by waw.business_line,
lww.departure_warehouse_name,
lww.destination_warehouse_name,
@ -948,12 +922,10 @@
IFNULL(concat(round(sum(IFNULL(t.sevenToTenNum,0))/sum(lww.total_count)*100,2),'%'),'0.00%') sevenToTenArriveRate,
sum(IFNULL(t.moreTenNum,0)) moreTenArriveNum,
IFNULL(concat(round(sum(IFNULL(t.moreTenNum,0))/sum(lww.total_count)*100,2),'%'),'0.00%') moreTenArriveRate
from logpm_warehouse_waybill lww
left join logpm_warehouse_warehouse waw on waw.id = lww.departure_warehouse_id
left join (select ldpl.waybill_id,
from (select ldpl.waybill_id,
sum(ldpl.quantity) totalNum,
sum(TIMESTAMPDIFF(SECOND,ltad.create_time,ldpl.create_time )) timeSecond,
sum(if(ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL IFNULL(lrat.hours_time,0) HOUR ),1,0)) onTimeNum,
sum(if(ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL IFNULL(lrat.hours_time,#{param.hoursTime}) HOUR ),1,0)) onTimeNum,
sum(if(ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL 24 HOUR ),1,0)) oneNum,
sum(if(DATE_ADD( ltad.create_time, INTERVAL 24 HOUR ) &lt;ldpl.create_time and ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL 48 HOUR ),1,0)) twoNum,
sum(if(DATE_ADD( ltad.create_time, INTERVAL 48 HOUR )&lt;ldpl.create_time and ldpl.create_time &lt;= DATE_ADD( ltad.create_time, INTERVAL 72 HOUR ),1,0)) threeNum,
@ -969,24 +941,6 @@
where ldpl.conditions != 3
and ldpl.send_warehouse_id != ldpl.accept_warehouse_id
and ltad.create_time > '2024-10-22 00:00:00'
<if test="param.brandList != null and param.brandList.size() > 0">
and ltad.brand in
<foreach collection="param.brandList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0">
and ldpl.send_warehouse_id in
<foreach collection="param.departureWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0">
and ldpl.accept_warehouse_id in
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.startTime != null ">
and ltad.create_time &gt;= #{param.startTime}
</if>
@ -995,10 +949,10 @@
</if>
and ldpl.warehouse_id = ldpl.accept_warehouse_id
and ldpl.warehouse_id != ldpl.send_warehouse_id
group by ldpl.waybill_id) t on t.waybill_id = lww.id
where lww.waybill_type = 1
and lww.departure_warehouse_id != lww.destination_warehouse_id
and lww.create_time > '2024-10-22 00:00:00'
group by ldpl.waybill_id) t
left join logpm_warehouse_waybill lww on lww.id = t.waybill_id
left join logpm_warehouse_warehouse waw on waw.id = lww.departure_warehouse_id
where 1=1
<if test="param.businessLineList != null and param.businessLineList.size() > 0">
and waw.business_line in
<foreach collection="param.businessLineList" item="item" open="(" separator="," close=")">
@ -1006,29 +960,23 @@
</foreach>
</if>
<if test="param.brandList != null and param.brandList.size() > 0">
and lww.brand in
and ltad.brand in
<foreach collection="param.brandList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0">
and lww.departure_warehouse_id in
and ldpl.send_warehouse_id in
<foreach collection="param.departureWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0">
and lww.destination_warehouse_id in
and ldpl.accept_warehouse_id in
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.startTime != null ">
and lww.create_time &gt;= #{param.startTime}
</if>
<if test="param.endTime != null ">
and lww.create_time &lt;= #{param.endTime}
</if>
group by waw.business_line,
lww.departure_warehouse_name,
lww.destination_warehouse_name,
@ -1399,4 +1347,218 @@
lww.brand
</select>
<select id="orderAllTimePage" resultType="com.logpm.report.vo.ReportOrderAllTimeVO">
select ltad.order_code orderCode,
ltad.waybill_no waybillNo,
ltad.brand brand,
lww.shipper shipper,
lww.consignee consignee,
lww.departure_warehouse_name departureWarehouseName,
lww.destination_warehouse_name destinationWarehouseName,
GROUP_CONCAT(DISTINCT ltad.train_number) trainNumber,
GROUP_CONCAT(DISTINCT IFNULL(ltcls.load_code,ltclsm.load_code)) loadCode,
count(ltad.id) totalNum,
min(ltad.create_time) createTime,
min(ldpls.create_time) startIncomingTime,
min(ltcll.start_date) startTime,
min(ldplm.create_time) endIncomingTime,
min(lww.create_time) openTime,
min(lqd.delivery_plan_time) deliveryPlanTime,
min(lqd.sign_time) signTime,
min(lqd.review_time) reviewTime,
min(ltcllm.unload_date) endUnloadTime,
IFNULL(oat.day_time,#{param.dayTime}) dayTime,
IF(min(lqd.sign_time) IS NULL,'否','是') isUploadSignOrder,
IF(min(lqd.sign_time) IS NULL,'否','是') isUploadPut,
CEIL(TIMESTAMPDIFF(SECOND,min(ltad.create_time),min(ldplm.create_time))/3600/24) realdayTime,
CEIL(TIMESTAMPDIFF(SECOND,min(ltad.create_time),min(ldplm.create_time))/3600/24)-IFNULL(oat.day_time,#{param.dayTime}) delayTime,
if(CEIL(TIMESTAMPDIFF(SECOND,min(ltad.create_time),min(ldplm.create_time))/3600/24)-IFNULL(oat.day_time,#{param.dayTime}) > 0,'是','否') delayStatus,
case when sum(if(ldplm.order_package_status='70',1,0))=0 then '未签收'
when count(ltad.id) != sum(if(ldplm.order_package_status='70',1,0)) then '部分签收'
when count(ltad.id) = sum(if(ldplm.order_package_status='70',1,0)) then '已签收'
else '未知' end signStatus,
sum(if(ldplm.order_package_status='70',1,0)) signNum
from logpm_trunkline_advance_detail ltad
left join logpm_warehouse_waybill lww on lww.id = ltad.waybill_id
left join logpm_distribution_parcel_list ldpls on ldpls.warehouse_id = lww.departure_warehouse_id and ldpls.order_package_code = ltad.order_package_code
left join logpm_trunkline_cars_load_scan ltcls on ltcls.scan_code = ldpls.order_package_code and ltcls.warehouse_id = ldpls.warehouse_id
left join logpm_trunkline_cars_load_line ltcll on ltcll.load_id = ltcls.load_id and ltcll.node_id = ltcls.warehouse_id
left join logpm_distribution_parcel_list ldplm on ldplm.warehouse_id = lww.destination_warehouse_id and ldplm.order_package_code = ltad.order_package_code
left join logpm_trunkline_cars_load_scan ltclsm on ltclsm.scan_code = ldplm.order_package_code and ltclsm.unload_node_id = ldplm.warehouse_id
left join logpm_trunkline_cars_load_line ltcllm on ltcllm.load_id = ltclsm.load_id and ltcllm.node_id = ltclsm.unload_node_id
left join logpm_quality_deliver lqd on lqd.order_package_code = ltad.order_package_code and lqd.retention_time is null
left join logpm_reportconfig_order_all oat on oat.departure_warehouse_id = lww.departure_warehouse_id and oat.destination_warehouse_id = lww.destination_warehouse_id and oat.brand = lww.brand
where ltad.waybill_id is not null
and ltad.create_time > '2024-10-22 00:00:00'
and lww.departure_warehouse_id != lww.destination_warehouse_id
<if test="param.startTime != null ">
and ltad.create_time &gt;= #{param.startTime}
</if>
<if test="param.endTime != null ">
and ltad.create_time &lt;= #{param.endTime}
</if>
<if test="param.brandList != null and param.brandList.size() > 0">
and lww.brand in
<foreach collection="param.brandList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0">
and lww.departure_warehouse_id in
<foreach collection="param.departureWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0">
and lww.destination_warehouse_id in
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.brand != null and param.brand !='' ">
and ltad.brand = #{param.brand}
</if>
<if test="param.orderCode != null and param.orderCode !='' ">
and ltad.order_code like concat('%',#{param.orderCode},'%')
</if>
<if test="param.waybillCode != null and param.waybillCode !='' ">
and ltad.waybill_no like concat('%',#{param.waybillCode},'%')
</if>
<if test="param.shipper != null and param.shipper !='' ">
and lww.shipper like concat('%',#{param.shipper},'%')
</if>
<if test="param.consignee != null and param.consignee !='' ">
and lww.consignee like concat('%',#{param.consignee},'%')
</if>
<if test="param.departureWarehouseName != null and param.departureWarehouseName !='' ">
and lww.departure_warehouse_name like concat('%',#{param.departureWarehouseName},'%')
</if>
<if test="param.destinationWarehouseName != null and param.destinationWarehouseName !='' ">
and lww.destination_warehouse_name like concat('%',#{param.destinationWarehouseName},'%')
</if>
<if test="param.trainNumber != null and param.trainNumber !='' ">
and GROUP_CONCAT(DISTINCT ltad.train_number) like concat('%',#{param.trainNumber},'%')
GROUP_CONCAT(DISTINCT IFNULL(ltcls.load_code,ltclsm.load_code)) loadCode,
</if>
<if test="param.loadCode != null and param.loadCode !='' ">
and GROUP_CONCAT(DISTINCT IFNULL(ltcls.load_code,ltclsm.load_code)) like concat('%',#{param.loadCode},'%')
</if>
group by ltad.order_code,
ltad.waybill_no,
ltad.brand,
lww.shipper,
lww.consignee,
lww.departure_warehouse_name,
lww.destination_warehouse_name,
oat.day_time
</select>
<select id="orderAllTimeExport" resultType="com.logpm.report.vo.ReportOrderAllTimeVO">
select ltad.order_code orderCode,
ltad.waybill_no waybillNo,
ltad.brand brand,
lww.shipper shipper,
lww.consignee consignee,
lww.departure_warehouse_name departureWarehouseName,
lww.destination_warehouse_name destinationWarehouseName,
GROUP_CONCAT(DISTINCT ltad.train_number) trainNumber,
GROUP_CONCAT(DISTINCT IFNULL(ltcls.load_code,ltclsm.load_code)) loadCode,
count(ltad.id) totalNum,
min(ltad.create_time) createTime,
min(ldpls.create_time) startIncomingTime,
min(ltcll.start_date) startTime,
min(ldplm.create_time) endIncomingTime,
min(lww.create_time) openTime,
min(lqd.delivery_plan_time) deliveryPlanTime,
min(lqd.sign_time) signTime,
min(lqd.review_time) reviewTime,
min(ltcllm.unload_date) endUnloadTime,
IFNULL(oat.day_time,#{param.dayTime}) dayTime,
IF(min(lqd.sign_time) IS NULL,'否','是') isUploadSignOrder,
IF(min(lqd.sign_time) IS NULL,'否','是') isUploadPut,
CEIL(TIMESTAMPDIFF(SECOND,min(ltad.create_time),min(ldplm.create_time))/3600/24) realdayTime,
CEIL(TIMESTAMPDIFF(SECOND,min(ltad.create_time),min(ldplm.create_time))/3600/24)-IFNULL(oat.day_time,#{param.dayTime}) delayTime,
if(CEIL(TIMESTAMPDIFF(SECOND,min(ltad.create_time),min(ldplm.create_time))/3600/24)-IFNULL(oat.day_time,#{param.dayTime}) > 0,'是','否') delayStatus,
case when sum(if(ldplm.order_package_status='70',1,0))=0 then '未签收'
when count(ltad.id) != sum(if(ldplm.order_package_status='70',1,0)) then '部分签收'
when count(ltad.id) = sum(if(ldplm.order_package_status='70',1,0)) then '已签收'
else '未知' end signStatus,
sum(if(ldplm.order_package_status='70',1,0)) signNum
from logpm_trunkline_advance_detail ltad
left join logpm_warehouse_waybill lww on lww.id = ltad.waybill_id
left join logpm_distribution_parcel_list ldpls on ldpls.warehouse_id = lww.departure_warehouse_id and ldpls.order_package_code = ltad.order_package_code
left join logpm_trunkline_cars_load_scan ltcls on ltcls.scan_code = ldpls.order_package_code and ltcls.warehouse_id = ldpls.warehouse_id
left join logpm_trunkline_cars_load_line ltcll on ltcll.load_id = ltcls.load_id and ltcll.node_id = ltcls.warehouse_id
left join logpm_distribution_parcel_list ldplm on ldplm.warehouse_id = lww.destination_warehouse_id and ldplm.order_package_code = ltad.order_package_code
left join logpm_trunkline_cars_load_scan ltclsm on ltclsm.scan_code = ldplm.order_package_code and ltclsm.unload_node_id = ldplm.warehouse_id
left join logpm_trunkline_cars_load_line ltcllm on ltcllm.load_id = ltclsm.load_id and ltcllm.node_id = ltclsm.unload_node_id
left join logpm_quality_deliver lqd on lqd.order_package_code = ltad.order_package_code and lqd.retention_time is null
left join logpm_reportconfig_order_all oat on oat.departure_warehouse_id = lww.departure_warehouse_id and oat.destination_warehouse_id = lww.destination_warehouse_id and oat.brand = lww.brand
where ltad.waybill_id is not null
and ltad.create_time > '2024-10-22 00:00:00'
and lww.departure_warehouse_id != lww.destination_warehouse_id
<if test="param.startTime != null ">
and ltad.create_time &gt;= #{param.startTime}
</if>
<if test="param.endTime != null ">
and ltad.create_time &lt;= #{param.endTime}
</if>
<if test="param.brandList != null and param.brandList.size() > 0">
and lww.brand in
<foreach collection="param.brandList" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0">
and lww.departure_warehouse_id in
<foreach collection="param.departureWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0">
and lww.destination_warehouse_id in
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param.brand != null and param.brand !='' ">
and ltad.brand = #{param.brand}
</if>
<if test="param.orderCode != null and param.orderCode !='' ">
and ltad.order_code like concat('%',#{param.orderCode},'%')
</if>
<if test="param.waybillCode != null and param.waybillCode !='' ">
and ltad.waybill_no like concat('%',#{param.waybillCode},'%')
</if>
<if test="param.shipper != null and param.shipper !='' ">
and lww.shipper like concat('%',#{param.shipper},'%')
</if>
<if test="param.consignee != null and param.consignee !='' ">
and lww.consignee like concat('%',#{param.consignee},'%')
</if>
<if test="param.departureWarehouseName != null and param.departureWarehouseName !='' ">
and lww.departure_warehouse_name like concat('%',#{param.departureWarehouseName},'%')
</if>
<if test="param.destinationWarehouseName != null and param.destinationWarehouseName !='' ">
and lww.destination_warehouse_name like concat('%',#{param.destinationWarehouseName},'%')
</if>
<if test="param.trainNumber != null and param.trainNumber !='' ">
and GROUP_CONCAT(DISTINCT ltad.train_number) like concat('%',#{param.trainNumber},'%')
GROUP_CONCAT(DISTINCT IFNULL(ltcls.load_code,ltclsm.load_code)) loadCode,
</if>
<if test="param.loadCode != null and param.loadCode !='' ">
and GROUP_CONCAT(DISTINCT IFNULL(ltcls.load_code,ltclsm.load_code)) like concat('%',#{param.loadCode},'%')
</if>
group by ltad.order_code,
ltad.waybill_no,
ltad.brand,
lww.shipper,
lww.consignee,
lww.departure_warehouse_name,
lww.destination_warehouse_name,
oat.day_time
</select>
</mapper>

14
blade-service/logpm-report/src/main/java/com/logpm/report/service/IReportConfigOrderAllService.java

@ -0,0 +1,14 @@
package com.logpm.report.service;
import com.logpm.report.dto.ReportConfigDTO;
import com.logpm.report.entity.ReportConfigOrderAllEntity;
import org.springblade.core.mp.base.BaseService;
import org.springblade.core.tool.api.R;
public interface IReportConfigOrderAllService extends BaseService<ReportConfigOrderAllEntity> {
R orderAllConfigPage(ReportConfigDTO reportConfigDTO);
R addOrderAllConfig(ReportConfigDTO reportConfigDTO);
R deleteOrderAllConfig(ReportConfigDTO reportConfigDTO);
}

4
blade-service/logpm-report/src/main/java/com/logpm/report/service/IReportTimeService.java

@ -39,4 +39,8 @@ public interface IReportTimeService {
R zeroAllTrunklineTimePage(ReportTimeDTO reportTimeDTO);
void zeroAllTrunklineTimeExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response);
R orderAllTimePage(ReportTimeDTO reportTimeDTO);
void orderAllTimeExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response);
}

51
blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportConfigAllTrunklineServiceImpl.java

@ -1,8 +1,10 @@
package com.logpm.report.service.impl;
import cn.hutool.core.collection.CollUtil;
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.report.dto.DestinationWarehouseDTO;
import com.logpm.report.dto.ReportConfigDTO;
import com.logpm.report.entity.ReportConfigAdvanceDetailOpenEntity;
import com.logpm.report.entity.ReportConfigAllTrunklineEntity;
@ -14,6 +16,8 @@ import org.springblade.core.mp.base.BaseServiceImpl;
import org.springblade.core.tool.api.R;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
@Service
@ -35,27 +39,38 @@ public class ReportConfigAllTrunklineServiceImpl extends BaseServiceImpl<ReportC
public R addAllTrunklineConfig(ReportConfigDTO reportConfigDTO) {
Long departureWarehouseId = reportConfigDTO.getDepartureWarehouseId();
String departureWarehouseName = reportConfigDTO.getDepartureWarehouseName();
Long destinationWarehouseId = reportConfigDTO.getDestinationWarehouseId();
String destinationWarehouseName = reportConfigDTO.getDestinationWarehouseName();
List<DestinationWarehouseDTO> destinationWarehouseDTOList = reportConfigDTO.getDestinationWarehouseDTOList();
String brand = reportConfigDTO.getBrand();
QueryWrapper<ReportConfigAllTrunklineEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name",departureWarehouseName)
.eq("destination_warehouse_name",destinationWarehouseName)
.eq("is_deleted",0);
ReportConfigAllTrunklineEntity reportConfigAllTrunklineEntity = baseMapper.selectOne(queryWrapper);
if(!Objects.isNull(reportConfigAllTrunklineEntity)){
reportConfigAllTrunklineEntity.setHoursTime(reportConfigDTO.getHoursTime());
}else{
reportConfigAllTrunklineEntity = ReportConfigAllTrunklineEntity.builder()
.departureWarehouseId(departureWarehouseId)
.departureWarehouseName(departureWarehouseName)
.destinationWarehouseId(destinationWarehouseId)
.destinationWarehouseName(destinationWarehouseName)
.hoursTime(reportConfigDTO.getHoursTime())
.build();
List<ReportConfigAllTrunklineEntity> list = new ArrayList<>();
destinationWarehouseDTOList.forEach(destinationWarehouseDTO -> {
Long destinationWarehouseId = destinationWarehouseDTO.getWarehouseId();
String destinationWarehouseName = destinationWarehouseDTO.getWarehouseName();
QueryWrapper<ReportConfigAllTrunklineEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name",departureWarehouseName)
.eq("destination_warehouse_name",destinationWarehouseName)
.eq("is_deleted",0);
ReportConfigAllTrunklineEntity reportConfigAllTrunklineEntity = baseMapper.selectOne(queryWrapper);
if(!Objects.isNull(reportConfigAllTrunklineEntity)){
reportConfigAllTrunklineEntity.setHoursTime(reportConfigDTO.getHoursTime());
}else{
reportConfigAllTrunklineEntity = ReportConfigAllTrunklineEntity.builder()
.departureWarehouseId(departureWarehouseId)
.departureWarehouseName(departureWarehouseName)
.destinationWarehouseId(destinationWarehouseId)
.destinationWarehouseName(destinationWarehouseName)
.hoursTime(reportConfigDTO.getHoursTime())
.build();
}
list.add(reportConfigAllTrunklineEntity);
});
if(CollUtil.isNotEmpty(list)){
saveOrUpdateBatch(list);
}
saveOrUpdate(reportConfigAllTrunklineEntity);
return R.success("保存成功");
}

85
blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportConfigOrderAllServiceImpl.java

@ -0,0 +1,85 @@
package com.logpm.report.service.impl;
import cn.hutool.core.collection.CollUtil;
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.report.dto.DestinationWarehouseDTO;
import com.logpm.report.dto.ReportConfigDTO;
import com.logpm.report.entity.ReportConfigOrderAllEntity;
import com.logpm.report.mapper.ReportConfigOrderAllMapper;
import com.logpm.report.service.IReportConfigOrderAllService;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springblade.core.tool.api.R;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
@Service
@Slf4j
@AllArgsConstructor
public class ReportConfigOrderAllServiceImpl extends BaseServiceImpl<ReportConfigOrderAllMapper, ReportConfigOrderAllEntity> implements IReportConfigOrderAllService {
@Override
public R orderAllConfigPage(ReportConfigDTO reportConfigDTO) {
IPage<Object> page = new Page<>();
page.setCurrent(reportConfigDTO.getPageNum());
page.setSize(reportConfigDTO.getPageSize());
IPage<ReportConfigOrderAllEntity> ipage = baseMapper.orderAllConfigPage(page, reportConfigDTO);
return R.data(ipage);
}
@Override
public R addOrderAllConfig(ReportConfigDTO reportConfigDTO) {
Long departureWarehouseId = reportConfigDTO.getDepartureWarehouseId();
String departureWarehouseName = reportConfigDTO.getDepartureWarehouseName();
// Long destinationWarehouseId = reportConfigDTO.getDestinationWarehouseId();
// String destinationWarehouseName = reportConfigDTO.getDestinationWarehouseName();
List<DestinationWarehouseDTO> destinationWarehouseDTOList = reportConfigDTO.getDestinationWarehouseDTOList();
String brand = reportConfigDTO.getBrand();
List<ReportConfigOrderAllEntity> list = new ArrayList<>();
destinationWarehouseDTOList.forEach(destinationWarehouseDTO -> {
Long destinationWarehouseId = destinationWarehouseDTO.getWarehouseId();
String destinationWarehouseName = destinationWarehouseDTO.getWarehouseName();
QueryWrapper<ReportConfigOrderAllEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name",departureWarehouseName)
.eq("destination_warehouse_name",destinationWarehouseName)
.eq("is_deleted",0);
ReportConfigOrderAllEntity reportConfigOrderAllEntity = baseMapper.selectOne(queryWrapper);
if(!Objects.isNull(reportConfigOrderAllEntity)){
reportConfigOrderAllEntity.setDayTime(reportConfigDTO.getDayTime());
}else{
reportConfigOrderAllEntity = ReportConfigOrderAllEntity.builder()
.departureWarehouseId(departureWarehouseId)
.departureWarehouseName(departureWarehouseName)
.destinationWarehouseId(destinationWarehouseId)
.destinationWarehouseName(destinationWarehouseName)
.dayTime(reportConfigDTO.getDayTime())
.build();
}
list.add(reportConfigOrderAllEntity);
});
if(CollUtil.isNotEmpty(list)){
saveOrUpdateBatch(list);
}
return R.success("保存成功");
}
@Override
public R deleteOrderAllConfig(ReportConfigDTO reportConfigDTO) {
Long id = reportConfigDTO.getId();
removeById(id);
return R.success("删除成功");
}
}

98
blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportTimeServiceImpl.java

@ -4,10 +4,7 @@ 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.report.dto.ReportTimeDTO;
import com.logpm.report.entity.ReportConfigAdvanceDetailOpenEntity;
import com.logpm.report.entity.ReportConfigCheckWaybillEntity;
import com.logpm.report.entity.ReportConfigDespatchEntity;
import com.logpm.report.entity.ReportConfigTransferEntity;
import com.logpm.report.entity.*;
import com.logpm.report.mapper.ReportTimeMapper;
import com.logpm.report.service.*;
import com.logpm.report.vo.*;
@ -32,6 +29,8 @@ public class ReportTimeServiceImpl implements IReportTimeService {
private final IReportConfigCheckWaybillService checkWaybillService;
private final IReportConfigDespatchService despatchService;
private final IReportConfigTransferService transferService;
private final IReportConfigAllTrunklineService allTrunklineService;
private final IReportConfigOrderAllService orderAllService;
@Override
@ -320,6 +319,17 @@ public class ReportTimeServiceImpl implements IReportTimeService {
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr()));
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr()));
reportTimeDTO.setHoursTime(0);
QueryWrapper<ReportConfigAllTrunklineEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name","全部")
.eq("destination_warehouse_name","全部")
.eq("is_deleted",0);
ReportConfigAllTrunklineEntity allTrunklineEntity = allTrunklineService.getOne(queryWrapper);
if(!Objects.isNull(allTrunklineEntity)){
reportTimeDTO.setHoursTime(allTrunklineEntity.getHoursTime());
}
IPage<ReportPackgeAllTrunklineTimeVO> iPage = reportTimeMapper.packageAllTrunklineTimePage(page,reportTimeDTO);
@ -331,6 +341,17 @@ public class ReportTimeServiceImpl implements IReportTimeService {
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr()));
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr()));
reportTimeDTO.setHoursTime(0);
QueryWrapper<ReportConfigAllTrunklineEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name","全部")
.eq("destination_warehouse_name","全部")
.eq("is_deleted",0);
ReportConfigAllTrunklineEntity allTrunklineEntity = allTrunklineService.getOne(queryWrapper);
if(!Objects.isNull(allTrunklineEntity)){
reportTimeDTO.setHoursTime(allTrunklineEntity.getHoursTime());
}
List<ReportPackgeAllTrunklineTimeVO> list = reportTimeMapper.packageAllTrunklineTimeExport(reportTimeDTO);
//导出ls
@ -346,6 +367,18 @@ public class ReportTimeServiceImpl implements IReportTimeService {
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr()));
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr()));
reportTimeDTO.setHoursTime(0);
QueryWrapper<ReportConfigAllTrunklineEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name","全部")
.eq("destination_warehouse_name","全部")
.eq("is_deleted",0);
ReportConfigAllTrunklineEntity allTrunklineEntity = allTrunklineService.getOne(queryWrapper);
if(!Objects.isNull(allTrunklineEntity)){
reportTimeDTO.setHoursTime(allTrunklineEntity.getHoursTime());
}
IPage<ReportPackgeAllTrunklineTimeVO> iPage = reportTimeMapper.zeroAllTrunklineTimePage(page,reportTimeDTO);
@ -357,9 +390,66 @@ public class ReportTimeServiceImpl implements IReportTimeService {
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr()));
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr()));
reportTimeDTO.setHoursTime(0);
QueryWrapper<ReportConfigAllTrunklineEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name","全部")
.eq("destination_warehouse_name","全部")
.eq("is_deleted",0);
ReportConfigAllTrunklineEntity allTrunklineEntity = allTrunklineService.getOne(queryWrapper);
if(!Objects.isNull(allTrunklineEntity)){
reportTimeDTO.setHoursTime(allTrunklineEntity.getHoursTime());
}
List<ReportPackgeAllTrunklineTimeVO> list = reportTimeMapper.zeroAllTrunklineTimeExport(reportTimeDTO);
//导出ls
ExcelUtil.export(response, "零担干线整体时效报表导出", "零担干线整体时效报表导出", list, ReportPackgeAllTrunklineTimeVO.class);
}
@Override
public R orderAllTimePage(ReportTimeDTO reportTimeDTO) {
IPage<Object> page = new Page<>();
page.setCurrent(reportTimeDTO.getPageNum());
page.setSize(reportTimeDTO.getPageSize());
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr()));
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr()));
reportTimeDTO.setDayTime(0);
QueryWrapper<ReportConfigOrderAllEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name","全部")
.eq("destination_warehouse_name","全部")
.eq("is_deleted",0);
ReportConfigOrderAllEntity orderAllEntity = orderAllService.getOne(queryWrapper);
if(!Objects.isNull(orderAllEntity)){
reportTimeDTO.setDayTime(orderAllEntity.getDayTime());
}
IPage<ReportOrderAllTimeVO> iPage = reportTimeMapper.orderAllTimePage(page,reportTimeDTO);
return R.data(iPage);
}
@Override
public void orderAllTimeExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response) {
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr()));
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr()));
reportTimeDTO.setDayTime(0);
QueryWrapper<ReportConfigOrderAllEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name","全部")
.eq("destination_warehouse_name","全部")
.eq("is_deleted",0);
ReportConfigOrderAllEntity orderAllEntity = orderAllService.getOne(queryWrapper);
if(!Objects.isNull(orderAllEntity)){
reportTimeDTO.setDayTime(orderAllEntity.getDayTime());
}
List<ReportConfigOrderAllEntity> list = reportTimeMapper.orderAllTimeExport(reportTimeDTO);
//导出ls
ExcelUtil.export(response, "订单整体时效报表导出", "订单整体时效报表导出", list, ReportConfigOrderAllEntity.class);
}
}

103
blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportOrderAllTimeVO.java

@ -0,0 +1,103 @@
package com.logpm.report.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
public class ReportOrderAllTimeVO implements Serializable {
@ExcelProperty(value = "品牌")
private String brand;
@ExcelProperty(value = "发货单位")
private String shipper;
@ExcelProperty(value = "收货单位")
private String consignee;
@ExcelProperty(value = "订单号")
private String orderCode;
@ExcelProperty(value = "运单号")
private String waybillNo;
@ExcelProperty(value = "订单件数")
private Integer totalNum;
@ExcelProperty(value = "始发仓")
private String departureWarehouseName;
@ExcelProperty(value = "目的仓")
private String destinationWarehouseName;
@ExcelProperty(value = "客户车次号")
private String trainNumber;
@ExcelProperty(value = "干线车次号")
private String loadCode;
@ExcelProperty(value = "创建时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
@ExcelProperty(value = "始发仓入库时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date startIncomingTime;
@ExcelProperty(value = "发车时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date startTime;
@ExcelProperty(value = "目的仓入库")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date endIncomingTime;
@ExcelProperty(value = "目的仓卸车确认时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date endUnloadTime;
@ExcelProperty(value = "开单时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date openTime;
@ExcelProperty(value = "配送计划时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date deliveryPlanTime;
@ExcelProperty(value = "签收时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date signTime;
@ExcelProperty(value = "复核时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date reviewTime;
@ExcelProperty(value = "是否上传签收单")
private String isUploadSignOrder;
@ExcelProperty(value = "是否上传摆放照")
private String isUploadPut;
@ExcelProperty(value = "标准时效")
private Integer dayTime;
@ExcelProperty(value = "实际时效")
private Integer realdayTime;
@ExcelProperty(value = "延期时效")
private Integer delayTime;
@ExcelProperty(value = "是否超时")
private String delayStatus;
@ExcelProperty(value = "签收状态")
private String signStatus;
@ExcelProperty(value = "签收件数")
private Integer signNum;
}
Loading…
Cancel
Save