Browse Source

Merge branch 'dev' into pre-production

pre-production
pref_mail@163.com 1 month ago
parent
commit
c6d81290d2
  1. 15
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java
  2. 2
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/mapper/DistrilbutionBillLadingMapper.xml
  3. 75
      blade-service/logpm-report/src/main/java/com/logpm/report/controller/ReportQualityController.java
  4. 126
      blade-service/logpm-report/src/main/java/com/logpm/report/controller/ReportTimeController.java
  5. 112
      blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportCheckTimeDetailDTO.java
  6. 19
      blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportQualityDTO.java
  7. 40
      blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportTimeDTO.java
  8. 5
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportQualityMapper.java
  9. 98
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportQuallityMapper.xml
  10. 9
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.java
  11. 1011
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportTimeMapper.xml
  12. 3
      blade-service/logpm-report/src/main/java/com/logpm/report/service/IReportQualityService.java
  13. 9
      blade-service/logpm-report/src/main/java/com/logpm/report/service/IReportTimeService.java
  14. 31
      blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportQualityServiceImpl.java
  15. 121
      blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportTimeServiceImpl.java
  16. 231
      blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportCheckWaybillTimeDetailVO.java
  17. 126
      blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportOpenTimeDetailVO.java
  18. 50
      blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportUpdateWaybillDetailVO.java
  19. 5
      blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportUpdateWaybillVO.java

15
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java

