|
@@ -367,7 +367,9 @@ public class TenantActivationCodeServiceImpl extends ServiceImpl<TenantActivatio
|
|
|
throw new BizException("无可撤回的激活码");
|
|
|
}
|
|
|
|
|
|
- this.sendCancel(tenantInfo, tenantActivationCodes.iterator().next());
|
|
|
+ for (TenantActivationCode code : tenantActivationCodes) {
|
|
|
+ this.sendCancel(tenantInfo, code);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|