|
@@ -569,7 +569,7 @@ func (this *UserController) ApplyTryOut() {
|
|
|
applyMethod = companyItem.Status + "客户"
|
|
|
}
|
|
|
}
|
|
|
- applyMethod = applyMethod + "," + title
|
|
|
+ applyMethod = applyMethod
|
|
|
}
|
|
|
openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
|
|
|
if openIpItem != nil && openIpItem.OpenId != "" {
|
|
@@ -596,7 +596,8 @@ func (this *UserController) ApplyTryOut() {
|
|
|
applyMethod = "潜在客户"
|
|
|
}
|
|
|
if detailId > 0 {
|
|
|
- applyMethod = applyMethod + "," + title
|
|
|
+ //applyMethod = applyMethod + "," + title
|
|
|
+ applyMethod = applyMethod
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -630,7 +631,7 @@ func (this *UserController) ApplyTryOut() {
|
|
|
go services.SendPermissionApplyTemplateMsg(req.RealName, req.CompanyName, mobile, applyMethod, redirectUrl, user) //权限申请模板消息推送
|
|
|
if isResearch {
|
|
|
//如果是研选的报告走研选的类目模版消息
|
|
|
- go services.SendPermissionApplyTemplateMsgAdminByYxCategory(req, user.CompanyId, mobile, redirectUrl)
|
|
|
+ go services.SendPermissionApplyTemplateMsgAdminByYxCategory(req, user.CompanyId, mobile, applyMethod, redirectUrl)
|
|
|
}
|
|
|
|
|
|
//添加成功后,设置5分钟缓存,不允许重复添加
|