@ -3879,6 +3879,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
priceEntity = new BasicdataPriceEntity();
priceEntity.setClientId(clientBrandMap.get(priceExcel.getClient() + priceExcel.getBrand()).getClientId());
priceEntity.setBrandId(clientBrandMap.get(priceExcel.getClient() + priceExcel.getBrand()).getBrandId());
priceEntity.setEffectiveStatus(-1);
priceEntityMap.put(priceExcel.getClient() + priceExcel.getBrand(), priceEntity);
}
BasicdataPriceTemplateEntity templateEntity = templateEntityMap.get(priceExcel.getTemplateName());
@ -6690,8 +6691,8 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
if (CollUtil.isNotEmpty(priceEntities)) {
// 分组存入map中
priceEntities.forEach(priceEntity -> {
checkPriceMap.computeIfAbsent(clientMap.get(priceEntity.getClientId().toString()) + brandMap.get(priceEntity.getBrandId().toString()) + DateUtil.formatDate(priceEntity.getEffectiveTime()), k -> new ArrayList<>());
checkPriceMap.get(clientMap.get(priceEntity.getClientId().toString()) + brandMap.get(priceEntity.getBrandId().toString()) + DateUtil.formatDate(priceEntity.getEffectiveTime())).add(priceEntity);
checkPriceMap.computeIfAbsent(clientMap.get(priceEntity.getClientId().toString()) + brandMap.get(priceEntity.getBrandId().toString()), k -> new ArrayList<>());
checkPriceMap.get(clientMap.get(priceEntity.getClientId().toString()) + brandMap.get(priceEntity.getBrandId().toString())).add(priceEntity);
});
}
}
@ -6990,21 +6991,25 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
// 2 当前输入的时间范围不能跨越2个已有的价格体系
if (clientFlag && brandFlag) {
List<BasicdataPriceEntity> priceEntities = checkPriceEntityMap.get(priceExcel.getClient() + priceExcel.getBrand() + DateUtil.formatDate(startTime));
List<BasicdataPriceEntity> priceEntities = checkPriceEntityMap.get(priceExcel.getClient() + priceExcel.getBrand());
if (CollUtil.isNotEmpty(priceEntities)) {
Boolean flag = Boolean.TRUE;
for (BasicdataPriceEntity priceEntity : priceEntities) {
LocalDateTime now = DateUtil.date().toLocalDateTime();
LocalDateTime todayEnd = now.truncatedTo(ChronoUnit.DAYS).plusDays(1).minusSeconds(1);
if (startTime.isBefore(DateUtil.date(todayEnd))) {
// 开始时间在明天之前
// 开始时间 = 生效中的价格体系的开始时间
if (startTime.equals(priceEntity.getEffectiveTime())) {
if (startTime.equals(priceEntity.getEffectiveTime()) && ObjectUtil.equal(priceEntity.getEffectiveStatus(), 0)) {
// 把存在交集的价格体系放到内存中供后续使用
if (!ObjectUtil.isAllEmpty(priceExcel.getClient(), priceExcel.getBrand())) {
priceEntityMap.put(priceExcel.getClient() + priceExcel.getBrand(), priceEntity);
}
} else {
rowMessage.append("已经存在生效时间小于当前时间的数据;");
if(flag){
flag = Boolean.FALSE;
rowMessage.append("已经存在生效时间小于当前时间的数据;");
}
}
} else {
// 开始时间在明天之后 判断开始时间是否存在,存在则修改,不存在则新增

2
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/mapper/DistrilbutionBillLadingMapper.xml

@ -359,7 +359,7 @@
group_concat( DISTINCT ldsl.brand_name ) AS brand
FROM
logpm_distrilbution_bill_lading bbb
LEFT JOIN logpm_distribution_delivery_d etails lddd ON lddd.bill_lading_id = bbb.id
LEFT JOIN logpm_distribution_delivery_details lddd ON lddd.bill_lading_id = bbb.id
AND lddd.is_deleted = 0
LEFT JOIN logpm_distribution_stock_list ldsl ON lddd.stock_list_id = ldsl.id
LEFT JOIN logpm_basicdata_client lbc ON ldsl.market_id = lbc.id

75
blade-service/logpm-report/src/main/java/com/logpm/report/controller/ReportQualityController.java

@ -2,19 +2,23 @@ package com.logpm.report.controller;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import com.logpm.report.dto.ReportQualityDTO;
import com.logpm.report.dto.ReportTimeDTO;
import com.logpm.report.service.IReportQualityService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.exception.CustomerException;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.StringUtil;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletResponse;
import java.util.Objects;
@Slf4j
@RestController
@AllArgsConstructor
@RequestMapping("/reportQuality")
@ -38,6 +42,75 @@ public class ReportQualityController {
reportQualityService.updateWaybillQualityExport(reportQualityDTO,response);
}
@PostMapping("/updateWaybillQualityDetailPage")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "改单质量明细报表", notes = "改单质量明细报表")
public R updateWaybillQualityDetailPage(@RequestBody ReportQualityDTO reportQualityDTO) {
String method = "##########updateWaybillQualityDetailPage: ";
String brand = reportQualityDTO.getBrand();
String businessLine = reportQualityDTO.getBusinessLine();
Long departureWarehouseId = reportQualityDTO.getDepartureWarehouseId();
Long destinationWarehouseId = reportQualityDTO.getDestinationWarehouseId();
if(StringUtil.isBlank(brand)){
log.warn(method+"品牌不能为空 {}",brand);
return R.fail(405,"品牌不能为空");
}
if(StringUtil.isBlank(businessLine)){
log.warn(method+"事业线不能为空 {}",businessLine);
return R.fail(405,"事业线不能为空");
}
if(Objects.isNull(departureWarehouseId)){
log.warn(method+"始发仓id不能为空 {}",departureWarehouseId);
return R.fail(405,"始发仓id不能为空");
}
if(Objects.isNull(destinationWarehouseId)){
log.warn(method+"目的仓id不能为空 {}",destinationWarehouseId);
return R.fail(405,"目的仓id不能为空");
}
return reportQualityService.updateWaybillQualityDetailPage(reportQualityDTO);
}
@PostMapping("/updateWaybillQualityDetailExport")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "改单质量明细报表导出", notes = "改单质量明细报表导出")
public void updateWaybillQualityDetailExport(@RequestBody ReportQualityDTO reportQualityDTO, HttpServletResponse response) {
String method = "##########updateWaybillQualityDetailExport: ";
String brand = reportQualityDTO.getBrand();
String businessLine = reportQualityDTO.getBusinessLine();
Long departureWarehouseId = reportQualityDTO.getDepartureWarehouseId();
Long destinationWarehouseId = reportQualityDTO.getDestinationWarehouseId();
if(StringUtil.isBlank(brand)){
log.warn(method+"品牌不能为空 {}",brand);
throw new CustomerException(405,"品牌不能为空");
}
if(StringUtil.isBlank(businessLine)){
log.warn(method+"事业线不能为空 {}",businessLine);
throw new CustomerException(405,"事业线不能为空");
}
if(Objects.isNull(departureWarehouseId)){
log.warn(method+"始发仓id不能为空 {}",departureWarehouseId);
throw new CustomerException(405,"始发仓id不能为空");
}
if(Objects.isNull(destinationWarehouseId)){
log.warn(method+"目的仓id不能为空 {}",destinationWarehouseId);
throw new CustomerException(405,"目的仓id不能为空");
}
reportQualityService.updateWaybillQualityDetailExport(reportQualityDTO,response);
}
}

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

@ -1,17 +1,26 @@
package com.logpm.report.controller;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import com.logpm.report.dto.ReportCheckTimeDetailDTO;
import com.logpm.report.dto.ReportTimeDTO;
import com.logpm.report.service.IReportTimeService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.exception.CustomerException;
import org.springblade.core.boot.ctrl.BladeController;
import org.springblade.core.tool.api.R;
import org.springframework.web.bind.annotation.*;
import org.springblade.core.tool.utils.StringUtil;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletResponse;
import java.util.Objects;
@Slf4j
@RestController
@AllArgsConstructor
@RequestMapping("/reportTime")
@ -36,6 +45,56 @@ public class ReportTimeController extends BladeController {
reportTimeService.openTimeExport(reportTimeDTO,response);
}
@PostMapping("/openTimeDetailPage")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "开单时效明细报表", notes = "开单时效明细报表")
public R openTimeDetailPage(@RequestBody ReportTimeDTO reportTimeDTO) {
String method = "###########openTimeDetailPage: ";
String brand = reportTimeDTO.getBrand();
String businessLine = reportTimeDTO.getBusinessLine();
Long warehouseId = reportTimeDTO.getWarehouseId();
if(StringUtil.isBlank(brand)){
log.warn(method+"品牌不能为空 {}",brand);
return R.fail(405,"品牌不能为空");
}
if(StringUtil.isBlank(businessLine)){
log.warn(method+"事业线不能为空 {}",businessLine);
return R.fail(405,"事业线不能为空");
}
if(Objects.isNull(warehouseId)){
log.warn(method+"仓库id不能为空 {}",warehouseId);
return R.fail(405,"仓库id不能为空");
}
return reportTimeService.openTimeDetailPage(reportTimeDTO);
}
@PostMapping("/openTimeDetailExport")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "开单时效明细报表导出", notes = "开单时效明细报表导出")
public void openTimeDetailExport(@RequestBody ReportTimeDTO reportTimeDTO, HttpServletResponse response) {
String method = "###########openTimeDetailExport: ";
String brand = reportTimeDTO.getBrand();
String businessLine = reportTimeDTO.getBusinessLine();
Long warehouseId = reportTimeDTO.getWarehouseId();
if(StringUtil.isBlank(brand)){
log.warn(method+"品牌不能为空 {}",brand);
throw new CustomerException(405,"品牌不能为空");
}
if(StringUtil.isBlank(businessLine)){
log.warn(method+"事业线不能为空 {}",businessLine);
throw new CustomerException(405,"事业线不能为空");
}
if(Objects.isNull(warehouseId)){
log.warn(method+"仓库id不能为空 {}",warehouseId);
throw new CustomerException(405,"仓库id不能为空");
}
reportTimeService.openTimeDetailExport(reportTimeDTO,response);
}
//-----------------------审单时效------------------------
@ -53,6 +112,71 @@ public class ReportTimeController extends BladeController {
reportTimeService.checkWaybillTimeExport(reportTimeDTO,response);
}
@PostMapping("/checkWaybillTimeDetailPage")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "审单时效明细报表", notes = "审单时效明细报表")
public R checkWaybillTimeDetailPage(@RequestBody ReportCheckTimeDetailDTO reportCheckTimeDetailDTO) {
String method = "###########checkWaybillTimeDetailPage: ";
String brand = reportCheckTimeDetailDTO.getBrand();
String businessLine = reportCheckTimeDetailDTO.getBusinessLine();
Long departureWarehouseId = reportCheckTimeDetailDTO.getDepartureWarehouseId();
Long destinationWarehouseId = reportCheckTimeDetailDTO.getDestinationWarehouseId();
if(StringUtil.isBlank(brand)){
log.warn(method+"品牌不能为空 {}",brand);
return R.fail(405,"品牌不能为空");
}
if(StringUtil.isBlank(businessLine)){
log.warn(method+"事业线不能为空 {}",businessLine);
return R.fail(405,"事业线不能为空");
}
if(Objects.isNull(departureWarehouseId)){
log.warn(method+"始发仓id不能为空 {}",departureWarehouseId);
return R.fail(405,"始发仓id不能为空");
}
if(Objects.isNull(destinationWarehouseId)){
log.warn(method+"目的仓id不能为空 {}",destinationWarehouseId);
return R.fail(405,"目的仓id不能为空");
}
return reportTimeService.checkWaybillTimeDetailPage(reportCheckTimeDetailDTO);
}
@PostMapping("/checkWaybillTimeDetailExport")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "审单时效明细报表导出", notes = "审单时效明细报表导出")
public void checkWaybillTimeDetailExport(@RequestBody ReportCheckTimeDetailDTO reportCheckTimeDetailDTO, HttpServletResponse response) {
String method = "###########checkWaybillTimeDetailExport: ";
String brand = reportCheckTimeDetailDTO.getBrand();
String businessLine = reportCheckTimeDetailDTO.getBusinessLine();
Long departureWarehouseId = reportCheckTimeDetailDTO.getDepartureWarehouseId();
Long destinationWarehouseId = reportCheckTimeDetailDTO.getDestinationWarehouseId();
if(StringUtil.isBlank(brand)){
log.warn(method+"品牌不能为空 {}",brand);
throw new CustomerException(405,"品牌不能为空");
}
if(StringUtil.isBlank(businessLine)){
log.warn(method+"事业线不能为空 {}",businessLine);
throw new CustomerException(405,"事业线不能为空");
}
if(Objects.isNull(departureWarehouseId)){
log.warn(method+"始发仓id不能为空 {}",departureWarehouseId);
throw new CustomerException(405,"始发仓id不能为空");
}
if(Objects.isNull(destinationWarehouseId)){
log.warn(method+"目的仓id不能为空 {}",destinationWarehouseId);
throw new CustomerException(405,"目的仓id不能为空");
}
reportTimeService.checkWaybillTimeDetailExport(reportCheckTimeDetailDTO,response);
}
//-----------------------订制品发运时效------------------------

