|
|
@@ -238,8 +238,8 @@ public class GroupRelationFrontServiceImpl implements GroupRelationFrontService
|
|
|
if (StrUtil.isNotBlank(account)) {
|
|
|
builder.field(RenewalView::getAccount, account).op(Operator.Contain);
|
|
|
}
|
|
|
- //代充剩余次数大于0/未发车/过期时间
|
|
|
- String conditionSql = String.format("(gr.recharge_remain_num > 0 or gr.expiry_time is null or gr.expiry_time > '%s'", now);
|
|
|
+ //代充剩余次数大于0/未发车/过期时间/冻结时
|
|
|
+ String conditionSql = String.format("(gr.recharge_remain_num > 0 or gr.expiry_time is null or gr.expiry_time > '%s' or gr.is_frozen = true", now);
|
|
|
//镜像车票 过期7天后清除
|
|
|
//个人店铺和AI店铺 暂不支持过期续费
|
|
|
if (cmt == null && StrUtil.isEmpty(customId)) {
|