|
@@ -437,6 +437,7 @@ func SendEmailUserWhiteListChange(cont context.Context) (err error) {
|
|
//手机号新增
|
|
//手机号新增
|
|
fieldStr = ` u.mobile,u.country_code,u.real_name,c.company_name,u.company_id,cp.seller_name,cp.status,`
|
|
fieldStr = ` u.mobile,u.country_code,u.real_name,c.company_name,u.company_id,cp.seller_name,cp.status,`
|
|
condition = ` AND cp.status IN ( '正式', '试用' ) AND u.mobile IN (` + mobileStr + `) `
|
|
condition = ` AND cp.status IN ( '正式', '试用' ) AND u.mobile IN (` + mobileStr + `) `
|
|
|
|
+ condition += ` AND u.mobile !='' AND DATE_SUB(CURDATE(), INTERVAL 2 DAY) <= DATE(u.created_time )`
|
|
listMobile, err := models.GetFormalUserWhiteList(fieldStr, condition)
|
|
listMobile, err := models.GetFormalUserWhiteList(fieldStr, condition)
|
|
if err != nil {
|
|
if err != nil {
|
|
msg = "获取失败,Err:" + err.Error()
|
|
msg = "获取失败,Err:" + err.Error()
|
|
@@ -450,11 +451,13 @@ func SendEmailUserWhiteListChange(cont context.Context) (err error) {
|
|
outboundMobileStr = strings.Replace(outboundMobileStr, " ", "", -1)
|
|
outboundMobileStr = strings.Replace(outboundMobileStr, " ", "", -1)
|
|
fieldStr = ` u.outbound_mobile as mobile,u.outbound_country_code as country_code,u.real_name,c.company_name,u.company_id,cp.status,`
|
|
fieldStr = ` u.outbound_mobile as mobile,u.outbound_country_code as country_code,u.real_name,c.company_name,u.company_id,cp.status,`
|
|
condition = ` AND cp.status IN ( '正式', '试用' ) AND u.outbound_mobile IN (` + outboundMobileStr + `) `
|
|
condition = ` AND cp.status IN ( '正式', '试用' ) AND u.outbound_mobile IN (` + outboundMobileStr + `) `
|
|
|
|
+ condition += ` AND DATE_SUB(CURDATE(), INTERVAL 2 DAY) <= DATE(u.created_time )`
|
|
listOutboundMobile, err := models.GetFormalUserWhiteList(fieldStr, condition)
|
|
listOutboundMobile, err := models.GetFormalUserWhiteList(fieldStr, condition)
|
|
if err != nil {
|
|
if err != nil {
|
|
msg = "获取失败,Err:" + err.Error()
|
|
msg = "获取失败,Err:" + err.Error()
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+
|
|
var rep models.UserWhiteListRep
|
|
var rep models.UserWhiteListRep
|
|
var repList []*models.UserWhiteList
|
|
var repList []*models.UserWhiteList
|
|
repList = listMobile
|
|
repList = listMobile
|
|
@@ -463,7 +466,16 @@ func SendEmailUserWhiteListChange(cont context.Context) (err error) {
|
|
repList = append(listMobile, v)
|
|
repList = append(listMobile, v)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- rep.List = repList
|
|
|
|
|
|
+
|
|
|
|
+ //新增用户,过滤手机号为空的
|
|
|
|
+ for _, v := range repList {
|
|
|
|
+ if v.Mobile == "" {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+ rep.List = append(rep.List, v)
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ //rep.List = repList
|
|
//创建excel
|
|
//创建excel
|
|
dir, errFile := os.Executable()
|
|
dir, errFile := os.Executable()
|
|
exPath := filepath.Dir(dir)
|
|
exPath := filepath.Dir(dir)
|
|
@@ -640,17 +652,26 @@ func SendEmailUserWhiteListChange(cont context.Context) (err error) {
|
|
//手机号冻结
|
|
//手机号冻结
|
|
listFrozen, err := models.GetFrozenUserWhiteList() //手机号用户修改
|
|
listFrozen, err := models.GetFrozenUserWhiteList() //手机号用户修改
|
|
listFrozenOutbound, err := models.GetFrozenUserWhiteListOutbound() //外呼手机号用户修改
|
|
listFrozenOutbound, err := models.GetFrozenUserWhiteListOutbound() //外呼手机号用户修改
|
|
|
|
+ if err != nil {
|
|
|
|
+ msg = "获取失败,Err:" + err.Error()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
if len(listFrozenOutbound) > 0 {
|
|
if len(listFrozenOutbound) > 0 {
|
|
for _, v := range listFrozenOutbound {
|
|
for _, v := range listFrozenOutbound {
|
|
listFrozen = append(listFrozen, v)
|
|
listFrozen = append(listFrozen, v)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if err != nil {
|
|
|
|
- msg = "获取失败,Err:" + err.Error()
|
|
|
|
- return
|
|
|
|
|
|
+
|
|
|
|
+ var listFrozenUser []*models.WxUserWhite
|
|
|
|
+ for _, v := range listFrozen {
|
|
|
|
+ if v.Mobile == "" {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+ listFrozenUser = append(listFrozenUser, v)
|
|
}
|
|
}
|
|
- if len(listFrozen) > 0 {
|
|
|
|
- for _, item := range listFrozen {
|
|
|
|
|
|
+
|
|
|
|
+ if len(listFrozenUser) > 0 {
|
|
|
|
+ for _, item := range listFrozenUser {
|
|
row := sheet.AddRow()
|
|
row := sheet.AddRow()
|
|
cellA := row.AddCell()
|
|
cellA := row.AddCell()
|
|
cellA.Value = item.RealName
|
|
cellA.Value = item.RealName
|
|
@@ -696,11 +717,10 @@ func SendEmailUserWhiteListChange(cont context.Context) (err error) {
|
|
content = time.Now().Format("2006-01-02") + "删除白名单用户"
|
|
content = time.Now().Format("2006-01-02") + "删除白名单用户"
|
|
fileName = downLoadnFilePaths
|
|
fileName = downLoadnFilePaths
|
|
var sendResult2 bool
|
|
var sendResult2 bool
|
|
- if len(listFrozen) > 0 {
|
|
|
|
|
|
+ if len(listFrozenOutbound) > 0 {
|
|
sendResult2 = utils.SendEmailByHongze(title, content, utils.EmaiWhiteUserList, fileName, title+".xlsx")
|
|
sendResult2 = utils.SendEmailByHongze(title, content, utils.EmaiWhiteUserList, fileName, title+".xlsx")
|
|
}
|
|
}
|
|
- fmt.Println(sendResult2)
|
|
|
|
- fmt.Println(sendResult)
|
|
|
|
|
|
+
|
|
os.Remove(downLoadnFilePaths)
|
|
os.Remove(downLoadnFilePaths)
|
|
//更新名单表
|
|
//更新名单表
|
|
if sendResult {
|
|
if sendResult {
|
|
@@ -726,6 +746,7 @@ func SendEmailUserWhiteListChange(cont context.Context) (err error) {
|
|
if len(listOutboundMobile) > 0 {
|
|
if len(listOutboundMobile) > 0 {
|
|
for _, v := range listOutboundMobile {
|
|
for _, v := range listOutboundMobile {
|
|
item := new(models.WxUserWhite)
|
|
item := new(models.WxUserWhite)
|
|
|
|
+ item.Mobile = v.Mobile
|
|
item.OutboundMobile = v.Mobile
|
|
item.OutboundMobile = v.Mobile
|
|
item.OutboundCountryCode = v.CountryCode
|
|
item.OutboundCountryCode = v.CountryCode
|
|
item.CreatedTime = time.Now()
|
|
item.CreatedTime = time.Now()
|