112
blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportCheckTimeDetailDTO.java

@ -0,0 +1,112 @@
package com.logpm.report.dto;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
@Data
public class ReportCheckTimeDetailDTO implements Serializable {
private Integer hoursTime;
private String businessLine;
private Long departureWarehouseId;
private Long destinationWarehouseId;
private List<Long> departureWarehouseIds;
private List<Long> destinationWarehouseIds;
private List<Long> warehouseIds;
private Integer pageNum;
private Integer pageSize;
private Long warehouseId;
private List<String> waybillNoList;
private String documentMakingTimeStartStr;
private String documentMakingTimeEndStr;
private Date documentMakingTimeStartDate;
private Date documentMakingTimeEndDate;
private String createTimeStartStr;
private String createTimeEndStr;
private Date createTimeStartDate;
private Date createTimeEndDate;
private String abolishTimeStartStr;
private String abolishTimeEndStr;
private Date abolishTimeStartDate;
private Date abolishTimeEndDate;
private String freezeTimeStartStr;
private String freezeTimeEndStr;
private Date freezeTimeStartDate;
private Date freezeTimeEndDate;
private String checkTimeStartStr;
private String checkTimeEndStr;
private Date checkTimeStartDate;
private Date checkTimeEndDate;
private String ids;
/**
* 付款状态
*/
private String payStatus;
/**
* 结算状态
*/
private String settlementStatus;
private String waybillNo;
private String orderNo;
private String destinationWarehouseName;
private String departureWarehouseName;
private String customerTrain;
private String brand;
private String shipper;
private String shipperName;
private String shipperMobile;
private String consignee;
private String consigneeName;
private String consigneeMobile;
private String destination;
private String completeDestination;
private String departure;
private String completeDeparture;
private Integer payType;
private Integer payWay;
private Integer deliveryWay;
private Integer urgency;
private Integer serviceType;
private Integer transportType;
private Integer waybillStatus;
private Integer checkStatus;
private Integer pickupCompleteOrNot;
private Integer trunklineCompleteOrNot;
private String agent;
private String goodsName;
private Integer freezeStatus;
private Integer abolishStatus;
private String remark;
private String consigneeAddress;
private Integer overTimeStatus; // 0未超时 1超时
// 总运单数 1
// 已审单数 2
// 未审单数 3
// 准时审单数 4
private Integer checkDetailType;
}

19
blade-service/logpm-report/src/main/java/com/logpm/report/dto/ReportQualityDTO.java

