|
@@ -2516,7 +2516,12 @@ public class GroupRelationFrontServiceImpl implements GroupRelationFrontService
|
|
|
if (refundBalance.compareTo(BigDecimal.ZERO) > 0) {
|
|
if (refundBalance.compareTo(BigDecimal.ZERO) > 0) {
|
|
|
orderDon.setRefundBalance(refundBalance);
|
|
orderDon.setRefundBalance(refundBalance);
|
|
|
}
|
|
}
|
|
|
- orderDon.setRefundDesc("油管掉会员退款");
|
|
|
|
|
|
|
+ String refundDesc = StrUtil.EMPTY;
|
|
|
|
|
+ if (relationView.getIsFrozen()) {
|
|
|
|
|
+ refundDesc = "冻结剩余时长" + relationView.getReservedDays() + "天";
|
|
|
|
|
+ }
|
|
|
|
|
+ refundDesc += "油管掉会员退款";
|
|
|
|
|
+ orderDon.setRefundDesc(refundDesc);
|
|
|
orderDonMapper.updateById(orderDon);
|
|
orderDonMapper.updateById(orderDon);
|
|
|
//记录退款类型
|
|
//记录退款类型
|
|
|
String refundType = getRefundType(refundMoney, refundBalance, orderDon);
|
|
String refundType = getRefundType(refundMoney, refundBalance, orderDon);
|