|
@@ -1671,6 +1671,8 @@ func (this *ActivityCoAntroller) LabelMoreList() {
|
|
|
// @Param ActivityId query int false "活动列表传过来的活动ID"
|
|
|
// @Param Filter query int false "筛选条件 0:全部 1:视频 2:音频"
|
|
|
// @Param TypeName query string false "电话会类型 ,1专家电话会 2分析师电话会"
|
|
|
+// @Param IsExternalLabel query int false "是否仅展示外部资源 1:是、0:否 默认0"
|
|
|
+// @Param IsResearchPoints query int false "是否仅展示研选扣点 1:是、0:否 默认0"
|
|
|
// @Success 200 {object} models.GetCygxActivityListRep
|
|
|
// @router /listNew [get]
|
|
|
func (this *ActivityCoAntroller) ActivityListNew() {
|
|
@@ -1698,7 +1700,16 @@ func (this *ActivityCoAntroller) ActivityListNew() {
|
|
|
playBack, _ := this.GetInt("PlayBack")
|
|
|
filter, _ := this.GetInt("Filter")
|
|
|
typeName := this.GetString("TypeName")
|
|
|
- activityId, _ := this.GetInt("ActivityId") // 仅用于判断【新】标签
|
|
|
+ activityId, _ := this.GetInt("ActivityId") // 仅用于判断【新】标签
|
|
|
+ isExternalLabel, _ := this.GetInt("IsExternalLabel") //
|
|
|
+ isResearchPoints, _ := this.GetInt("IsResearchPoints") //
|
|
|
+
|
|
|
+ if isExternalLabel == 1 {
|
|
|
+
|
|
|
+ }
|
|
|
+ if isResearchPoints == 1 {
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
if label == "undefined" {
|
|
|
label = ""
|
|
@@ -2247,6 +2258,7 @@ func (this *ActivityCoAntroller) LabelTypeListV5() {
|
|
|
item.ActivityId = v.ActivityId
|
|
|
//if v.YidongActivityId > 0 {
|
|
|
item.IsExternalLabel = v.IsExternalLabel
|
|
|
+ item.IsResearchPoints = v.IsResearchPoints
|
|
|
//}
|
|
|
mapActivity[v.ActivityTypeId] = append(mapActivity[v.ActivityTypeId], item)
|
|
|
mapkeyWord[fmt.Sprint(v.ActivityTypeId, "-", item.KeyWord)] = item.KeyWord
|
|
@@ -3869,3 +3881,93 @@ func (this *ActivityCoAntroller) OverActivityList() {
|
|
|
br.Msg = "获取成功"
|
|
|
br.Data = resp
|
|
|
}
|
|
|
+
|
|
|
+// @Title 活动报名之前的校验(权限、时间、点数、邮箱)
|
|
|
+// @Description 活动报名之前的校验(权限、时间、点数、邮箱)接口
|
|
|
+// @Param request body models.ActivityIdRep true "type json string"
|
|
|
+// @Success Ret=200 {object} models.SignupStatus
|
|
|
+// @router /check [post]
|
|
|
+func (this *ActivityCoAntroller) Check() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+ user := this.User
|
|
|
+ if user == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录,用户信息为空"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+ var req models.ActivityIdRep
|
|
|
+ err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "参数解析异常!"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ activityId := req.ActivityId
|
|
|
+ activityInfo, errInfo := models.GetAddActivityInfoById(activityId)
|
|
|
+ if activityInfo == nil {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if errInfo != nil {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "操作失败,Err:" + errInfo.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ //这里的文案顺序提示 权限>时间>研选扣点>邮箱绑定。
|
|
|
+ resp := new(models.ActivityCheck)
|
|
|
+ hasPermission := 0
|
|
|
+ havePower, isResearchSpecial, err := services.GetActivityDetailUserPower(user, activityInfo)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "校验用户权限失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp.IsResearchSpecial = isResearchSpecial
|
|
|
+ if havePower {
|
|
|
+ hasPermission = 1
|
|
|
+ resp.CheckPermission = true
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ } else {
|
|
|
+ hasPermission, sellerName, sellerMobile, popupMsg, err := services.GetUserHasPermissionActivity(user, activityInfo)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp.PopupMsg = popupMsg
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ resp.SellerName = sellerName
|
|
|
+ resp.SellerMobile = sellerMobile
|
|
|
+ }
|
|
|
+ if resp.CheckPermission {
|
|
|
+ //如果权限通过了校验,那么就来校验时间
|
|
|
+ resp.CheckTime, resp.PopupMsg = services.CheckSiginupDeadline(activityInfo)
|
|
|
+ }
|
|
|
+ if resp.CheckTime {
|
|
|
+ // 如果时间通过校验就校验点数
|
|
|
+ resp.CheckPoints, resp.PopupMsg, resp.CompanyPoints, resp.ActivityPoints, err = services.CheckActivityPoints(activityInfo, user)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "CheckActivityPoints,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if resp.CheckPoints {
|
|
|
+ //如果通过点数的校验,就来校验邮箱
|
|
|
+ resp.CheckEmail, resp.PopupMsg = services.CheckActivityUserEmail(activityInfo, user)
|
|
|
+ }
|
|
|
+ // 判断是否属于研选类型的活动
|
|
|
+ if strings.Contains(activityInfo.ChartPermissionName, utils.CHART_PERMISSION_NAME_YANXUAN) {
|
|
|
+ resp.IsResearch = true
|
|
|
+ }
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Data = resp
|
|
|
+}
|