@ -24,5 +24,24 @@ public class ReportQualityDTO implements Serializable {
private Date startTime;
private Date endTime;
private String applyTimeStartStr;
private String applyTimeEndStr;
private Date applyTimeStart;
private Date applyTimeEnd;
private String brand;
private String businessLine;
private Long departureWarehouseId;
private Long destinationWarehouseId;
// 改单单数 1
// 改单次数 2
// 发车前修改数 3
// 人为操作错误 4
// 财务修改数 5
// 商家调整数 6
// 业务调整数 7
private Integer updateWaybillDetailType;
}

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

@ -32,9 +32,14 @@ public class ReportTimeDTO implements Serializable {
private String waybillCode;
private String brand;
private String businessLine;
private Long warehouseId;
private Long departureWarehouseId;
private Long destinationWarehouseId;
private String shipper;
private String consignee;
private String dealerName;
private String departureWarehouseName;
private String destinationWarehouseName;
private String trainNumber;
@ -49,4 +54,39 @@ public class ReportTimeDTO implements Serializable {
private Date openTimeStart;
private Date openTimeEnd;
private String documentMakingTimeStartStr;
private String documentMakingTimeEndStr;
private Date documentMakingTimeStart;
private Date documentMakingTimeEnd;
//总单数 1
//未开单已冻结数 2
//应开单数 3
//已开单数 4
//未开单数 5
//准时开单数 6
//未开单未超时数 7
//未开单超时数 8
//超期开单数 9
private Integer openDetailType;
private String senderFactory;
private String storeName;
private String siteName;
private String legacyStatus;
private String customerName;
private String customerPhone;
private String customerAddress;
private String dealerCode;
private String serviceNum;
private String freezeStatus;
private String waybillStatus;
private Integer overTimeStatus; // 0未超时 1超时
}

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

@ -2,6 +2,7 @@ package com.logpm.report.mapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.report.dto.ReportQualityDTO;
import com.logpm.report.vo.ReportUpdateWaybillDetailVO;
import com.logpm.report.vo.ReportUpdateWaybillVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@ -14,4 +15,8 @@ public interface ReportQualityMapper {
IPage<ReportUpdateWaybillVO> updateWaybillQualityPage(IPage<Object> page, @Param("param") ReportQualityDTO reportQualityDTO);
List<ReportUpdateWaybillVO> updateWaybillQualityExport(@Param("param") ReportQualityDTO reportQualityDTO);
IPage<ReportUpdateWaybillDetailVO> updateWaybillQualityDetailPage(IPage<Object> page, @Param("param") ReportQualityDTO reportQualityDTO);
List<ReportUpdateWaybillDetailVO> updateWaybillQualityDetailExport(@Param("param") ReportQualityDTO reportQualityDTO);
}

98
blade-service/logpm-report/src/main/java/com/logpm/report/mapper/ReportQuallityMapper.xml

@ -4,7 +4,9 @@
<select id="updateWaybillQualityPage" resultType="com.logpm.report.vo.ReportUpdateWaybillVO">
select waw.business_line businessLine,
lww.departure_warehouse_id departureWarehouseId,
lww.departure_warehouse_name departureWarehouseName,
lww.destination_warehouse_id destinationWarehouseId,
lww.destination_warehouse_name destinationWarehouseName,
lww.brand brand,
count(DISTINCT lww.id) totalNum,
@ -58,7 +60,9 @@
and lww.create_time &lt;= #{param.endTime}
</if>
group by waw.business_line,
lww.departure_warehouse_id,
lww.departure_warehouse_name,
lww.destination_warehouse_id,
lww.destination_warehouse_name,
lww.brand
</select>
@ -125,4 +129,98 @@
lww.brand
</select>
<select id="updateWaybillQualityDetailPage" resultType="com.logpm.report.vo.ReportUpdateWaybillDetailVO">
select lww.waybill_no waybillNo,
lww.departure_warehouse_id departureWarehouseId,
lww.departure_warehouse_name departureWarehouseName,
lww.destination_warehouse_id destinationWarehouseId,
lww.destination_warehouse_name destinationWarehouseName,
lww.brand brand,
lww.waybill_status waybillStatus,
lww.waybill_type waybillType,
lww.agent agent,
lww.create_time createTime,
ltwt.create_time applyTime,
ltwt.warehouse_name warehouseName,
ltwt.refer updateReson,
ltwt.operation_remark updateContent,
ltwt.check_time checkUpdateTime
from logpm_warehouse_waybill lww
left join logpm_warehouse_warehouse waw on waw.id = lww.destination_warehouse_id
left join logpm_trunkline_waybill_track ltwt on ltwt.waybill_id = lww.id and ltwt.track_type = '888'
where 1=1
and lww.create_time > '2024-10-22 00:00:00'
and waw.business_line is not null
and waw.business_line = #{param.businessLine}
and lww.departure_warehouse_id = #{param.departureWarehouseId}
and lww.destination_warehouse_id = #{param.destinationWarehouseId}
and lww.brand = #{param.brand}
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 3">
and ltwt.refer = '发车前修改'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 4">
and ltwt.refer = '人为操作错误'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 5">
and ltwt.refer = '财务修改'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 6">
and ltwt.refer = '商家要求'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 7">
and ltwt.refer = '业务调整'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 2">
group by lww.id
</if>
</select>
<select id="updateWaybillQualityDetailExport" resultType="com.logpm.report.vo.ReportUpdateWaybillDetailVO">
select lww.waybill_no waybillNo,
lww.departure_warehouse_id departureWarehouseId,
lww.departure_warehouse_name departureWarehouseName,
lww.destination_warehouse_id destinationWarehouseId,
lww.destination_warehouse_name destinationWarehouseName,
lww.brand brand,
lww.waybill_status waybillStatus,
lww.waybill_type waybillType,
lww.agent agent,
lww.create_time createTime,
ltwt.create_time applyTime,
ltwt.warehouse_name warehouseName,
ltwt.refer updateReson,
ltwt.operation_remark updateContent,
ltwt.check_time checkUpdateTime
from logpm_warehouse_waybill lww
left join logpm_warehouse_warehouse waw on waw.id = lww.destination_warehouse_id
left join logpm_trunkline_waybill_track ltwt on ltwt.waybill_id = lww.id and ltwt.track_type = '888'
where 1=1
and lww.create_time > '2024-10-22 00:00:00'
and waw.business_line is not null
and waw.business_line = #{param.businessLine}
and lww.departure_warehouse_id = #{param.departureWarehouseId}
and lww.destination_warehouse_id = #{param.destinationWarehouseId}
and lww.brand = #{param.brand}
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 3">
and ltwt.refer = '发车前修改'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 4">
and ltwt.refer = '人为操作错误'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 5">
and ltwt.refer = '财务修改'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 6">
and ltwt.refer = '商家要求'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 7">
and ltwt.refer = '业务调整'
</if>
<if test="param.updateWaybillDetailType != null and param.updateWaybillDetailType != 2">
group by lww.id
</if>
</select>
</mapper>

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

@ -1,6 +1,7 @@
package com.logpm.report.mapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.report.dto.ReportCheckTimeDetailDTO;
import com.logpm.report.dto.ReportTimeDTO;
import com.logpm.report.vo.*;
import org.apache.ibatis.annotations.Mapper;
@ -47,4 +48,12 @@ public interface ReportTimeMapper {
IPage<ReportOrderAllTimeVO> orderAllTimePage(IPage<Object> page, @Param("param") ReportTimeDTO reportTimeDTO);
List<ReportOrderAllTimeVO> orderAllTimeExport(@Param("param") ReportTimeDTO reportTimeDTO);
IPage<ReportOpenTimeDetailVO> openTimeDetailPage(IPage<Object> page, @Param("param") ReportTimeDTO reportTimeDTO);
List<ReportOpenTimeDetailVO> openTimeDetailExport(@Param("param") ReportTimeDTO reportTimeDTO);
IPage<ReportCheckWaybillTimeDetailVO> checkWaybillTimeDetailPage(IPage<Object> page, @Param("param") ReportCheckTimeDetailDTO reportCheckTimeDetailDTO);
List<ReportCheckWaybillTimeDetailVO> checkWaybillTimeDetailExport(@Param("param") ReportCheckTimeDetailDTO reportCheckTimeDetailDTO);
}

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

File diff suppressed because it is too large Load Diff

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

@ -10,4 +10,7 @@ public interface IReportQualityService {
void updateWaybillQualityExport(ReportQualityDTO reportQualityDTO, HttpServletResponse response);
R updateWaybillQualityDetailPage(ReportQualityDTO reportQualityDTO);
void updateWaybillQualityDetailExport(ReportQualityDTO reportQualityDTO, HttpServletResponse response);
}

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

@ -1,5 +1,6 @@
package com.logpm.report.service;
import com.logpm.report.dto.ReportCheckTimeDetailDTO;
import com.logpm.report.dto.ReportTimeDTO;
import org.springblade.core.tool.api.R;
@ -43,4 +44,12 @@ public interface IReportTimeService {
R orderAllTimePage(ReportTimeDTO reportTimeDTO);
void orderAllTimeExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response);
R openTimeDetailPage(ReportTimeDTO reportTimeDTO);
void openTimeDetailExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response);
R checkWaybillTimeDetailPage(ReportCheckTimeDetailDTO reportCheckTimeDetailDTO);
void checkWaybillTimeDetailExport(ReportCheckTimeDetailDTO reportCheckTimeDetailDTO, HttpServletResponse response);
}

