|
|
@@ -1552,6 +1552,14 @@ public class GroupRelationFrontServiceImpl implements GroupRelationFrontService
|
|
|
.set(NetflixUserAccountStatusRecord::getDeleted, false)
|
|
|
.eq(NetflixUserAccountStatusRecord::getId, netflixRelationView.getNfCheckId()));
|
|
|
}
|
|
|
+ //清除车票
|
|
|
+ GroupsRelation clearRelation = groupsRelationMapper.selectOne(Wrappers.lambdaQuery(GroupsRelation.class)
|
|
|
+ .eq(GroupsRelation::getId, relationId)
|
|
|
+ .in(GroupsRelation::getUserId, userIdList)
|
|
|
+ .last("limit 1"));
|
|
|
+ if (clearRelation != null) {
|
|
|
+ clearService.clearTicket(clearRelation, UserTicketClearedRecord.Source.ticket_replace);
|
|
|
+ }
|
|
|
} finally {
|
|
|
redisService.del(key);
|
|
|
}
|