|
@@ -744,13 +744,13 @@ func (this *ActivityCoAntroller) PreserveAndPublish() {
|
|
|
if activityInfo.PublishStatus == 1 && oldExpert != newExpert {
|
|
|
go services.SendWxMsgWithCygxActivityUpdateTime(req.ActivityId, oldExpert, newExpert, "expertType")
|
|
|
if activityInfo.ChartPermissionId == utils.CHART_PERMISSION_ID_YANXUAN {
|
|
|
- go services.SendWxCategoryMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.ActivityTimeText, item.ActivityTimeText, "expertType")
|
|
|
+ go services.SendWxCategoryMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.ActivityTimeText, newExpert, "expertType")
|
|
|
}
|
|
|
}
|
|
|
if activityInfo.PublishStatus == 1 && activityInfo.Address != item.Address {
|
|
|
go services.SendWxMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.Address, item.Address, "addressType")
|
|
|
if activityInfo.ChartPermissionId == utils.CHART_PERMISSION_ID_YANXUAN {
|
|
|
- go services.SendWxCategoryMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.ActivityTimeText, item.Address[:20]+"...", "addressType")
|
|
|
+ go services.SendWxCategoryMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.ActivityTimeText, item.Address, "addressType")
|
|
|
}
|
|
|
}
|
|
|
if activityInfo.PublishStatus == 1 && activityInfo.ParticipationCode != item.ParticipationCode {
|
|
@@ -763,7 +763,7 @@ func (this *ActivityCoAntroller) PreserveAndPublish() {
|
|
|
if activityInfo.PublishStatus == 1 && activityInfo.Theme != item.Theme {
|
|
|
go services.SendWxMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.Theme, item.Theme, "Theme")
|
|
|
if activityInfo.ChartPermissionId == utils.CHART_PERMISSION_ID_YANXUAN {
|
|
|
- go services.SendWxCategoryMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.ActivityTimeText, item.Theme[:20]+"...", "Theme")
|
|
|
+ go services.SendWxCategoryMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.ActivityTimeText, item.Theme, "Theme")
|
|
|
}
|
|
|
}
|
|
|
|