31
blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportQualityServiceImpl.java

@ -5,7 +5,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.logpm.report.dto.ReportQualityDTO;
import com.logpm.report.mapper.ReportQualityMapper;
import com.logpm.report.service.IReportQualityService;
import com.logpm.report.vo.ReportCheckWaybillTimeVO;
import com.logpm.report.vo.ReportUpdateWaybillDetailVO;
import com.logpm.report.vo.ReportUpdateWaybillVO;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
@ -50,4 +50,33 @@ public class ReportQualityServiceImpl implements IReportQualityService {
ExcelUtil.export(response, "改单质量报表导出", "改单质量报表导出", list, ReportUpdateWaybillVO.class);
}
@Override
public R updateWaybillQualityDetailPage(ReportQualityDTO reportQualityDTO) {
IPage<Object> page = new Page<>();
page.setCurrent(reportQualityDTO.getPageNum());
page.setSize(reportQualityDTO.getPageSize());
reportQualityDTO.setStartTime(CommonUtil.getStartByDateStr(reportQualityDTO.getStartTimeStr()));
reportQualityDTO.setEndTime(CommonUtil.getEndByDateStr(reportQualityDTO.getEndTimeStr()));
reportQualityDTO.setApplyTimeStart(CommonUtil.getStartByDateStr(reportQualityDTO.getApplyTimeStartStr()));
reportQualityDTO.setApplyTimeEnd(CommonUtil.getEndByDateStr(reportQualityDTO.getApplyTimeEndStr()));
IPage<ReportUpdateWaybillDetailVO> iPage = reportQualityMapper.updateWaybillQualityDetailPage(page,reportQualityDTO);
return R.data(iPage);
}
@Override
public void updateWaybillQualityDetailExport(ReportQualityDTO reportQualityDTO, HttpServletResponse response) {
reportQualityDTO.setStartTime(CommonUtil.getStartByDateStr(reportQualityDTO.getStartTimeStr()));
reportQualityDTO.setEndTime(CommonUtil.getEndByDateStr(reportQualityDTO.getEndTimeStr()));
reportQualityDTO.setApplyTimeStart(CommonUtil.getStartByDateStr(reportQualityDTO.getApplyTimeStartStr()));
reportQualityDTO.setApplyTimeEnd(CommonUtil.getEndByDateStr(reportQualityDTO.getApplyTimeEndStr()));
List<ReportUpdateWaybillDetailVO> list = reportQualityMapper.updateWaybillQualityDetailExport(reportQualityDTO);
//导出ls
ExcelUtil.export(response, "改单质量明细报表导出", "改单质量明细报表导出", list, ReportUpdateWaybillDetailVO.class);
}
}

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

