| | |
| | | import cn.lili.modules.order.order.service.OrderService; |
| | | import cn.lili.modules.order.order.service.StoreFlowService; |
| | | import cn.lili.modules.payment.entity.RefundLog; |
| | | import cn.lili.modules.payment.entity.enums.PaymentMethodEnum; |
| | | import cn.lili.modules.payment.service.RefundLogService; |
| | | import cn.lili.modules.store.entity.dos.Bill; |
| | | import cn.lili.modules.store.entity.dto.BillSearchParams; |
| | |
| | | -storeFlow.getDistributionRebate() |
| | | ) |
| | | ); |
| | | //特殊处理0元购的退款账单 |
| | | if (PaymentMethodEnum.BANK_TRANSFER.name().equals(payStoreFlow.getPaymentName())&&"-1".equals(payStoreFlow.getTransactionId())) { |
| | | if (Double.valueOf(0).equals(payStoreFlow.getBillPrice())) { |
| | | storeFlow.setBillPrice(0D); |
| | | } |
| | | } |
| | | //退款日志 |
| | | RefundLog refundLog = refundLogService.queryByAfterSaleSn(afterSale.getSn()); |
| | | //第三方流水单号 |