|
|
@@ -37,7 +37,6 @@ import com.cyksj.model.response.OrderDonAccountRep;
|
|
|
import com.cyksj.model.views.*;
|
|
|
import com.cyksj.redis.RedisService;
|
|
|
import com.cyksj.service.chatgpt.ChatGptAccountService;
|
|
|
-import com.cyksj.service.mail.YhMailService;
|
|
|
import com.cyksj.service.mange.AccountCommonService;
|
|
|
import com.cyksj.service.mange.CmsAccountService;
|
|
|
import com.cyksj.service.mange.CmsGroupService;
|
|
|
@@ -490,6 +489,13 @@ public class CmsAccountController {
|
|
|
if (StrUtil.isNotBlank(isMonth)) {
|
|
|
at.setIsMonth(true);
|
|
|
}
|
|
|
+ String outsidePurchase = data.getOutsidePurchase();
|
|
|
+ if (StrUtil.isNotEmpty(outsidePurchase)) {
|
|
|
+ if (outsidePurchase.equals("是") || outsidePurchase.equals("1")) {
|
|
|
+ at.setOutsidePurchase(true);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ at.setVerifyLink(data.getVerifyLink());
|
|
|
if (StrUtil.isNotBlank(startTime)) {
|
|
|
at.setStartTime(DateUtil.parse(startTime));
|
|
|
} else {
|
|
|
@@ -1143,6 +1149,8 @@ public class CmsAccountController {
|
|
|
insert.setEmail(data.getSecondEmail());
|
|
|
//关联邮箱
|
|
|
insert.setRelateEmail(data.getRelateEmail());
|
|
|
+ //验证链接
|
|
|
+ insert.setVerifyLink(data.getVerifyLink());
|
|
|
//账号是否已经添加过
|
|
|
if (!insert.getAccount().contains("客服")) {
|
|
|
if (accountCommonService.checkIsDupAccount(insert.getGoodsId(), insert.getAccount())) {
|