@ -3,6 +3,7 @@ package com.logpm.report.service.impl;
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.ReportCheckTimeDetailDTO;
import com.logpm.report.dto.ReportTimeDTO;
import com.logpm.report.entity.*;
import com.logpm.report.mapper.ReportTimeMapper;
@ -484,4 +485,124 @@ public class ReportTimeServiceImpl implements IReportTimeService {
//导出ls
ExcelUtil.export(response, "订单整体时效报表导出", "订单整体时效报表导出", list, ReportOrderAllTimeVO.class);
}
@Override
public R openTimeDetailPage(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.setDocumentMakingTimeStart(CommonUtil.getStartByDateStr(reportTimeDTO.getDocumentMakingTimeStartStr()));
reportTimeDTO.setDocumentMakingTimeEnd(CommonUtil.getEndByDateStr(reportTimeDTO.getDocumentMakingTimeEndStr()));
reportTimeDTO.setHoursTime(72);
QueryWrapper<ReportConfigAdvanceDetailOpenEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("warehouse_name","全部")
.eq("brand","全部")
.eq("is_deleted",0);
ReportConfigAdvanceDetailOpenEntity advanceDetailOpenEntity = advanceDetailOpenService.getOne(queryWrapper);
if(!Objects.isNull(advanceDetailOpenEntity)){
reportTimeDTO.setHoursTime(advanceDetailOpenEntity.getHoursTime());
}
IPage<ReportOpenTimeDetailVO> iPage = reportTimeMapper.openTimeDetailPage(page,reportTimeDTO);
return R.data(iPage);
}
@Override
public void openTimeDetailExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response) {
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr()));
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr()));
reportTimeDTO.setDocumentMakingTimeStart(CommonUtil.getStartByDateStr(reportTimeDTO.getDocumentMakingTimeStartStr()));
reportTimeDTO.setDocumentMakingTimeEnd(CommonUtil.getEndByDateStr(reportTimeDTO.getDocumentMakingTimeEndStr()));
reportTimeDTO.setHoursTime(72);
QueryWrapper<ReportConfigAdvanceDetailOpenEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("warehouse_name","全部")
.eq("brand","全部")
.eq("is_deleted",0);
ReportConfigAdvanceDetailOpenEntity advanceDetailOpenEntity = advanceDetailOpenService.getOne(queryWrapper);
if(!Objects.isNull(advanceDetailOpenEntity)){
reportTimeDTO.setHoursTime(advanceDetailOpenEntity.getHoursTime());
}
List<ReportOpenTimeDetailVO> list = reportTimeMapper.openTimeDetailExport(reportTimeDTO);
//导出ls
ExcelUtil.export(response, "开单及时率明细报表导出", "开单及时率明细报表导出", list, ReportOpenTimeDetailVO.class);
}
@Override
public R checkWaybillTimeDetailPage(ReportCheckTimeDetailDTO reportCheckTimeDetailDTO) {
IPage<Object> page = new Page<>();
page.setCurrent(reportCheckTimeDetailDTO.getPageNum());
page.setSize(reportCheckTimeDetailDTO.getPageSize());
reportCheckTimeDetailDTO.setDocumentMakingTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getDocumentMakingTimeStartStr()));
reportCheckTimeDetailDTO.setDocumentMakingTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getDocumentMakingTimeEndStr()));
reportCheckTimeDetailDTO.setCreateTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getCreateTimeStartStr()));
reportCheckTimeDetailDTO.setCreateTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getCreateTimeEndStr()));
reportCheckTimeDetailDTO.setAbolishTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getAbolishTimeStartStr()));
reportCheckTimeDetailDTO.setAbolishTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getAbolishTimeEndStr()));
reportCheckTimeDetailDTO.setFreezeTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getFreezeTimeStartStr()));
reportCheckTimeDetailDTO.setFreezeTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getFreezeTimeEndStr()));
reportCheckTimeDetailDTO.setCheckTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getCheckTimeStartStr()));
reportCheckTimeDetailDTO.setCheckTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getCheckTimeEndStr()));
reportCheckTimeDetailDTO.setHoursTime(72);
QueryWrapper<ReportConfigCheckWaybillEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name","全部")
.eq("destination_warehouse_name","全部")
.eq("brand","全部")
.eq("is_deleted",0);
ReportConfigCheckWaybillEntity checkWaybillEntity = checkWaybillService.getOne(queryWrapper);
if(!Objects.isNull(checkWaybillEntity)){
reportCheckTimeDetailDTO.setHoursTime(checkWaybillEntity.getHoursTime());
}
IPage<ReportCheckWaybillTimeDetailVO> iPage = reportTimeMapper.checkWaybillTimeDetailPage(page,reportCheckTimeDetailDTO);
return R.data(iPage);
}
@Override
public void checkWaybillTimeDetailExport(ReportCheckTimeDetailDTO reportCheckTimeDetailDTO, HttpServletResponse response) {
reportCheckTimeDetailDTO.setDocumentMakingTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getDocumentMakingTimeStartStr()));
reportCheckTimeDetailDTO.setDocumentMakingTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getDocumentMakingTimeEndStr()));
reportCheckTimeDetailDTO.setCreateTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getCreateTimeStartStr()));
reportCheckTimeDetailDTO.setCreateTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getCreateTimeEndStr()));
reportCheckTimeDetailDTO.setAbolishTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getAbolishTimeStartStr()));
reportCheckTimeDetailDTO.setAbolishTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getAbolishTimeEndStr()));
reportCheckTimeDetailDTO.setFreezeTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getFreezeTimeStartStr()));
reportCheckTimeDetailDTO.setFreezeTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getFreezeTimeEndStr()));
reportCheckTimeDetailDTO.setCheckTimeStartDate(CommonUtil.getStartByDateStr(reportCheckTimeDetailDTO.getCheckTimeStartStr()));
reportCheckTimeDetailDTO.setCheckTimeEndDate(CommonUtil.getEndByDateStr(reportCheckTimeDetailDTO.getCheckTimeEndStr()));
reportCheckTimeDetailDTO.setHoursTime(72);
QueryWrapper<ReportConfigCheckWaybillEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("departure_warehouse_name","全部")
.eq("destination_warehouse_name","全部")
.eq("brand","全部")
.eq("is_deleted",0);
ReportConfigCheckWaybillEntity checkWaybillEntity = checkWaybillService.getOne(queryWrapper);
if(!Objects.isNull(checkWaybillEntity)){
reportCheckTimeDetailDTO.setHoursTime(checkWaybillEntity.getHoursTime());
}
List<ReportCheckWaybillTimeDetailVO> list = reportTimeMapper.checkWaybillTimeDetailExport(reportCheckTimeDetailDTO);
//导出ls
ExcelUtil.export(response, "审单及时率明细报表导出", "审单及时率明细报表导出", list, ReportCheckWaybillTimeDetailVO.class);
}
}

