70 changed files with 2913 additions and 78 deletions
@ -0,0 +1,50 @@
|
||||
package org.springblade.common.constant; |
||||
|
||||
public enum WaybillStatusEnum { |
||||
|
||||
|
||||
BUFENRUKU("10", "部分入库"), |
||||
RUKU("20", "入库"), |
||||
BUFENZHONGZHUAN("30", "部分中转"), |
||||
ZHONGZHAUN("40", "中转"), |
||||
MUDICANGBUFENDAODA("50", "目的仓部分到达"), |
||||
MUDICANGDAODA("60", "目的仓到达"), |
||||
PEISOSNGBUFENZHUANGCHE("70", "配送部分装车"), |
||||
PEISONGZHUANGCHE("80", "配送装车"), |
||||
BUFENQIANSHOU("90", "部分签收"), |
||||
QIANSHOU("100", "已签收"); |
||||
|
||||
private String code; |
||||
private String value; |
||||
|
||||
public String getCode() { |
||||
return code; |
||||
} |
||||
|
||||
public void setCode(String code) { |
||||
this.code = code; |
||||
} |
||||
|
||||
public String getValue() { |
||||
return value; |
||||
} |
||||
|
||||
public void setValue(String value) { |
||||
this.value = value; |
||||
} |
||||
|
||||
WaybillStatusEnum(String code, String value) { |
||||
this.code = code; |
||||
this.value = value; |
||||
} |
||||
|
||||
public static String getValue(String code) { |
||||
for (WaybillStatusEnum value : WaybillStatusEnum.values()) { |
||||
if (value.getCode().equals(code)) { |
||||
return value.getValue(); |
||||
} |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,43 @@
|
||||
package com.logpm.statistics.dto; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class ChangesRecordDTO implements Serializable { |
||||
|
||||
private Long orderInfoId;//订单id
|
||||
|
||||
private String orderCode;//订单号
|
||||
|
||||
private BigDecimal pickupFee = BigDecimal.ZERO;//提货费
|
||||
|
||||
private BigDecimal freightFee = BigDecimal.ZERO;//干线费
|
||||
|
||||
private BigDecimal warehouseFee = BigDecimal.ZERO;//仓储费
|
||||
private BigDecimal warehouseManageFee = BigDecimal.ZERO;//仓储管理费
|
||||
private BigDecimal warehouseSortingFee = BigDecimal.ZERO;//仓储分拣费
|
||||
private BigDecimal warehouseOperatingFee = BigDecimal.ZERO;//仓储操作费
|
||||
|
||||
private BigDecimal deliveryFee = BigDecimal.ZERO;//配送费
|
||||
private BigDecimal deliveryLoadingFee = BigDecimal.ZERO;//配送装卸费
|
||||
private BigDecimal deliverySortingFee = BigDecimal.ZERO;//配送分拣费
|
||||
private BigDecimal deliveryUpfloorFee = BigDecimal.ZERO;//配送上楼费
|
||||
private BigDecimal deliveryMoveFee = BigDecimal.ZERO;//配送平移费
|
||||
|
||||
private BigDecimal installFee = BigDecimal.ZERO;//安装费
|
||||
private BigDecimal quotationFee = BigDecimal.ZERO;//保价费
|
||||
private BigDecimal claimingValue = BigDecimal.ZERO;//申明价值
|
||||
private BigDecimal otherFee = BigDecimal.ZERO;//其他费用
|
||||
private BigDecimal returnFee = BigDecimal.ZERO;//回扣
|
||||
private BigDecimal thirdOprationFee = BigDecimal.ZERO;//三方操作费
|
||||
|
||||
private Long statisticsWarehouseId; |
||||
private String statisticsWarehouseName; |
||||
|
||||
private List<String> changesPhotoUrls; |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.logpm.statistics.dto; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalEntity; |
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalPhotoEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class StatisticsBalanceAbnormalDTO extends StatisticsBalanceAbnormalEntity { |
||||
|
||||
private List<StatisticsBalanceAbnormalPhotoEntity> abnormalPhotoEntityList; |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.logpm.statistics.dto; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordEntity; |
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordPhotoEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class StatisticsBalanceRecordDTO extends StatisticsBalanceRecordEntity { |
||||
|
||||
private List<StatisticsBalanceRecordPhotoEntity> recordPhotoEntityList; |
||||
|
||||
} |
@ -0,0 +1,53 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
@Data |
||||
@TableName("logpm_statistics_balance_abnormal") |
||||
@ApiModel(value = "StatisticsBalanceAbnormal对象", description = "结算异常记录表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class StatisticsBalanceAbnormalEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
private Long balanceOrderInfoId;//结算单id
|
||||
|
||||
private Integer abnormalType; //异常类型1结算单 2运单 3订单
|
||||
private String abnormalValue;//异常值
|
||||
private BigDecimal abnormalFee;//异常金额
|
||||
private String abnormalRemark;//异常备注
|
||||
private String abnormalUserName;//异常操作人
|
||||
|
||||
|
||||
} |
@ -0,0 +1,46 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
@Data |
||||
@TableName("logpm_statistics_balance_abnormal_photo") |
||||
@ApiModel(value = "StatisticsBalanceAbnormalPhoto对象", description = "结算异常记录图片表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class StatisticsBalanceAbnormalPhotoEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
|
||||
private Long abnormalId; //异常记录id
|
||||
private String url;//图片地址
|
||||
|
||||
} |
@ -0,0 +1,128 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
@TableName("logpm_statistics_balance_order_info") |
||||
@ApiModel(value = "StatisticsBalanceOrderInfo对象", description = "结算单表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class StatisticsBalanceOrderInfoEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
private String balanceOrderNo;//结算单号
|
||||
|
||||
private String brand;//品牌
|
||||
|
||||
private String waybillNo;//运单号
|
||||
|
||||
private String orderCode;//订单号
|
||||
|
||||
private String typeService;//服务类型
|
||||
|
||||
private String productGoods;//货物品类
|
||||
|
||||
private String productTypeNum;//品类数
|
||||
|
||||
private Integer totalCount;//总数量
|
||||
|
||||
private BigDecimal totalWeight;//总重量
|
||||
private BigDecimal totalVolume;//总体积
|
||||
|
||||
private String shipper;//发货单位
|
||||
private String shipperPerson;//发货人
|
||||
private String shipperMobile;//发货电话
|
||||
private String shipperAddress;//发货地址
|
||||
private String consignee;//收货单位
|
||||
private String consigneePerson;//收货人
|
||||
private String consigneeMobile;//收货电话
|
||||
private String consigneeAddress;//收货地址
|
||||
private String departure;//发站
|
||||
private String destination;//到站
|
||||
private String departureWarehouseName;//发站仓
|
||||
private String destinationWarehouseName;//目的仓
|
||||
private String payType;//支付类型
|
||||
private String payWay;//支付方式
|
||||
|
||||
private Integer isAftersale;//是否有售后
|
||||
private BigDecimal aftersalesFee;//售后金额
|
||||
|
||||
private BigDecimal totalBalanceFee;//结算总金额
|
||||
|
||||
private BigDecimal totalFee; |
||||
private BigDecimal openFee; |
||||
|
||||
private BigDecimal pickupFee;//提货费
|
||||
private BigDecimal freightFee;//运费
|
||||
private BigDecimal warehouseServiceFee;//仓库服务费
|
||||
private BigDecimal warehouseFee;//仓储费
|
||||
private BigDecimal warehouseManageFee;//仓储管理费
|
||||
private BigDecimal warehouseSortingFee;//仓储分拣费
|
||||
private BigDecimal warehouseOperatingFee;//仓储操作费
|
||||
|
||||
private BigDecimal deliveryServiceFee;//配送服务费
|
||||
private BigDecimal deliveryFee;//配送费
|
||||
private BigDecimal deliveryLoadingFee;//配送装卸费
|
||||
private BigDecimal deliverySortingFee;//配送分拣费
|
||||
private BigDecimal deliveryUpfloorFee;//配送上楼费
|
||||
private BigDecimal deliveryMoveFee;//配送平移费
|
||||
private BigDecimal deliveryCrossingFee;//超区费
|
||||
|
||||
private BigDecimal installFee;//安装费
|
||||
private BigDecimal quotationFee;//保价费
|
||||
private BigDecimal claimingValue;//申明价值
|
||||
private BigDecimal otherFee;//其他费
|
||||
private BigDecimal returnFee;//回扣
|
||||
private BigDecimal thirdOprationFee;//三方操作费
|
||||
private BigDecimal xPay;//现付
|
||||
private BigDecimal dPay;//到付
|
||||
private BigDecimal hPay;//回付
|
||||
private BigDecimal yPay;//月结
|
||||
|
||||
private Integer balanceStatus;//0未结算 1部分结算 2已结算
|
||||
|
||||
private BigDecimal hasBalanceFee;//已结算金额
|
||||
private BigDecimal noBalanceFee;//未结算金额
|
||||
private Date balanceTime;//结算时间
|
||||
private String balanceUserName;//结算人
|
||||
private String balanceRemark;//结算备注
|
||||
|
||||
private Integer abnormalBalanceStatus;//是否有异常结算
|
||||
private BigDecimal abnormalBalanceFee;//异常金额
|
||||
private Date abnormalTime;//异常时间
|
||||
private String abnormalUserName;//异常确认人
|
||||
private String abnormalRemark;//异常备注
|
||||
|
||||
} |
@ -0,0 +1,51 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
@Data |
||||
@TableName("logpm_statistics_balance_record") |
||||
@ApiModel(value = "StatisticsBalanceRecord对象", description = "结算记录表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class StatisticsBalanceRecordEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
private Long balanceOrderInfoId;//结算单id
|
||||
|
||||
private BigDecimal balanceFee;//异常金额
|
||||
private String balanceRemark;//异常备注
|
||||
private String balanceUserName;//异常操作人
|
||||
|
||||
|
||||
} |
@ -0,0 +1,46 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
@Data |
||||
@TableName("logpm_statistics_balance_record_photo") |
||||
@ApiModel(value = "StatisticsBalanceRecordPhoto对象", description = "结算记录图片表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class StatisticsBalanceRecordPhotoEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
|
||||
private Long recordId; //异常记录id
|
||||
private String url;//图片地址
|
||||
|
||||
} |
@ -0,0 +1,47 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
@Data |
||||
@TableName("logpm_statistics_changes_photo") |
||||
@ApiModel(value = "StatisticsChanges对象", description = "订单异动照片表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class StatisticsChangesPhotoEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
private Long changesRecordId; |
||||
private String url; |
||||
private String createUserName; |
||||
|
||||
|
||||
} |
@ -0,0 +1,79 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
@Data |
||||
@TableName("logpm_statistics_changes_record") |
||||
@ApiModel(value = "StatisticsChangesRecord对象", description = "订单异动记录") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class StatisticsChangesRecordEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
private Long orderInfoId;//订单id
|
||||
|
||||
private String orderCode;//订单号
|
||||
|
||||
private BigDecimal pickupFee;//提货费
|
||||
|
||||
private BigDecimal freightFee;//干线费
|
||||
|
||||
private BigDecimal warehouseFee;//仓储费
|
||||
private BigDecimal warehouseManageFee;//仓储管理费
|
||||
private BigDecimal warehouseSortingFee;//仓储分拣费
|
||||
private BigDecimal warehouseOperatingFee;//仓储操作费
|
||||
|
||||
private BigDecimal deliveryFee;//配送费
|
||||
private BigDecimal deliveryLoadingFee;//配送装卸费
|
||||
private BigDecimal deliverySortingFee;//配送分拣费
|
||||
private BigDecimal deliveryUpfloorFee;//配送上楼费
|
||||
private BigDecimal deliveryMoveFee;//配送平移费
|
||||
|
||||
private BigDecimal installFee;//安装费
|
||||
private BigDecimal quotationFee;//保价费
|
||||
private BigDecimal claimingValue;//申明价值
|
||||
private BigDecimal otherFee;//其他费用
|
||||
private BigDecimal returnFee;//回扣
|
||||
private BigDecimal thirdOprationFee;//三方操作费
|
||||
|
||||
private Long statisticsWarehouseId; |
||||
private String statisticsWarehouseName; |
||||
|
||||
private String remark; |
||||
|
||||
private String itemRecord; |
||||
|
||||
private BigDecimal totalFee; |
||||
|
||||
} |
@ -0,0 +1,13 @@
|
||||
package com.logpm.statistics.vo; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalEntity; |
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalPhotoEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class StatisticsBalanceAbnormalVO extends StatisticsBalanceAbnormalEntity { |
||||
|
||||
private List<StatisticsBalanceAbnormalPhotoEntity> abnormalPhotoEntityList; |
||||
} |
@ -0,0 +1,8 @@
|
||||
package com.logpm.statistics.vo; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceOrderInfoEntity; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class StatisticsBalanceOrderInfoVO extends StatisticsBalanceOrderInfoEntity { |
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.logpm.statistics.vo; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordEntity; |
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordPhotoEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class StatisticsBalanceRecordVO extends StatisticsBalanceRecordEntity { |
||||
|
||||
private List<StatisticsBalanceRecordPhotoEntity> recordPhotoEntityList; |
||||
|
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.statistics.vo; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsChangesPhotoEntity; |
||||
import com.logpm.statistics.entity.StatisticsChangesRecordEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class StatisticsChangesRecordVO extends StatisticsChangesRecordEntity { |
||||
|
||||
private List<StatisticsChangesPhotoEntity> changesPhotoEntityList; |
||||
|
||||
|
||||
} |
@ -0,0 +1,138 @@
|
||||
package com.logpm.statistics.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class StatisticsOrderInfoVO implements Serializable { |
||||
|
||||
private Long orderInfoId; |
||||
private String brand;//品牌
|
||||
private String waybillNo;//运单号
|
||||
private String orderNo;//订单号
|
||||
private String typeService;//商家服务类型
|
||||
private String shipper;//发货单位
|
||||
private String shipperPerson;//发货人
|
||||
private String shipperMobile;//发货电话
|
||||
private String shipperAddress;//发货地址
|
||||
private String consignee;//收货单位
|
||||
private String consigneePerson;//收货人
|
||||
private String consigneeMobile;//收货电话
|
||||
private String consigneeAddress;//收货地址
|
||||
private String waybillStatus;//运单状态
|
||||
private Integer signStatus;//订单签收状态
|
||||
private Integer isCheck;//运单是否审核
|
||||
private Date openTime;//开单时间
|
||||
private String goodsName;//物料品类
|
||||
private String departure;//发站
|
||||
private String destination;//到站
|
||||
private String departureWarehouseName;//发站仓
|
||||
private String destinationWarehouseName;//目的仓
|
||||
private String deliveryMethod;//配送方式
|
||||
private String customerTrain;//客户车次号
|
||||
private String receiptStatus;//回单状态
|
||||
private String waybillRemark;//运单备注
|
||||
private String statisticsFang; |
||||
private String payType;//支付类型
|
||||
private String payWay;//支付方式
|
||||
private String storeBusiness; |
||||
private Integer confirmStatisticsOrder;//0未确认 1已确认
|
||||
private String confirmStatisticsUserName;//对账确认人
|
||||
private Date confirmStatisticsTime;//对账确认时间
|
||||
|
||||
private Integer isEdit; |
||||
private String goodsTypeNum; |
||||
private Integer productTypeNum; |
||||
|
||||
|
||||
private Integer totalcount;//订单数量
|
||||
private BigDecimal totalWeight;//订单重量
|
||||
private BigDecimal totalVolume;//订单体积
|
||||
|
||||
|
||||
|
||||
private BigDecimal totalFee;//总费用
|
||||
private BigDecimal openFee;//开单费
|
||||
//干线
|
||||
private BigDecimal pickupFee;//开单提货费
|
||||
private BigDecimal realPickupFee;//实际提货费
|
||||
private BigDecimal freightFee;//开单运费
|
||||
private BigDecimal realFreightFee;//实际运费
|
||||
private BigDecimal installFee;//开单安装费
|
||||
private BigDecimal realInstallFee;//实际安装费
|
||||
private BigDecimal quotationFee;//保价费
|
||||
private BigDecimal realQuotationFee;//实际保价费
|
||||
private BigDecimal claimingValue;//开单申明价值
|
||||
private BigDecimal realClaimingValue;//实际申明价值
|
||||
private BigDecimal otherFee;//开单其他费
|
||||
private BigDecimal realOtherFee;//实际其他费
|
||||
private BigDecimal returnFee;//开单回扣
|
||||
private BigDecimal realReturnFee;//实际回扣
|
||||
private BigDecimal thirdOprationFee;//开单三方操作费
|
||||
private BigDecimal realThirdOprationFee;//实际三方操作费
|
||||
private BigDecimal xPay;//开单现付
|
||||
private BigDecimal realXPay;//实际现付
|
||||
private BigDecimal dPay;//开单到付
|
||||
private BigDecimal realDPay;//实际到付
|
||||
private BigDecimal hPay;//开单回付
|
||||
private BigDecimal realHPay;//实际回付
|
||||
private BigDecimal yPay;//开单月结
|
||||
private BigDecimal realYPay;//实际月结
|
||||
|
||||
|
||||
private Date incomingTime;//入库时间
|
||||
private Date outingTime;//出库时间
|
||||
private String warehouseFeeInterval; |
||||
private BigDecimal warehouseServiceFee;//开单仓库服务费
|
||||
private BigDecimal realWarehouseServiceFee;//实际仓库服务费
|
||||
private BigDecimal warehouseFee;//开单仓储费
|
||||
private BigDecimal realWarehouseFee;//实际仓储费
|
||||
private BigDecimal warehouseManageFee;//开单仓储管理费
|
||||
private BigDecimal realWarehouseManageFee;//实际仓储管理费
|
||||
private BigDecimal warehouseSortingFee;//开单仓储分拣费
|
||||
private BigDecimal realWarehouseSortingFee;//实际仓储分拣费
|
||||
private BigDecimal warehouseOperatingFee;//开单仓储操作费
|
||||
private BigDecimal realWarehouseOperatingFee;//实际仓储操作费
|
||||
//配送
|
||||
private BigDecimal deliveryServiceFee;//开单配送服务费
|
||||
private BigDecimal realDeliveryServiceFee;//实际配送服务费
|
||||
private BigDecimal deliveryFee;//开单配送费
|
||||
private BigDecimal realDeliveryFee;//实际配送费
|
||||
private BigDecimal deliveryLoadingFee;//配送装卸费
|
||||
private BigDecimal realDeliveryLoadingFee;//实际配送装卸费
|
||||
private BigDecimal deliverySortingFee;//配送分拣费
|
||||
private BigDecimal realDeliverySortingFee;//实际配送分拣费
|
||||
private BigDecimal deliveryUpfloorFee;//开单配送上楼费
|
||||
private BigDecimal realDeliveryUpfloorFee;//实际配送上楼费
|
||||
private BigDecimal deliveryMoveFee;//开单配送平移费
|
||||
private BigDecimal realDeliveryMoveFee;//实际平移费
|
||||
private BigDecimal deliveryDistance;//开单配送公里数
|
||||
private BigDecimal realDeliveryDistance;//实际配送公里数
|
||||
private BigDecimal deliveryCrossingFee;//开单超区费
|
||||
private BigDecimal realDeliveryCrossingFee;//实际超区费
|
||||
|
||||
|
||||
// private String isAftersales;
|
||||
// private BigDecimal aftersalesFee;
|
||||
private BigDecimal totalStatementFee;//对账总金额
|
||||
private String statementStatus; |
||||
private BigDecimal hasStatementFee; |
||||
private String statementCreateUser; |
||||
private Integer isChanges;//是否异动0否 1是
|
||||
private BigDecimal changesFee;//异动金额
|
||||
private String changesItems;//异动条目
|
||||
private String changesRemark;//异动备注
|
||||
private Date changesTime;//最晚一条
|
||||
private Integer signNum; |
||||
private Date signTime;//最晚一条
|
||||
private String statisticsStatus;//结算状态
|
||||
private BigDecimal totalStatisticsFee;//结算总金额
|
||||
private BigDecimal hasStatisticsFee;//已结算金额
|
||||
private Integer isAbnormalStatistics;//是否异常结算 0否 1是
|
||||
private BigDecimal abnormalFee;//异常金额
|
||||
|
||||
|
||||
} |
@ -0,0 +1,187 @@
|
||||
package com.logpm.warehouse.vo; |
||||
|
||||
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 ExportWarehouseWaybillVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNo; |
||||
|
||||
@ExcelProperty(value = "订单号") |
||||
private String orderNo; |
||||
|
||||
@ExcelProperty(value = "发站仓") |
||||
private String departureWarehouseName; |
||||
|
||||
@ExcelProperty(value = "目的仓") |
||||
private String destinationWarehouseName; |
||||
|
||||
@ExcelProperty(value = "客户车次") |
||||
private String customerTrain; |
||||
|
||||
@ExcelProperty(value = "品牌") |
||||
private String brand; |
||||
|
||||
|
||||
@ExcelProperty(value = "发货单位") |
||||
private String shipper; |
||||
|
||||
|
||||
@ExcelProperty(value = "发货人") |
||||
private String shipperName; |
||||
|
||||
@ExcelProperty(value = "发货方手机号") |
||||
private String shipperMobile; |
||||
|
||||
@ExcelProperty(value = "发货方地址") |
||||
private String shipperAddress; |
||||
|
||||
|
||||
@ExcelProperty(value = "收货单位") |
||||
private String consignee; |
||||
|
||||
|
||||
@ExcelProperty(value = "收货人") |
||||
private String consigneeName; |
||||
|
||||
@ExcelProperty(value = "收货方手机号") |
||||
private String consigneeMobile; |
||||
|
||||
@ExcelProperty(value = "收货方地址") |
||||
private String consigneeAddress; |
||||
|
||||
@ExcelProperty(value = "到站") |
||||
private String destination; |
||||
|
||||
@ExcelProperty(value = "货物名称") |
||||
private String goodsName; |
||||
|
||||
@ExcelProperty(value = "按件分摊") |
||||
private BigDecimal costPiece; |
||||
|
||||
@ExcelProperty(value = "按比列分摊") |
||||
private BigDecimal costZhang; |
||||
|
||||
@ExcelProperty(value = "成本分摊件数") |
||||
private Integer costNum; |
||||
|
||||
@ExcelProperty(value = "总件数") |
||||
private Integer totalCount; |
||||
|
||||
@ExcelProperty(value = "总重量") |
||||
private BigDecimal totalWeight; |
||||
|
||||
@ExcelProperty(value = "总体积") |
||||
private BigDecimal totalVolume; |
||||
|
||||
@ExcelProperty(value = "运费") |
||||
private BigDecimal totalFreight; |
||||
|
||||
@ExcelProperty(value = "送货费") |
||||
private BigDecimal deliveryFee; |
||||
|
||||
@ExcelProperty(value = "提货费") |
||||
private BigDecimal pickupFee; |
||||
|
||||
@ExcelProperty(value = "仓库管理费") |
||||
private BigDecimal warehouseManagementFee; |
||||
|
||||
@ExcelProperty(value = "仓储费") |
||||
private BigDecimal storageFee; |
||||
|
||||
@ExcelProperty(value = "装卸费") |
||||
private BigDecimal handlingFee; |
||||
|
||||
@ExcelProperty(value = "安装费") |
||||
private BigDecimal installFee; |
||||
|
||||
@ExcelProperty(value = "回扣") |
||||
private BigDecimal rebate; |
||||
|
||||
@ExcelProperty(value = "支付方式") |
||||
private String payType; |
||||
|
||||
@ExcelProperty(value = "付款方式") |
||||
private String payWay; |
||||
|
||||
@ExcelProperty(value = "现付") |
||||
private BigDecimal xPay; |
||||
|
||||
@ExcelProperty(value = "到付") |
||||
private BigDecimal dPay; |
||||
|
||||
@ExcelProperty(value = "回付") |
||||
private BigDecimal hPay; |
||||
|
||||
@ExcelProperty(value = "月结") |
||||
private BigDecimal yPay; |
||||
|
||||
@ExcelProperty(value = "三方操作费") |
||||
private BigDecimal thirdOperationFee; |
||||
|
||||
@ExcelProperty(value = "送货方式") |
||||
private String deliveryWay; |
||||
|
||||
@ExcelProperty(value = "紧急度") |
||||
private String urgency; |
||||
|
||||
@ExcelProperty(value = "回单数") |
||||
private Integer receiptNum; |
||||
|
||||
@ExcelProperty(value = "运输方式") |
||||
private String transportType; |
||||
|
||||
@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 documentMakingTime; |
||||
|
||||
private Integer pickupCompleteOrNot; |
||||
@ExcelProperty(value = "提货是否整车") |
||||
private String pickupCompleteOrNotStr; |
||||
|
||||
private Integer trunklineCompleteOrNot; |
||||
@ExcelProperty(value = "干线是否整车") |
||||
private String trunklineCompleteOrNotStr; |
||||
|
||||
@ExcelProperty(value = "运单状态") |
||||
private String waybillStatus; |
||||
|
||||
|
||||
private Integer freezeStatus; |
||||
@ExcelProperty(value = "是否冻结") |
||||
private String freezeStatusStr; |
||||
|
||||
@ExcelProperty(value = "冻结人") |
||||
private String freezeUserName; |
||||
|
||||
@ExcelProperty(value = "冻结时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date freezeTime; |
||||
|
||||
|
||||
private Integer abolishStatus; |
||||
@ExcelProperty(value = "是否作废") |
||||
private String abolishStatusStr; |
||||
|
||||
@ExcelProperty(value = "作废人") |
||||
private String abolishUserName; |
||||
|
||||
@ExcelProperty(value = "作废时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date abolishTime; |
||||
|
||||
} |
@ -0,0 +1,159 @@
|
||||
package com.logpm.statistics.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import com.logpm.statistics.dto.MerchantStatisticsDTO; |
||||
import com.logpm.statistics.dto.StatisticsBalanceAbnormalDTO; |
||||
import com.logpm.statistics.dto.StatisticsBalanceRecordDTO; |
||||
import com.logpm.statistics.service.IStatisticsBalanceOrderInfoService; |
||||
import com.logpm.statistics.vo.StatisticsBalanceOrderInfoVO; |
||||
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.springframework.web.bind.annotation.*; |
||||
|
||||
import java.util.Objects; |
||||
|
||||
@Slf4j |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/merchantBalance") |
||||
@Api(value = "商户结算控制类", tags = "商户结算单接口") |
||||
public class MerchantBalanceController { |
||||
|
||||
private final IStatisticsBalanceOrderInfoService balanceOrderInfoService; |
||||
|
||||
@ResponseBody |
||||
@PostMapping("/pageList") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "运单维度对账单", notes = "传入merchantStatisticsDTO") |
||||
public R pageList(@RequestBody MerchantStatisticsDTO merchantStatisticsDTO) { |
||||
String method = "############pageList: "; |
||||
log.info(method+"请求参数{}",merchantStatisticsDTO); |
||||
try{ |
||||
|
||||
Integer listType = merchantStatisticsDTO.getListType(); |
||||
if(Objects.isNull(listType)){ |
||||
log.warn(method+"请选择正确的列表类型 listType={}",listType); |
||||
return R.fail(405,"请选择正确的列表类型"); |
||||
} |
||||
|
||||
IPage<StatisticsBalanceOrderInfoVO> pages = balanceOrderInfoService.pageList(merchantStatisticsDTO); |
||||
|
||||
return R.data(pages); |
||||
}catch (CustomerException e){ |
||||
log.error(e.message,e); |
||||
return R.fail(e.code,e.message); |
||||
}catch (Exception e){ |
||||
log.error(method+"系统异常",e); |
||||
return R.fail(500,"系统异常"); |
||||
} |
||||
} |
||||
|
||||
|
||||
@ResponseBody |
||||
@PostMapping("/addAbnormal") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "添加异常", notes = "传入balanceAbnormalDTO") |
||||
public R addAbnormal(@RequestBody StatisticsBalanceAbnormalDTO balanceAbnormalDTO) { |
||||
String method = "############addAbnormal: "; |
||||
log.info(method+"请求参数{}",balanceAbnormalDTO); |
||||
try{ |
||||
|
||||
Long balanceOrderInfoId = balanceAbnormalDTO.getBalanceOrderInfoId(); |
||||
if(Objects.isNull(balanceOrderInfoId)){ |
||||
log.warn(method+"请选择正确的结算单 balanceOrderInfoId={}",balanceOrderInfoId); |
||||
return R.fail(405,"请选择正确的结算单"); |
||||
} |
||||
|
||||
return balanceOrderInfoService.addAbnormal(balanceAbnormalDTO); |
||||
}catch (CustomerException e){ |
||||
log.error(e.message,e); |
||||
return R.fail(e.code,e.message); |
||||
}catch (Exception e){ |
||||
log.error(method+"系统异常",e); |
||||
return R.fail(500,"系统异常"); |
||||
} |
||||
} |
||||
|
||||
|
||||
@ResponseBody |
||||
@PostMapping("/findAbnormalList") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "查询异常列表", notes = "传入balanceAbnormalDTO") |
||||
public R findAbnormalList(@RequestBody StatisticsBalanceAbnormalDTO balanceAbnormalDTO) { |
||||
String method = "############findAbnormalList: "; |
||||
log.info(method+"请求参数{}",balanceAbnormalDTO); |
||||
try{ |
||||
|
||||
Long balanceOrderInfoId = balanceAbnormalDTO.getBalanceOrderInfoId(); |
||||
if(Objects.isNull(balanceOrderInfoId)){ |
||||
log.warn(method+"请选择正确的结算单 balanceOrderInfoId={}",balanceOrderInfoId); |
||||
return R.fail(405,"请选择正确的结算单"); |
||||
} |
||||
|
||||
return balanceOrderInfoService.findAbnormalList(balanceAbnormalDTO); |
||||
}catch (CustomerException e){ |
||||
log.error(e.message,e); |
||||
return R.fail(e.code,e.message); |
||||
}catch (Exception e){ |
||||
log.error(method+"系统异常",e); |
||||
return R.fail(500,"系统异常"); |
||||
} |
||||
} |
||||
|
||||
@ResponseBody |
||||
@PostMapping("/addBalanceRecord") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "添加结算揭露", notes = "传入balanceRecordDTO") |
||||
public R addBalanceRecord(@RequestBody StatisticsBalanceRecordDTO balanceRecordDTO) { |
||||
String method = "############addBalanceRecord: "; |
||||
log.info(method+"请求参数{}",balanceRecordDTO); |
||||
try{ |
||||
|
||||
Long balanceOrderInfoId = balanceRecordDTO.getBalanceOrderInfoId(); |
||||
if(Objects.isNull(balanceOrderInfoId)){ |
||||
log.warn(method+"请选择正确的结算单 balanceOrderInfoId={}",balanceOrderInfoId); |
||||
return R.fail(405,"请选择正确的结算单"); |
||||
} |
||||
|
||||
return balanceOrderInfoService.addBalanceRecord(balanceRecordDTO); |
||||
}catch (CustomerException e){ |
||||
log.error(e.message,e); |
||||
return R.fail(e.code,e.message); |
||||
}catch (Exception e){ |
||||
log.error(method+"系统异常",e); |
||||
return R.fail(500,"系统异常"); |
||||
} |
||||
} |
||||
|
||||
@ResponseBody |
||||
@PostMapping("/findRecordList") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "查询异常列表", notes = "传入balanceRecordDTO") |
||||
public R findRecordList(@RequestBody StatisticsBalanceRecordDTO balanceRecordDTO) { |
||||
String method = "############findRecordList: "; |
||||
log.info(method+"请求参数{}",balanceRecordDTO); |
||||
try{ |
||||
|
||||
Long balanceOrderInfoId = balanceRecordDTO.getBalanceOrderInfoId(); |
||||
if(Objects.isNull(balanceOrderInfoId)){ |
||||
log.warn(method+"请选择正确的结算单 balanceOrderInfoId={}",balanceOrderInfoId); |
||||
return R.fail(405,"请选择正确的结算单"); |
||||
} |
||||
|
||||
return balanceOrderInfoService.findRecordList(balanceRecordDTO); |
||||
}catch (CustomerException e){ |
||||
log.error(e.message,e); |
||||
return R.fail(e.code,e.message); |
||||
}catch (Exception e){ |
||||
log.error(method+"系统异常",e); |
||||
return R.fail(500,"系统异常"); |
||||
} |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface StatisticsBalanceAbnormalMapper extends BaseMapper<StatisticsBalanceAbnormalEntity> { |
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalPhotoEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface StatisticsBalanceAbnormalPhotoMapper extends BaseMapper<StatisticsBalanceAbnormalPhotoEntity> { |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.statistics.dto.MerchantStatisticsDTO; |
||||
import com.logpm.statistics.entity.StatisticsBalanceOrderInfoEntity; |
||||
import com.logpm.statistics.vo.StatisticsBalanceOrderInfoVO; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import org.apache.ibatis.annotations.Param; |
||||
|
||||
@Mapper |
||||
public interface StatisticsBalanceOrderInfoMapper extends BaseMapper<StatisticsBalanceOrderInfoEntity> { |
||||
IPage<StatisticsBalanceOrderInfoVO> pageList(IPage<Object> page, @Param("param") MerchantStatisticsDTO merchantStatisticsDTO); |
||||
|
||||
} |
@ -0,0 +1,11 @@
|
||||
<?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.statistics.mapper.StatisticsBalanceOrderInfoMapper"> |
||||
|
||||
<select id="pageList" resultType="com.logpm.statistics.vo.StatisticsBalanceOrderInfoVO"> |
||||
select * |
||||
from logpm_statistics_balance_order_info |
||||
where 1=1 |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,9 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface StatisticsBalanceRecordMapper extends BaseMapper<StatisticsBalanceRecordEntity> { |
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordPhotoEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface StatisticsBalanceRecordPhotoMapper extends BaseMapper<StatisticsBalanceRecordPhotoEntity> { |
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.statistics.entity.StatisticsChangesPhotoEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface StatisticsChangesPhotoMapper extends BaseMapper<StatisticsChangesPhotoEntity> { |
||||
} |
@ -0,0 +1,13 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.statistics.entity.StatisticsChangesRecordEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import org.apache.ibatis.annotations.Param; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
@Mapper |
||||
public interface StatisticsChangesRecordMapper extends BaseMapper<StatisticsChangesRecordEntity> { |
||||
BigDecimal findChangesFeeByOrderInfoId(@Param("orderInfoId") Long orderInfoId); |
||||
} |
@ -0,0 +1,13 @@
|
||||
<?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.statistics.mapper.StatisticsChangesRecordMapper"> |
||||
|
||||
<select id="findChangesFeeByOrderInfoId" resultType="java.math.BigDecimal"> |
||||
|
||||
select sum(total_fee) |
||||
from logpm_statistics_changes_record |
||||
where order_info_id = #{orderInfoId} |
||||
|
||||
</select> |
||||
|
||||
</mapper> |
@ -1,9 +1,19 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.statistics.dto.MerchantStatisticsDTO; |
||||
import com.logpm.statistics.entity.StatisticsOrderInfoEntity; |
||||
import com.logpm.statistics.vo.StatisticsOrderInfoVO; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import org.apache.ibatis.annotations.Param; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Mapper |
||||
public interface StatisticsOrderInfoMapper extends BaseMapper<StatisticsOrderInfoEntity> { |
||||
|
||||
IPage<StatisticsOrderInfoVO> pageList(IPage<Object> page, @Param("param") MerchantStatisticsDTO merchantStatisticsDTO); |
||||
|
||||
List<StatisticsOrderInfoVO> findStatementListByOrderInfoIds(@Param("orderInfoIds") List<Long> orderInfoIds); |
||||
} |
||||
|
@ -0,0 +1,236 @@
|
||||
<?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.statistics.mapper.StatisticsOrderInfoMapper"> |
||||
|
||||
<select id="pageList" resultType="com.logpm.statistics.vo.StatisticsOrderInfoVO"> |
||||
select lsoi.id orderInfoId, |
||||
lsoi.order_code orderNo, |
||||
lsoi.waybill_no waybillNo, |
||||
lww.brand brand, |
||||
lww.shipper shipper, |
||||
lww.shipper_name shipperPerson, |
||||
lww.shipper_mobile shipperMobile, |
||||
lww.shipper_address shipperAddress, |
||||
lww.consignee consignee, |
||||
lww.consignee_name consigneePerson, |
||||
lww.consignee_mobile consigneeMobile, |
||||
lww.consignee_address consigneeAddress, |
||||
lww.waybill_status waybillStatus, |
||||
lsoi.sign_status signStatus, |
||||
lsoi.type_service typeService, |
||||
IF(lww.check_user_id is null,0,1) isCheck, |
||||
lww.create_time openTime, |
||||
lww.departure departure, |
||||
lww.destination destination, |
||||
lww.departure_warehouse_name departureWarehouseName, |
||||
lww.destination_warehouse_name destinationWarehouseName, |
||||
lww.delivery_method deliveryMethod, |
||||
lww.customer_train customerTrain, |
||||
IF(twr.waybill_id is null,0,1) receiptStatus, |
||||
lww.remark waybillRemark, |
||||
lww.pay_type payType, |
||||
lww.pay_way payWay, |
||||
lsoi.confirm_statistics_order confirmStatisticsOrder, |
||||
lsoi.confirm_statistics_user_name confirmStatisticsUserName, |
||||
lsoi.confirm_statistics_time confirmStatisticsTime, |
||||
lsoi.changes_fee changesFee, |
||||
IF(count(lscr.id)>0,1,0) isChanges, |
||||
GROUP_CONCAT(lscr.item_record) changesItems, |
||||
GROUP_CONCAT(lscr.remark) changesRemark, |
||||
MAX(lscr.create_time) changesTime, |
||||
GROUP_CONCAT(DISTINCT lstp.product_name) goodsName, |
||||
sum(lstp.total_num) totalcount, |
||||
sum(lstp.total_weight) totalWeight, |
||||
sum(lstp.total_volume) totalVolume, |
||||
sum(lstp.open_price+lswp.open_price+lsdp.open_price) openFee, |
||||
sum(lstp.total_price+lswp.total_price+lsdp.total_price) totalFee, |
||||
sum(lstp.pickup_fee) pickupFee, |
||||
sum(lstp.real_pickup_fee) realPickupFee, |
||||
sum(lstp.freight_fee) freightFee, |
||||
sum(lstp.real_freight_fee) realFreightFee, |
||||
sum(lstp.install_fee) installFee, |
||||
sum(lstp.real_install_fee) realInstallFee, |
||||
sum(lstp.quotation_fee) quotationFee, |
||||
sum(lstp.real_quotation_fee) realQuotationFee, |
||||
sum(lstp.claiming_value) claimingValue, |
||||
sum(lstp.real_claiming_value) realClaimingValue, |
||||
sum(lstp.other_fee) otherFee, |
||||
sum(lstp.real_other_fee) realOtherFee, |
||||
sum(lstp.return_fee) returnFee, |
||||
sum(lstp.real_return_fee) realReturnFee, |
||||
sum(lstp.third_opration_fee) thirdOprationFee, |
||||
sum(lstp.real_third_opration_fee) realThirdOprationFee, |
||||
sum(lstp.x_pay) xPay, |
||||
sum(lstp.real_x_pay) realXPay, |
||||
sum(lstp.d_pay) dPay, |
||||
sum(lstp.real_d_pay) realDPay, |
||||
sum(lstp.h_pay) hPay, |
||||
sum(lstp.real_h_pay) realHPay, |
||||
sum(lstp.y_pay) yPay, |
||||
sum(lstp.real_y_pay) realYPay, |
||||
min(lswp.incoming_time) incomingTime, |
||||
max(lswp.outing_time) outingTime, |
||||
sum(lswp.warehouse_service_fee) warehouseServiceFee, |
||||
sum(lswp.real_warehouse_service_fee) realWarehouseServiceFee, |
||||
sum(lswp.warehouse_fee) warehouseFee, |
||||
sum(lswp.real_warehouse_fee) realWarehouseFee, |
||||
sum(lswp.warehouse_manage_fee) warehouseManageFee, |
||||
sum(lswp.real_warehouse_manage_fee) realWarehouseManageFee, |
||||
sum(lswp.warehouse_sorting_fee) warehouseSortingFee, |
||||
sum(lswp.real_warehouse_sorting_fee) realWarehouseSortingFee, |
||||
sum(lswp.warehouse_operating_fee) warehouseOperatingFee, |
||||
sum(lswp.real_warehouse_operating_fee) realWarehouseOperatingFee, |
||||
sum(lsdp.delivery_service_fee) deliveryServiceFee, |
||||
sum(lsdp.real_delivery_service_fee) realDeliveryServiceFee, |
||||
sum(lsdp.delivery_fee) deliveryFee, |
||||
sum(lsdp.real_delivery_fee) realDeliveryFee, |
||||
sum(lsdp.delivery_loading_fee) deliveryLoadingFee, |
||||
sum(lsdp.real_delivery_loading_fee) realDeliveryLoadingFee, |
||||
sum(lsdp.delivery_sorting_fee) deliverySortingFee, |
||||
sum(lsdp.real_delivery_sorting_fee) realDeliverySortingFee, |
||||
sum(lsdp.delivery_upfloor_fee) deliveryUpfloorFee, |
||||
sum(lsdp.real_delivery_upfloor_fee) realDeliveryUpfloorFee, |
||||
sum(lsdp.delivery_move_fee) deliveryMoveFee, |
||||
sum(lsdp.real_delivery_move_fee) realDeliveryMoveFee, |
||||
max(lsdp.delivery_distance) deliveryDistance, |
||||
max(lsdp.real_delivery_distance) realDeliveryDistance, |
||||
sum(lsdp.delivery_crossing_fee) deliveryCrossingFee, |
||||
sum(lsdp.real_delivery_crossing_fee) realDeliveryCrossingFee, |
||||
sum(lstp.total_price+lswp.total_price+lsdp.total_price)+lsoi.changes_fee totalStatementFee, |
||||
sum(IF(lsdp.is_sign = 0,0,lsdp.total_num)) signNum, |
||||
max(lsdp.sign_time) signTime |
||||
from logpm_statistics_order_info lsoi |
||||
left join logpm_warehouse_waybill lww on lww.id = lsoi.waybill_id |
||||
left join (select ltwr.waybill_id from logpm_trunkline_waybill_return ltwr group by ltwr.waybill_id) twr on twr.waybill_id = lww.id |
||||
left join logpm_statistics_trunkline_package lstp on lstp.order_info_id = lsoi.id |
||||
left join logpm_statistics_warehouse_package lswp on lswp.order_info_id = lstp.order_info_id and lswp.order_package_code = lstp.order_package_code |
||||
left join logpm_statistics_distribution_package lsdp on lsdp.order_info_id = lswp.order_info_id = lsdp.order_package_code = lswp.order_package_code |
||||
left join logpm_statistics_changes_record lscr on lscr.order_info_id = lsoi.id |
||||
where 1=1 |
||||
<if test="param.listType == 1"> |
||||
and lsoi.type_service != '2' |
||||
</if> |
||||
<if test="param.listType == 2"> |
||||
and lsoi.type_service = '2' |
||||
</if> |
||||
<if test="param.consignee != null and param.consignee != '' "> |
||||
and Locate(#{param.consignee},lww.consignee) > 0 |
||||
</if> |
||||
<if test="param.confirmStatisticsOrder != null"> |
||||
and lsoi.confirm_statistics_order = #{param.confirmStatisticsOrder} |
||||
</if> |
||||
group by lsoi.id |
||||
</select> |
||||
|
||||
<select id="findStatementListByOrderInfoIds" resultType="com.logpm.statistics.vo.StatisticsOrderInfoVO"> |
||||
select lsoi.id orderInfoId, |
||||
lsoi.order_code orderNo, |
||||
lsoi.waybill_no waybillNo, |
||||
lww.brand brand, |
||||
lww.shipper shipper, |
||||
lww.shipper_name shipperPerson, |
||||
lww.shipper_mobile shipperMobile, |
||||
lww.shipper_address shipperAddress, |
||||
lww.consignee consignee, |
||||
lww.consignee_name consigneePerson, |
||||
lww.consignee_mobile consigneeMobile, |
||||
lww.consignee_address consigneeAddress, |
||||
lww.waybill_status waybillStatus, |
||||
lsoi.sign_status signStatus, |
||||
lsoi.type_service typeService, |
||||
IF(lww.check_user_id is null,0,1) isCheck, |
||||
lww.create_time openTime, |
||||
lww.departure departure, |
||||
lww.destination destination, |
||||
lww.departure_warehouse_name departureWarehouseName, |
||||
lww.destination_warehouse_name destinationWarehouseName, |
||||
lww.delivery_method deliveryMethod, |
||||
lww.customer_train customerTrain, |
||||
IF(twr.waybill_id is null,0,1) receiptStatus, |
||||
lww.remark waybillRemark, |
||||
lww.pay_type payType, |
||||
lww.pay_way payWay, |
||||
lsoi.confirm_statistics_order confirmStatisticsOrder, |
||||
lsoi.confirm_statistics_user_name confirmStatisticsUserName, |
||||
lsoi.confirm_statistics_time confirmStatisticsTime, |
||||
lsoi.changes_fee changesFee, |
||||
IF(count(lscr.id)>0,1,0) isChanges, |
||||
GROUP_CONCAT(lscr.item_record) changesItems, |
||||
GROUP_CONCAT(lscr.remark) changesRemark, |
||||
MAX(lscr.create_time) changesTime, |
||||
GROUP_CONCAT(DISTINCT lstp.product_name) goodsName, |
||||
sum(lstp.total_num) totalcount, |
||||
sum(lstp.total_weight) totalWeight, |
||||
sum(lstp.total_volume) totalVolume, |
||||
sum(lstp.open_price+lswp.open_price+lsdp.open_price) openFee, |
||||
sum(lstp.total_price+lswp.total_price+lsdp.total_price) totalFee, |
||||
sum(lstp.pickup_fee) pickupFee, |
||||
sum(lstp.real_pickup_fee) realPickupFee, |
||||
sum(lstp.freight_fee) freightFee, |
||||
sum(lstp.real_freight_fee) realFreightFee, |
||||
sum(lstp.install_fee) installFee, |
||||
sum(lstp.real_install_fee) realInstallFee, |
||||
sum(lstp.quotation_fee) quotationFee, |
||||
sum(lstp.real_quotation_fee) realQuotationFee, |
||||
sum(lstp.claiming_value) claimingValue, |
||||
sum(lstp.real_claiming_value) realClaimingValue, |
||||
sum(lstp.other_fee) otherFee, |
||||
sum(lstp.real_other_fee) realOtherFee, |
||||
sum(lstp.return_fee) returnFee, |
||||
sum(lstp.real_return_fee) realReturnFee, |
||||
sum(lstp.third_opration_fee) thirdOprationFee, |
||||
sum(lstp.real_third_opration_fee) realThirdOprationFee, |
||||
sum(lstp.x_pay) xPay, |
||||
sum(lstp.real_x_pay) realXPay, |
||||
sum(lstp.d_pay) dPay, |
||||
sum(lstp.real_d_pay) realDPay, |
||||
sum(lstp.h_pay) hPay, |
||||
sum(lstp.real_h_pay) realHPay, |
||||
sum(lstp.y_pay) yPay, |
||||
sum(lstp.real_y_pay) realYPay, |
||||
min(lswp.incoming_time) incomingTime, |
||||
max(lswp.outing_time) outingTime, |
||||
sum(lswp.warehouse_service_fee) warehouseServiceFee, |
||||
sum(lswp.real_warehouse_service_fee) realWarehouseServiceFee, |
||||
sum(lswp.warehouse_fee) warehouseFee, |
||||
sum(lswp.real_warehouse_fee) realWarehouseFee, |
||||
sum(lswp.warehouse_manage_fee) warehouseManageFee, |
||||
sum(lswp.real_warehouse_manage_fee) realWarehouseManageFee, |
||||
sum(lswp.warehouse_sorting_fee) warehouseSortingFee, |
||||
sum(lswp.real_warehouse_sorting_fee) realWarehouseSortingFee, |
||||
sum(lswp.warehouse_operating_fee) warehouseOperatingFee, |
||||
sum(lswp.real_warehouse_operating_fee) realWarehouseOperatingFee, |
||||
sum(lsdp.delivery_service_fee) deliveryServiceFee, |
||||
sum(lsdp.real_delivery_service_fee) realDeliveryServiceFee, |
||||
sum(lsdp.delivery_fee) deliveryFee, |
||||
sum(lsdp.real_delivery_fee) realDeliveryFee, |
||||
sum(lsdp.delivery_loading_fee) deliveryLoadingFee, |
||||
sum(lsdp.real_delivery_loading_fee) realDeliveryLoadingFee, |
||||
sum(lsdp.delivery_sorting_fee) deliverySortingFee, |
||||
sum(lsdp.real_delivery_sorting_fee) realDeliverySortingFee, |
||||
sum(lsdp.delivery_upfloor_fee) deliveryUpfloorFee, |
||||
sum(lsdp.real_delivery_upfloor_fee) realDeliveryUpfloorFee, |
||||
sum(lsdp.delivery_move_fee) deliveryMoveFee, |
||||
sum(lsdp.real_delivery_move_fee) realDeliveryMoveFee, |
||||
max(lsdp.delivery_distance) deliveryDistance, |
||||
max(lsdp.real_delivery_distance) realDeliveryDistance, |
||||
sum(lsdp.delivery_crossing_fee) deliveryCrossingFee, |
||||
sum(lsdp.real_delivery_crossing_fee) realDeliveryCrossingFee, |
||||
sum(lstp.total_price+lswp.total_price+lsdp.total_price)+lsoi.changes_fee totalStatementFee, |
||||
sum(IF(lsdp.is_sign = 0,0,lsdp.total_num)) signNum, |
||||
max(lsdp.sign_time) signTime |
||||
from logpm_statistics_order_info lsoi |
||||
left join logpm_warehouse_waybill lww on lww.id = lsoi.waybill_id |
||||
left join (select ltwr.waybill_id from logpm_trunkline_waybill_return ltwr group by ltwr.waybill_id) twr on twr.waybill_id = lww.id |
||||
left join logpm_statistics_trunkline_package lstp on lstp.order_info_id = lsoi.id |
||||
left join logpm_statistics_warehouse_package lswp on lswp.order_info_id = lstp.order_info_id and lswp.order_package_code = lstp.order_package_code |
||||
left join logpm_statistics_distribution_package lsdp on lsdp.order_info_id = lswp.order_info_id = lsdp.order_package_code = lswp.order_package_code |
||||
left join logpm_statistics_changes_record lscr on lscr.order_info_id = lsoi.id |
||||
where 1=1 |
||||
and lsoi.id in |
||||
<foreach collection="orderInfoIds" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</select> |
||||
|
||||
</mapper> |
@ -1,9 +1,16 @@
|
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.statistics.dto.MerchantStatisticsDTO; |
||||
import com.logpm.statistics.entity.StatisticsWaybillInfoEntity; |
||||
import com.logpm.statistics.vo.StatisticsWaybillInfoVO; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import org.apache.ibatis.annotations.Param; |
||||
|
||||
@Mapper |
||||
public interface StatisticsWaybillInfoMapper extends BaseMapper<StatisticsWaybillInfoEntity> { |
||||
|
||||
|
||||
|
||||
} |
||||
|
@ -0,0 +1,111 @@
|
||||
<?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.statistics.mapper.StatisticsWaybillInfoMapper"> |
||||
|
||||
<select id="pageList" resultType="com.logpm.statistics.vo.StatisticsWaybillInfoVO"> |
||||
select lsoi.order_code, |
||||
lsoi.waybill_no, |
||||
lww.brand, |
||||
lww.shipper, |
||||
lww.shipper_name, |
||||
lww.shipper_mobile, |
||||
lww.shipper_address, |
||||
lww.consignee, |
||||
lww.consignee_name, |
||||
lww.consignee_mobile, |
||||
lww.consignee_address, |
||||
lww.waybill_status, |
||||
lsoi.sign_status, |
||||
'', |
||||
lbsb.mold, |
||||
lww.check_user_id, |
||||
lww.create_time, |
||||
lww.goods_name, |
||||
lww.departure, |
||||
lww.destination, |
||||
lww.departure_warehouse_name, |
||||
lww.destination_warehouse_name, |
||||
lww.delivery_method, |
||||
lww.customer_train, |
||||
IF(twr.waybill_id is null,0,1), |
||||
lww.remark, |
||||
'', |
||||
lww.pay_type, |
||||
lww.pay_way, |
||||
lsoi.confirm_statistics_order, |
||||
lsoi.confirm_statistics_user_name, |
||||
lsoi.confirm_statistics_time, |
||||
GROUP_CONCAT(DISTINCT lstp.product_name), |
||||
sum(lstp.total_num), |
||||
sum(lstp.total_weight), |
||||
sum(lstp.total_volume), |
||||
sum(lstp.open_price+lswp.open_price+lsdp.open_price), |
||||
sum(lstp.total_price+lswp.total_price+lsdp.total_price), |
||||
sum(lstp.pickup_fee), |
||||
sum(lstp.real_pickup_fee), |
||||
sum(lstp.freight_fee), |
||||
sum(lstp.real_freight_fee), |
||||
sum(lstp.install_fee), |
||||
sum(lstp.real_install_fee), |
||||
sum(lstp.quotation_fee), |
||||
sum(lstp.real_quotation_fee), |
||||
sum(lstp.claiming_value), |
||||
sum(lstp.real_claiming_value), |
||||
sum(lstp.other_fee), |
||||
sum(lstp.real_other_fee), |
||||
sum(lstp.return_fee), |
||||
sum(lstp.real_return_fee), |
||||
sum(lstp.third_opration_fee), |
||||
sum(lstp.real_third_opration_fee), |
||||
sum(lstp.x_pay), |
||||
sum(lstp.real_x_pay), |
||||
sum(lstp.d_pay), |
||||
sum(lstp.real_d_pay), |
||||
sum(lstp.h_pay), |
||||
sum(lstp.real_h_pay), |
||||
sum(lstp.y_pay), |
||||
sum(lstp.real_y_pay), |
||||
min(lswp.incoming_time), |
||||
max(lswp.outing_time), |
||||
sum(lswp.warehouse_service_fee), |
||||
sum(lswp.real_warehouse_service_fee), |
||||
sum(lswp.warehouse_fee), |
||||
sum(lswp.real_warehouse_fee), |
||||
sum(lswp.warehouse_manage_fee), |
||||
sum(lswp.real_warehouse_manage_fee), |
||||
sum(lswp.warehouse_sorting_fee), |
||||
sum(lswp.real_warehouse_sorting_fee), |
||||
sum(lswp.warehouse_operating_fee), |
||||
sum(lswp.real_warehouse_operating_fee), |
||||
sum(lsdp.delivery_service_fee), |
||||
sum(lsdp.real_delivery_service_fee), |
||||
sum(lsdp.delivery_fee), |
||||
sum(lsdp.real_delivery_fee), |
||||
sum(lsdp.delivery_loading_fee), |
||||
sum(lsdp.real_delivery_loading_fee), |
||||
sum(lsdp.delivery_sorting_fee), |
||||
sum(lsdp.real_delivery_sorting_fee), |
||||
sum(lsdp.delivery_upfloor_fee), |
||||
sum(lsdp.real_delivery_upfloor_fee), |
||||
sum(lsdp.delivery_move_fee), |
||||
sum(lsdp.real_delivery_move_fee), |
||||
max(lsdp.delivery_distance), |
||||
max(lsdp.real_delivery_distance), |
||||
sum(lsdp.delivery_crossing_fee), |
||||
sum(lsdp.real_delivery_crossing_fee), |
||||
sum(lstp.total_price+lswp.total_price+lsdp.total_price)+0, |
||||
sum(IF(lsdp.is_sign = 0,0,lsdp.total_num)), |
||||
max(lsdp.sign_time) |
||||
from logpm_statistics_order_info lsoi |
||||
left join logpm_warehouse_waybill lww on lww.id = lsoi.waybill_id |
||||
left join logpm_basicdata_store_business lbsb on lbsb.client_id = lww.consignee_id and lbsb.type_service = 3 |
||||
left join (select ltwr.waybill_id from logpm_trunkline_waybill_return ltwr group by ltwr.waybill_id) twr on twr.waybill_id = lww.id |
||||
left join logpm_statistics_trunkline_package lstp on lstp.order_info_id = lsoi.id |
||||
left join logpm_statistics_warehouse_package lswp on lswp.order_info_id = lstp.order_info_id and lswp.order_package_code = lstp.order_package_code |
||||
left join logpm_statistics_distribution_package lsdp on lsdp.order_info_id = lswp.order_info_id = lsdp.order_package_code = lswp.order_package_code |
||||
where 1=1 |
||||
group by lsoi.order_code, |
||||
lsoi.waybill_no |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,7 @@
|
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalPhotoEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IStatisticsBalanceAbnormalPhotoService extends BaseService<StatisticsBalanceAbnormalPhotoEntity> { |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IStatisticsBalanceAbnormalService extends BaseService<StatisticsBalanceAbnormalEntity> { |
||||
} |
@ -0,0 +1,22 @@
|
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.statistics.dto.MerchantStatisticsDTO; |
||||
import com.logpm.statistics.dto.StatisticsBalanceAbnormalDTO; |
||||
import com.logpm.statistics.dto.StatisticsBalanceRecordDTO; |
||||
import com.logpm.statistics.entity.StatisticsBalanceOrderInfoEntity; |
||||
import com.logpm.statistics.vo.StatisticsBalanceOrderInfoVO; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import org.springblade.core.tool.api.R; |
||||
|
||||
public interface IStatisticsBalanceOrderInfoService extends BaseService<StatisticsBalanceOrderInfoEntity> { |
||||
IPage<StatisticsBalanceOrderInfoVO> pageList(MerchantStatisticsDTO merchantStatisticsDTO); |
||||
|
||||
R addAbnormal(StatisticsBalanceAbnormalDTO balanceAbnormalDTO); |
||||
|
||||
R findAbnormalList(StatisticsBalanceAbnormalDTO balanceAbnormalDTO); |
||||
|
||||
R addBalanceRecord(StatisticsBalanceRecordDTO balanceRecordDTO); |
||||
|
||||
R findRecordList(StatisticsBalanceRecordDTO balanceRecordDTO); |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordPhotoEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IStatisticsBalanceRecordPhotoService extends BaseService<StatisticsBalanceRecordPhotoEntity> { |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IStatisticsBalanceRecordService extends BaseService<StatisticsBalanceRecordEntity> { |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsChangesPhotoEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IStatisticsChangesPhotoService extends BaseService<StatisticsChangesPhotoEntity> { |
||||
} |
@ -0,0 +1,10 @@
|
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsChangesRecordEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
public interface IStatisticsChangesRecordService extends BaseService<StatisticsChangesRecordEntity> { |
||||
BigDecimal findChangesFeeByOrderInfoId(Long orderInfoId); |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalPhotoEntity; |
||||
import com.logpm.statistics.mapper.StatisticsBalanceAbnormalPhotoMapper; |
||||
import com.logpm.statistics.service.IStatisticsBalanceAbnormalPhotoService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class StatisticsBalanceAbnormalPhotoServiceImpl extends BaseServiceImpl<StatisticsBalanceAbnormalPhotoMapper, StatisticsBalanceAbnormalPhotoEntity> implements IStatisticsBalanceAbnormalPhotoService { |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceAbnormalEntity; |
||||
import com.logpm.statistics.mapper.StatisticsBalanceAbnormalMapper; |
||||
import com.logpm.statistics.service.IStatisticsBalanceAbnormalService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class StatisticsBalanceAbnormalServiceImpl extends BaseServiceImpl<StatisticsBalanceAbnormalMapper, StatisticsBalanceAbnormalEntity> implements IStatisticsBalanceAbnormalService { |
||||
} |
@ -0,0 +1,217 @@
|
||||
package com.logpm.statistics.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.statistics.dto.MerchantStatisticsDTO; |
||||
import com.logpm.statistics.dto.StatisticsBalanceAbnormalDTO; |
||||
import com.logpm.statistics.dto.StatisticsBalanceRecordDTO; |
||||
import com.logpm.statistics.entity.*; |
||||
import com.logpm.statistics.mapper.StatisticsBalanceOrderInfoMapper; |
||||
import com.logpm.statistics.service.*; |
||||
import com.logpm.statistics.vo.StatisticsBalanceAbnormalVO; |
||||
import com.logpm.statistics.vo.StatisticsBalanceOrderInfoVO; |
||||
import com.logpm.statistics.vo.StatisticsBalanceRecordVO; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springblade.core.secure.utils.AuthUtil; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import org.springframework.stereotype.Service; |
||||
import org.springframework.transaction.annotation.Transactional; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import java.util.Objects; |
||||
import java.util.stream.Collectors; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class StatisticsBalanceOrderInfoServiceImpl extends BaseServiceImpl<StatisticsBalanceOrderInfoMapper, StatisticsBalanceOrderInfoEntity> implements IStatisticsBalanceOrderInfoService { |
||||
|
||||
private final IStatisticsBalanceAbnormalService balanceAbnormalService; |
||||
private final IStatisticsBalanceAbnormalPhotoService balanceAbnormalPhotoService; |
||||
private final IStatisticsBalanceRecordService balanceRecordService; |
||||
private final IStatisticsBalanceRecordPhotoService balanceRecordPhotoService; |
||||
|
||||
@Override |
||||
public IPage<StatisticsBalanceOrderInfoVO> pageList(MerchantStatisticsDTO merchantStatisticsDTO) { |
||||
|
||||
IPage<Object> page = new Page<>(); |
||||
page.setCurrent(merchantStatisticsDTO.getPageNum()); |
||||
page.setSize(merchantStatisticsDTO.getPageSize()); |
||||
|
||||
return baseMapper.pageList(page,merchantStatisticsDTO); |
||||
} |
||||
|
||||
@Transactional(rollbackFor = Exception.class) |
||||
@Override |
||||
public R addAbnormal(StatisticsBalanceAbnormalDTO balanceAbnormalDTO) { |
||||
StatisticsBalanceAbnormalEntity balanceAbnormalEntity = new StatisticsBalanceAbnormalEntity(); |
||||
BeanUtil.copy(balanceAbnormalDTO,balanceAbnormalEntity); |
||||
balanceAbnormalEntity.setAbnormalUserName(AuthUtil.getNickName()); |
||||
|
||||
balanceAbnormalService.save(balanceAbnormalEntity); |
||||
|
||||
|
||||
List<StatisticsBalanceAbnormalPhotoEntity> abnormalPhotoEntityList = balanceAbnormalDTO.getAbnormalPhotoEntityList(); |
||||
|
||||
abnormalPhotoEntityList.forEach(abnormalPhotoEntity -> { |
||||
abnormalPhotoEntity.setAbnormalId(balanceAbnormalEntity.getId()); |
||||
}); |
||||
|
||||
balanceAbnormalPhotoService.saveBatch(abnormalPhotoEntityList); |
||||
|
||||
Long balanceOrderInfoId = balanceAbnormalEntity.getBalanceOrderInfoId(); |
||||
|
||||
StatisticsBalanceOrderInfoEntity balanceOrderInfoEntity = baseMapper.selectById(balanceOrderInfoId); |
||||
if(Objects.isNull(balanceOrderInfoEntity)){ |
||||
log.warn("###########addAbnormal: 结算单信息不存在 balanceOrderInfoEntity={}",balanceOrderInfoEntity); |
||||
return R.fail(405,"结算单信息不存在"); |
||||
} |
||||
BigDecimal totalBalanceFee = balanceOrderInfoEntity.getTotalBalanceFee(); |
||||
BigDecimal hasBalanceFee = balanceOrderInfoEntity.getHasBalanceFee(); |
||||
BigDecimal abnormalFee = balanceAbnormalEntity.getAbnormalFee(); |
||||
|
||||
BigDecimal total = totalBalanceFee.add(abnormalFee); |
||||
|
||||
balanceOrderInfoEntity.setAbnormalBalanceStatus(1); |
||||
balanceOrderInfoEntity.setAbnormalBalanceFee(balanceOrderInfoEntity.getAbnormalBalanceFee().add(abnormalFee)); |
||||
balanceOrderInfoEntity.setAbnormalTime(balanceAbnormalEntity.getCreateTime()); |
||||
balanceOrderInfoEntity.setAbnormalUserName(balanceAbnormalEntity.getAbnormalUserName()); |
||||
balanceOrderInfoEntity.setAbnormalRemark(balanceAbnormalEntity.getAbnormalRemark()); |
||||
if(hasBalanceFee.compareTo(total) >= 0){ |
||||
balanceOrderInfoEntity.setBalanceStatus(2); |
||||
}else{ |
||||
if(hasBalanceFee.compareTo(BigDecimal.ZERO) == 0){ |
||||
balanceOrderInfoEntity.setBalanceStatus(0); |
||||
}else{ |
||||
balanceOrderInfoEntity.setBalanceStatus(1); |
||||
} |
||||
} |
||||
updateById(balanceOrderInfoEntity); |
||||
|
||||
return R.success("添加成功"); |
||||
} |
||||
|
||||
@Override |
||||
public R findAbnormalList(StatisticsBalanceAbnormalDTO balanceAbnormalDTO) { |
||||
Long balanceOrderInfoId = balanceAbnormalDTO.getBalanceOrderInfoId(); |
||||
|
||||
QueryWrapper<StatisticsBalanceAbnormalEntity> balanceAbnormalEntityQueryWrapper = new QueryWrapper<>(); |
||||
balanceAbnormalEntityQueryWrapper.eq("balance_order_info_id",balanceOrderInfoId); |
||||
|
||||
List<StatisticsBalanceAbnormalEntity> list = balanceAbnormalService.list(balanceAbnormalEntityQueryWrapper); |
||||
//把list中所有元素的id放到一个List集合中
|
||||
List<Long> idList= list.stream() |
||||
.map(StatisticsBalanceAbnormalEntity::getId) |
||||
.collect(Collectors.toList()); |
||||
|
||||
QueryWrapper<StatisticsBalanceAbnormalPhotoEntity> balanceAbnormalPhotoEntityQueryWrapper = new QueryWrapper<>(); |
||||
balanceAbnormalPhotoEntityQueryWrapper.in("abnormal_id",idList); |
||||
|
||||
List<StatisticsBalanceAbnormalPhotoEntity> abnormalPhotoEntityList = balanceAbnormalPhotoService.list(balanceAbnormalPhotoEntityQueryWrapper); |
||||
//把abnormalPhotoEntityList中所有元素按照abnormalId进行分组
|
||||
Map<Long, List<StatisticsBalanceAbnormalPhotoEntity>> groupedPhotos = abnormalPhotoEntityList.stream() |
||||
.collect(Collectors.groupingBy(StatisticsBalanceAbnormalPhotoEntity::getAbnormalId)); |
||||
|
||||
list.forEach(balanceAbnormalEntity -> { |
||||
StatisticsBalanceAbnormalVO balanceAbnormalVO = new StatisticsBalanceAbnormalVO(); |
||||
BeanUtil.copy(balanceAbnormalEntity,balanceAbnormalVO); |
||||
balanceAbnormalVO.setAbnormalPhotoEntityList(groupedPhotos.get(balanceAbnormalEntity.getId())); |
||||
}); |
||||
|
||||
return R.data(list); |
||||
} |
||||
|
||||
@Transactional(rollbackFor = Exception.class) |
||||
@Override |
||||
public R addBalanceRecord(StatisticsBalanceRecordDTO balanceRecordDTO) { |
||||
StatisticsBalanceRecordEntity balanceRecordEntity = new StatisticsBalanceRecordEntity(); |
||||
BeanUtil.copy(balanceRecordDTO,balanceRecordEntity); |
||||
balanceRecordEntity.setBalanceUserName(AuthUtil.getNickName()); |
||||
|
||||
balanceRecordService.save(balanceRecordEntity); |
||||
|
||||
List<StatisticsBalanceRecordPhotoEntity> recordPhotoEntityList = balanceRecordDTO.getRecordPhotoEntityList(); |
||||
|
||||
recordPhotoEntityList.forEach(recordPhotoEntity -> { |
||||
recordPhotoEntity.setRecordId(balanceRecordEntity.getId()); |
||||
}); |
||||
|
||||
balanceRecordPhotoService.saveBatch(recordPhotoEntityList); |
||||
|
||||
Long balanceOrderInfoId = balanceRecordDTO.getBalanceOrderInfoId(); |
||||
|
||||
StatisticsBalanceOrderInfoEntity balanceOrderInfoEntity = baseMapper.selectById(balanceOrderInfoId); |
||||
if(Objects.isNull(balanceOrderInfoEntity)){ |
||||
log.warn("###########addBalanceRecord: 结算单信息不存在 balanceOrderInfoEntity={}",balanceOrderInfoEntity); |
||||
return R.fail(405,"结算单信息不存在"); |
||||
} |
||||
|
||||
BigDecimal balanceFee = balanceRecordEntity.getBalanceFee(); |
||||
|
||||
BigDecimal totalBalanceFee = balanceOrderInfoEntity.getTotalBalanceFee(); |
||||
BigDecimal abnormalBalanceFee = balanceOrderInfoEntity.getAbnormalBalanceFee(); |
||||
|
||||
BigDecimal total = totalBalanceFee.add(abnormalBalanceFee); |
||||
BigDecimal hasBalanceFee = balanceOrderInfoEntity.getHasBalanceFee(); |
||||
|
||||
BigDecimal newHasBalanceFee = hasBalanceFee.add(balanceFee); |
||||
|
||||
if(newHasBalanceFee.compareTo(total) >= 0){ |
||||
balanceOrderInfoEntity.setBalanceStatus(2); |
||||
balanceOrderInfoEntity.setNoBalanceFee(BigDecimal.ZERO); |
||||
}else{ |
||||
balanceOrderInfoEntity.setBalanceStatus(1); |
||||
balanceOrderInfoEntity.setNoBalanceFee(total.subtract(newHasBalanceFee)); |
||||
} |
||||
|
||||
balanceOrderInfoEntity.setHasBalanceFee(newHasBalanceFee); |
||||
balanceOrderInfoEntity.setBalanceTime(balanceRecordEntity.getCreateTime()); |
||||
balanceOrderInfoEntity.setBalanceUserName(balanceRecordEntity.getBalanceUserName()); |
||||
balanceOrderInfoEntity.setBalanceRemark(balanceRecordEntity.getBalanceRemark()); |
||||
|
||||
updateById(balanceOrderInfoEntity); |
||||
|
||||
return R.success("添加成功"); |
||||
} |
||||
|
||||
@Override |
||||
public R findRecordList(StatisticsBalanceRecordDTO balanceRecordDTO) { |
||||
|
||||
Long balanceOrderInfoId = balanceRecordDTO.getBalanceOrderInfoId(); |
||||
|
||||
QueryWrapper<StatisticsBalanceRecordEntity> balanceAbnormalEntityQueryWrapper = new QueryWrapper<>(); |
||||
balanceAbnormalEntityQueryWrapper.eq("balance_order_info_id",balanceOrderInfoId); |
||||
|
||||
List<StatisticsBalanceRecordEntity> list = balanceRecordService.list(balanceAbnormalEntityQueryWrapper); |
||||
//把list中所有元素的id放到一个List集合中
|
||||
List<Long> idList= list.stream() |
||||
.map(StatisticsBalanceRecordEntity::getId) |
||||
.collect(Collectors.toList()); |
||||
|
||||
QueryWrapper<StatisticsBalanceRecordPhotoEntity> balanceRecordPhotoEntityQueryWrapper = new QueryWrapper<>(); |
||||
balanceRecordPhotoEntityQueryWrapper.in("record_id",idList); |
||||
|
||||
List<StatisticsBalanceRecordPhotoEntity> recordPhotoEntityList = balanceRecordPhotoService.list(balanceRecordPhotoEntityQueryWrapper); |
||||
//把abnormalPhotoEntityList中所有元素按照abnormalId进行分组
|
||||
Map<Long, List<StatisticsBalanceRecordPhotoEntity>> groupedPhotos = recordPhotoEntityList.stream() |
||||
.collect(Collectors.groupingBy(StatisticsBalanceRecordPhotoEntity::getRecordId)); |
||||
|
||||
list.forEach(balanceRecordEntity -> { |
||||
StatisticsBalanceRecordVO balanceRecordVO = new StatisticsBalanceRecordVO(); |
||||
BeanUtil.copy(balanceRecordEntity,balanceRecordVO); |
||||
balanceRecordVO.setRecordPhotoEntityList(groupedPhotos.get(balanceRecordEntity.getId())); |
||||
balanceRecordVO.setBalanceUserName(balanceRecordEntity.getBalanceUserName()); |
||||
balanceRecordVO.setBalanceRemark(balanceRecordEntity.getBalanceRemark()); |
||||
}); |
||||
|
||||
return R.data(list); |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordPhotoEntity; |
||||
import com.logpm.statistics.mapper.StatisticsBalanceRecordPhotoMapper; |
||||
import com.logpm.statistics.service.IStatisticsBalanceRecordPhotoService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class StatisticsBalanceRecordPhotoServiceImpl extends BaseServiceImpl<StatisticsBalanceRecordPhotoMapper, StatisticsBalanceRecordPhotoEntity> implements IStatisticsBalanceRecordPhotoService { |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsBalanceRecordEntity; |
||||
import com.logpm.statistics.mapper.StatisticsBalanceRecordMapper; |
||||
import com.logpm.statistics.service.IStatisticsBalanceRecordService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class StatisticsBalanceRecordServiceImpl extends BaseServiceImpl<StatisticsBalanceRecordMapper, StatisticsBalanceRecordEntity> implements IStatisticsBalanceRecordService { |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsChangesPhotoEntity; |
||||
import com.logpm.statistics.mapper.StatisticsChangesPhotoMapper; |
||||
import com.logpm.statistics.service.IStatisticsChangesPhotoService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class StatisticsChangesPhotoServiceImpl extends BaseServiceImpl<StatisticsChangesPhotoMapper, StatisticsChangesPhotoEntity> implements IStatisticsChangesPhotoService { |
||||
} |
@ -0,0 +1,21 @@
|
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsChangesRecordEntity; |
||||
import com.logpm.statistics.mapper.StatisticsChangesRecordMapper; |
||||
import com.logpm.statistics.service.IStatisticsChangesRecordService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class StatisticsChangesRecordServiceImpl extends BaseServiceImpl<StatisticsChangesRecordMapper, StatisticsChangesRecordEntity> implements IStatisticsChangesRecordService { |
||||
@Override |
||||
public BigDecimal findChangesFeeByOrderInfoId(Long orderInfoId) { |
||||
return baseMapper.findChangesFeeByOrderInfoId(orderInfoId); |
||||
} |
||||
} |
@ -1,15 +1,25 @@
|
||||
package com.logpm.statistics.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.statistics.dto.MerchantStatisticsDTO; |
||||
import com.logpm.statistics.entity.StatisticsChangesRecordEntity; |
||||
import com.logpm.statistics.entity.StatisticsWaybillInfoEntity; |
||||
import com.logpm.statistics.mapper.StatisticsWaybillInfoMapper; |
||||
import com.logpm.statistics.service.IStatisticsWaybillInfoService; |
||||
import com.logpm.statistics.vo.StatisticsChangesRecordVO; |
||||
import com.logpm.statistics.vo.StatisticsWaybillInfoVO; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class StatisticsWaybillInfoServiceImpl extends BaseServiceImpl<StatisticsWaybillInfoMapper, StatisticsWaybillInfoEntity> implements IStatisticsWaybillInfoService { |
||||
|
||||
} |
||||
|
Loading…
Reference in new issue