挂账退款
This commit is contained in:
@@ -186,6 +186,10 @@ public class FinanceStsDTO {
|
|||||||
* 现金退款金额
|
* 现金退款金额
|
||||||
*/
|
*/
|
||||||
private BigDecimal cashRefundAmount;
|
private BigDecimal cashRefundAmount;
|
||||||
|
/**
|
||||||
|
* 挂账退款金额
|
||||||
|
*/
|
||||||
|
private BigDecimal creditRefundAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 充值退款金额
|
* 充值退款金额
|
||||||
|
|||||||
@@ -221,6 +221,8 @@ public class ShopOrderStatistic implements Serializable {
|
|||||||
*/
|
*/
|
||||||
@ExcelProperty("订单退款金额")
|
@ExcelProperty("订单退款金额")
|
||||||
private BigDecimal refundAmount;
|
private BigDecimal refundAmount;
|
||||||
|
@ExcelProperty("订单挂账退款金额")
|
||||||
|
private BigDecimal creditRefundAmount;
|
||||||
/**
|
/**
|
||||||
* 订单退款 线上退款金额
|
* 订单退款 线上退款金额
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -210,6 +210,7 @@ public interface ShopOrderStatisticMapper extends BaseMapper<ShopOrderStatistic>
|
|||||||
" SUM(CASE WHEN pay_type = 'free_pay' THEN order_amount ELSE 0 END) AS backDiscountAmount," +
|
" SUM(CASE WHEN pay_type = 'free_pay' THEN order_amount ELSE 0 END) AS backDiscountAmount," +
|
||||||
" " +
|
" " +
|
||||||
" SUM(CASE WHEN pay_type = 'vip_pay' THEN refund_amount ELSE 0 END) AS memberRefundAmount," +
|
" SUM(CASE WHEN pay_type = 'vip_pay' THEN refund_amount ELSE 0 END) AS memberRefundAmount," +
|
||||||
|
" SUM(CASE WHEN pay_type = 'credit_pay' THEN refund_amount ELSE 0 END) AS creditRefundAmount," +
|
||||||
" " +
|
" " +
|
||||||
" SUM(CASE WHEN pay_type = 'vip_pay' THEN 1 ELSE 0 END) as memberPayCount," +
|
" SUM(CASE WHEN pay_type = 'vip_pay' THEN 1 ELSE 0 END) as memberPayCount," +
|
||||||
" SUM(CASE WHEN pay_type = 'cash_pay' THEN 1 ELSE 0 END) as cashPayCount," +
|
" SUM(CASE WHEN pay_type = 'cash_pay' THEN 1 ELSE 0 END) as cashPayCount," +
|
||||||
|
|||||||
@@ -62,6 +62,7 @@ public class FinanceStsServiceImpl implements FinanceStsService {
|
|||||||
.setRefundAmount(statistic.getRefundAmount().add(statistic.getRechargeRefundAmount()))
|
.setRefundAmount(statistic.getRefundAmount().add(statistic.getRechargeRefundAmount()))
|
||||||
.setOnlineRefundAmount(statistic.getOnlineRefundAmount())
|
.setOnlineRefundAmount(statistic.getOnlineRefundAmount())
|
||||||
.setCashRefundAmount(statistic.getCashRefundAmount())
|
.setCashRefundAmount(statistic.getCashRefundAmount())
|
||||||
|
.setCreditRefundAmount(statistic.getCreditRefundAmount())
|
||||||
.setMemberRefundAmount(statistic.getMemberRefundAmount())
|
.setMemberRefundAmount(statistic.getMemberRefundAmount())
|
||||||
.setRechargeRefundAmount(statistic.getRechargeRefundAmount())
|
.setRechargeRefundAmount(statistic.getRechargeRefundAmount())
|
||||||
.setOnlineRechargeRefundAmount(statistic.getOnlineRechargeRefundAmount())
|
.setOnlineRechargeRefundAmount(statistic.getOnlineRechargeRefundAmount())
|
||||||
|
|||||||
Reference in New Issue
Block a user