231
blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportCheckWaybillTimeDetailVO.java

@ -0,0 +1,231 @@
package com.logpm.report.vo;
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class ReportCheckWaybillTimeDetailVO implements Serializable {
@ExcelIgnore
private Long waybillId;
@ExcelProperty(value = "品牌")
private String brand;
@ExcelProperty(value = "运单号")
private String waybillNo;
@ExcelProperty(value = "订单号")
private String orderNo;
@ExcelProperty(value = "收货单位")
private String consignee;
@ExcelProperty(value = "收货人")
private String consigneeName;
@ExcelProperty(value = "收货人电话")
private String consigneeMobile;
@ExcelProperty(value = "收货人地址")
private String consigneeAddress;
@ExcelProperty(value = "发货单位")
private String shipper;
@ExcelProperty(value = "发货人")
private String shipperName;
@ExcelProperty(value = "发货人电话")
private String shipperMobile;
@ExcelProperty(value = "发货地址")
private String shipperAddress;
@ExcelProperty(value = "到站")
private String destination;
@ExcelProperty(value = "完整到站")
private String completeDestination;
@ExcelProperty(value = "发站")
private String departure;
@ExcelProperty(value = "完整发站")
private String completeDeparture;
@ExcelProperty(value = "发站仓")
private String departureWarehouseName;
@ExcelProperty(value = "目的仓")
private String destinationWarehouseName;
@ExcelProperty(value = "目的仓")
private String deliveryWay;
@ExcelProperty(value = "车次号")
private String customerTrain;
@ExcelProperty(value = "备注")
private String remark;
@ExcelProperty(value = "结算方")
private String cleanObjType;
@ExcelProperty(value = "支付方式")
private String payType;
@ExcelProperty(value = "付款方式")
private String payWay;
@ExcelProperty(value = "现付")
private BigDecimal nowPay;
@ExcelProperty(value = "到付")
private BigDecimal arrivePay;
@ExcelProperty(value = "回付")
private BigDecimal backPay;
@ExcelProperty(value = "月结")
private BigDecimal monthPay;
@ExcelProperty(value = "服务类型")
private String serviceType;
@ExcelProperty(value = "是否改单")
private String updateStatus;
@ExcelProperty(value = "是否审单")
private String checkStatus;
@ExcelProperty(value = "审核原因")
private String checkReson;
@ExcelProperty(value = "审核备注")
private String checkRemark;
@ExcelProperty(value = "审核人")
private String checkUserName;
@ExcelProperty(value = "审核时间")
private Date checkTime;
@ExcelProperty(value = "取消审核备注")
private String cancleCheckRemark;
@ExcelProperty(value = "取消审核人")
private String cancleCheckUserName;
@ExcelProperty(value = "取消审核时间")
private Date cancleCheckTime;
@ExcelProperty(value = "运单状态")
private String waybillStatus;
@ExcelProperty(value = "开单时间")
private Date openTime;
@ExcelProperty(value = "货物品类")
private String goodsName;
@ExcelProperty(value = "总数量")
private Integer totalCount;
@ExcelProperty(value = "总重量")
private BigDecimal totalWeight;
@ExcelProperty(value = "总体积")
private BigDecimal totalVolume;
@ExcelProperty(value = "总费用")
private BigDecimal totalFee;
@ExcelProperty(value = "开单费用")
private BigDecimal systemTotalFee;
@ExcelProperty(value = "提货费")
private BigDecimal pickupFee;
@ExcelProperty(value = "运费")
private BigDecimal freightFee;
@ExcelProperty(value = "仓库服务费合计")
private BigDecimal warehouseServiceFee;
@ExcelProperty(value = "仓储费")
private BigDecimal warehouseFee;
@ExcelProperty(value = "仓储管理费")
private BigDecimal warehouseManagementFee;
@ExcelProperty(value = "仓储分拣费")
private BigDecimal warehouseSortingFee;
@ExcelProperty(value = "仓储操作费")
private BigDecimal warehouseOprationFee;
@ExcelProperty(value = "配送服务费合计")
private BigDecimal deliveryServiceFee;
@ExcelProperty(value = "配送费")
private BigDecimal deliveryFee;
@ExcelProperty(value = "配送装卸费")
private BigDecimal deliveryHandlingFee;
@ExcelProperty(value = "配送分货费")
private BigDecimal deliverySortingFee;
@ExcelProperty(value = "配送上楼费")
private BigDecimal deliveryUpfloorFee;
@ExcelProperty(value = "配送平移费")
private BigDecimal deliveryMoveFee;
@ExcelProperty(value = "配送公里数")
private BigDecimal deliveryLine;
@ExcelProperty(value = "超区公里费")
private BigDecimal deliveryLineFee;
@ExcelProperty(value = "其他费用")
private BigDecimal otherFee;
@ExcelProperty(value = "安装费")
private BigDecimal installFee;
@ExcelProperty(value = "保价费")
private BigDecimal insuranceFee;
@ExcelProperty(value = "申明价值")
private BigDecimal claimingValue;
@ExcelProperty(value = "三方操作费")
private BigDecimal thirdOperationFee;
@ExcelProperty(value = "回扣")
private BigDecimal rebate;
@ExcelProperty(value = "收款状态")
private String payStatus;
@ExcelProperty(value = "结算状态")
private String settlementStatus;
@ExcelProperty(value = "签收数量")
private Integer signNum;
@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 deliveryTime;
@ExcelProperty(value = "签收人")
private String signUserName;
@ExcelProperty(value = "配送司机")
private String deliveryDriverName;
@ExcelProperty(value = "品类数量")
private String goodsTypeNum;
@ExcelProperty(value = "品类开单运费")
private String goodsTypePrice;
@ExcelProperty(value = "品类系统配送单价")
private String goodsTypeDeliveryPrice;
@ExcelProperty(value = "品类系统提货单价")
private String goodsTypePickupPrice;
@ExcelProperty(value = "品类系统运费单价")
private String goodsTypeFreightPrice;
@ExcelProperty(value = "品类数")
private Integer goodsTypeCount;
@ExcelProperty(value = "实际审单时效")
private String checkHours;
@ExcelProperty(value = "标准审单时效")
private String hoursTime;
@ExcelProperty(value = "是否超时")
private String isOverTime;
}

