|
@@ -1039,6 +1039,7 @@ func SendWxMsgActivitySpecial10(activityInfo *models.CygxActivitySpecialDetail)
|
|
|
|
|
|
// SendWxMsgActivitySpecialTwoDays 活动开始前两天08:00,提醒报名客户 \提醒报名客户的对口销售
|
|
// SendWxMsgActivitySpecialTwoDays 活动开始前两天08:00,提醒报名客户 \提醒报名客户的对口销售
|
|
func SendWxMsgActivitySpecialTwoDays(cont context.Context) (err error) {
|
|
func SendWxMsgActivitySpecialTwoDays(cont context.Context) (err error) {
|
|
|
|
+ //func SendWxMsgActivitySpecialTwoDays() (err error) {
|
|
var msg string
|
|
var msg string
|
|
defer func() {
|
|
defer func() {
|
|
if err != nil {
|
|
if err != nil {
|
|
@@ -1053,7 +1054,7 @@ func SendWxMsgActivitySpecialTwoDays(cont context.Context) (err error) {
|
|
endTime := twoDayTime.Format(utils.FormatDate) + " 23:59:59"
|
|
endTime := twoDayTime.Format(utils.FormatDate) + " 23:59:59"
|
|
var condition string
|
|
var condition string
|
|
var pars []interface{}
|
|
var pars []interface{}
|
|
- condition = ` AND days >0 AND activity_time BETWEEN ? AND ? `
|
|
|
|
|
|
+ condition = ` AND days >0 AND activity_time BETWEEN ? AND ? `
|
|
pars = append(pars, startTime, endTime)
|
|
pars = append(pars, startTime, endTime)
|
|
listActivitySpecial, e := models.GetActivitySpecialListAll(condition, pars, 0, 1000)
|
|
listActivitySpecial, e := models.GetActivitySpecialListAll(condition, pars, 0, 1000)
|
|
if e != nil {
|
|
if e != nil {
|
|
@@ -1093,11 +1094,8 @@ func SendWxMsgActivitySpecialTwoDays(cont context.Context) (err error) {
|
|
first := ""
|
|
first := ""
|
|
keyword1 := "专项调研【" + v.ResearchTheme + "】"
|
|
keyword1 := "专项调研【" + v.ResearchTheme + "】"
|
|
keyword2 := "将在两天后进行,如不能参加,请及时取消报名"
|
|
keyword2 := "将在两天后进行,如不能参加,请及时取消报名"
|
|
- keyword3 := v.ActivityTimeTextByDay
|
|
|
|
- keyword4 := "线上"
|
|
|
|
- if v.SpecialType == 2 {
|
|
|
|
- keyword4 = v.City
|
|
|
|
- }
|
|
|
|
|
|
+ keyword3 := ""
|
|
|
|
+ keyword4 := ""
|
|
remark := "点击查看活动详情"
|
|
remark := "点击查看活动详情"
|
|
SendWxMsgWithFrequencySpecial(first, keyword1, keyword2, keyword3, keyword4, remark, openIdList, v.ActivityId)
|
|
SendWxMsgWithFrequencySpecial(first, keyword1, keyword2, keyword3, keyword4, remark, openIdList, v.ActivityId)
|
|
|
|
|
|
@@ -1118,10 +1116,6 @@ func SendWxMsgActivitySpecialTwoDays(cont context.Context) (err error) {
|
|
if len(listSeller) == 0 {
|
|
if len(listSeller) == 0 {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
- type SllerData struct {
|
|
|
|
- Openid string `description:"Openid"`
|
|
|
|
- Keyword string `description:"Keyword "`
|
|
|
|
- }
|
|
|
|
mapSller := make(map[string]string)
|
|
mapSller := make(map[string]string)
|
|
mapSllerOpenid := make(map[string]string)
|
|
mapSllerOpenid := make(map[string]string)
|
|
for _, vS := range listSeller {
|
|
for _, vS := range listSeller {
|
|
@@ -1133,8 +1127,7 @@ func SendWxMsgActivitySpecialTwoDays(cont context.Context) (err error) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for k, _ := range mapSller {
|
|
for k, _ := range mapSller {
|
|
- keyword1 = "将在两天后进行,请及时提醒您的报名客户"
|
|
|
|
- //keyword2 = vM
|
|
|
|
|
|
+ keyword2 = "将在两天后进行,请及时提醒您的报名客户"
|
|
openIdList = make([]*models.OpenIdList, 0)
|
|
openIdList = make([]*models.OpenIdList, 0)
|
|
openIdList = append(openIdList, &models.OpenIdList{OpenId: mapSllerOpenid[k]})
|
|
openIdList = append(openIdList, &models.OpenIdList{OpenId: mapSllerOpenid[k]})
|
|
SendWxMsgWithFrequencySpecial(first, keyword1, keyword2, keyword3, keyword4, remark, openIdList, v.ActivityId)
|
|
SendWxMsgWithFrequencySpecial(first, keyword1, keyword2, keyword3, keyword4, remark, openIdList, v.ActivityId)
|