|
@@ -687,6 +687,18 @@ func (this *ActivityCoAntroller) SignupAdd() {
|
|
|
br.Data = resp
|
|
|
return
|
|
|
}
|
|
|
+ //限制人数为1人的专家电话会 用户操作时的消息提示
|
|
|
+ if activityInfo.LimitPeopleNum == 1 && activityInfo.ActivityTypeId == 1 {
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ resp.SignupStatus = utils.FULLSTARFFED_MSG
|
|
|
+ resp.PopupMsg = utils.ACTIVITY_ZJDHH_V1_MSG
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = ""
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
var sellerName string
|
|
|
sellerName, err = models.GetCompanySellerName(user.CompanyId)
|
|
|
if err != nil {
|
|
@@ -1227,6 +1239,19 @@ func (this *ActivityCoAntroller) MeetingReminderAdd() {
|
|
|
if havePower {
|
|
|
hasPermission = 1
|
|
|
signupStatus = "Success"
|
|
|
+
|
|
|
+ //限制人数为1人的专家电话会 用户操作时的消息提示
|
|
|
+ if activityInfo.LimitPeopleNum == 1 && activityInfo.ActivityTypeId == 1 {
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ resp.SignupStatus = utils.FULLSTARFFED_MSG
|
|
|
+ resp.PopupMsg = utils.ACTIVITY_ZJDHH_V1_MSG
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = ""
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
totalMeeting, errMeeting := models.GetActivityMeetingReminderCount(uid, activityId)
|
|
|
if errMeeting != nil {
|
|
|
br.Msg = "获取失败"
|
|
@@ -2197,6 +2222,17 @@ func (this *ActivityCoAntroller) CheckAsk() {
|
|
|
if havePower {
|
|
|
hasPermission = 1
|
|
|
signupStatus = "Success"
|
|
|
+ //限制人数为1人的专家电话会 用户操作时的消息提示
|
|
|
+ if activityInfo.LimitPeopleNum == 1 && activityInfo.ActivityTypeId == 1 {
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ resp.SignupStatus = utils.FULLSTARFFED_MSG
|
|
|
+ resp.PopupMsg = utils.ACTIVITY_ZJDHH_V1_MSG
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = ""
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
resp.HaqveJurisdiction = true
|
|
|
resp.HasPermission = hasPermission
|
|
|
resp.SignupStatus = signupStatus
|
|
@@ -3469,6 +3505,17 @@ func (this *ActivityCoAntroller) ActivityAppointmentAdd() {
|
|
|
if havePower {
|
|
|
hasPermission = 1
|
|
|
signupStatus = "Success"
|
|
|
+ //限制人数为1人的专家电话会 用户操作时的消息提示
|
|
|
+ if activityInfo.LimitPeopleNum == 1 && activityInfo.ActivityTypeId == 1 {
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ resp.SignupStatus = utils.FULLSTARFFED_MSG
|
|
|
+ resp.PopupMsg = utils.ACTIVITY_ZJDHH_V1_MSG
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = ""
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
totalMeeting, errMeeting := models.GetUserCygxActivityAppointmentCount(uid, activityId)
|
|
|
if errMeeting != nil {
|
|
|
br.Msg = "获取失败"
|