126
blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportOpenTimeDetailVO.java

@ -0,0 +1,126 @@
package com.logpm.report.vo;
import com.alibaba.excel.annotation.ExcelIgnore;
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 ReportOpenTimeDetailVO implements Serializable {
@ExcelProperty(value = "运单号")
private String waybillNo;
@ExcelProperty(value = "订单号")
private String orderCode;
@ExcelProperty(value = "商场名称")
private String dealerName;
@ExcelProperty(value = "发货工厂")
private String senderFactory;
@ExcelProperty(value = "门店名称")
private String storeName;
@ExcelIgnore
private Long warehouseId;
@ExcelProperty(value = "导入仓库")
private String warehouseName;
@ExcelProperty(value = "入库仓库")
private String incomingWarehouseName;
@ExcelProperty(value = "基地")
private String siteName;
@ExcelProperty(value = "品牌")
private String brand;
@ExcelProperty(value = "数量")
private Integer totalNum;
@ExcelProperty(value = "发货人")
private String senderName;
@ExcelProperty(value = "发货人电话")
private String senderPhone;
@ExcelProperty(value = "发货地址")
private String senderAddress;
@ExcelProperty(value = "商场联系人")
private String consigneePerson;
@ExcelProperty(value = "联系电话")
private String consigneeMobile;
@ExcelProperty(value = "地址")
private String consigneeAddress;
@ExcelProperty(value = "干仓配")
private String isGcp;
@ExcelProperty(value = "客户车次号")
private String trainNumber;
@ExcelProperty(value = "遗留")
private String legacyStatus;
@ExcelProperty(value = "顾客姓名")
private String customerName;
@ExcelProperty(value = "顾客电话")
private String customerPhone;
@ExcelProperty(value = "顾客地址")
private String customerAddress;
@ExcelProperty(value = "交期")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date deliveryDate;
@ExcelProperty(value = "商场编码")
private String dealerCode;
@ExcelProperty(value = "门店编码")
private String storeCode;
@ExcelProperty(value = "创建人")
private String createUserName;
@ExcelProperty(value = "订单类型")
private String orderType;
@ExcelProperty(value = "订单来源")
private String systemType;
@ExcelProperty(value = "服务号")
private String serviceNum;
@ExcelProperty(value = "冻结状态")
private String freezeStatus;
@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 documentMakingTime;
@ExcelProperty(value = "是否开单")
private String waybillStatus;
@ExcelProperty(value = "开单时效")
private String openHours;
@ExcelProperty(value = "标准开单时效")
private String hoursTime;
@ExcelProperty(value = "是否超时")
private String isOverTime;
}

50
blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportUpdateWaybillDetailVO.java

@ -0,0 +1,50 @@
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 ReportUpdateWaybillDetailVO implements Serializable {
@ExcelProperty(value = "运单号")
private String waybillNo;
@ExcelProperty(value = "开单网点")
private String departureWarehouseName;
@ExcelProperty(value = "状态")
private String waybillStatus;
@ExcelProperty(value = "开单类型")
private String waybillType;
@ExcelProperty(value = "制单员")
private String agent;
@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 applyTime;
@ExcelProperty(value = "申请网点")
private String warehouseName;
@ExcelProperty(value = "修改原因")
private String updateReson;
@ExcelProperty(value = "修改内容")
private String updateContent;
@ExcelProperty(value = "审核时间")
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date checkUpdateTime;
}

5
blade-service/logpm-report/src/main/java/com/logpm/report/vo/ReportUpdateWaybillVO.java

@ -1,5 +1,6 @@
package com.logpm.report.vo;
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
@ -10,8 +11,12 @@ public class ReportUpdateWaybillVO implements Serializable {
@ExcelProperty(value = "事业线")
private String businessLine;
@ExcelIgnore
private Long departureWarehouseId;
@ExcelProperty(value = "始发仓")
private String departureWarehouseName;
@ExcelIgnore
private Long destinationWarehouseId;
@ExcelProperty(value = "目的仓")
private String destinationWarehouseName;
@ExcelProperty(value = "品牌")

Loading…
Cancel
Save