|
@@ -70,6 +70,15 @@ func (this *ActivitySignCoAntroller) Detail() {
|
|
|
br.ErrMsg = "获取失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+ //判断是否已经申请过
|
|
|
+ applyCount, err := models.GetApplyRecordCount(uid)
|
|
|
+ if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
item := new(models.CygxActivitySignin)
|
|
|
item.ActivityId = activityId
|
|
|
item.UserId = user.UserId
|
|
@@ -82,7 +91,7 @@ func (this *ActivitySignCoAntroller) Detail() {
|
|
|
item.CountryCode = user.CountryCode
|
|
|
item.OpenId = user.OpenId
|
|
|
item.CreateTime = time.Now()
|
|
|
- if total == 0 && user.Mobile != "" {
|
|
|
+ if total == 0 && user.CompanyId > 1 || (user.Mobile != "" && applyCount > 0) {
|
|
|
err = models.AddCygxActivitySignin(item)
|
|
|
if err != nil {
|
|
|
br.Msg = "签到失败"
|
|
@@ -126,9 +135,12 @@ func (this *ActivitySignCoAntroller) Detail() {
|
|
|
|
|
|
//后期扫码签到,处理是否爽约限制
|
|
|
services.CygxActivityRestrictSignupByuid(user.UserId, activityId)
|
|
|
+
|
|
|
+ //线下调研活动扫码签到给对应销售发模班消息
|
|
|
+ services.SendActivitieSignTemplateMsg(user, activityInfo)
|
|
|
}
|
|
|
|
|
|
- if user.Mobile != "" || total > 0 {
|
|
|
+ if total == 0 && user.CompanyId > 1 || (user.Mobile != "" && applyCount > 0) {
|
|
|
resp.IsBindingMobile = true
|
|
|
}
|
|
|
if user.CompanyId == 1 {
|
|
@@ -336,3 +348,76 @@ func (this *ActivitySignCoAntroller) ByHand() {
|
|
|
br.Msg = "获取成功"
|
|
|
br.Data = resp
|
|
|
}
|
|
|
+
|
|
|
+// @Title 活动签到到会详情
|
|
|
+// @Description 活动签到到会详情接口
|
|
|
+// @Param ActivityId query int true "活动ID"
|
|
|
+// @Success Ret=200 {object} models.CygxActivityResp
|
|
|
+// @router /signup/detail [get]
|
|
|
+func (this *ActivitySignCoAntroller) SignupDetail() {
|
|
|
+ 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
|
|
|
+ }
|
|
|
+
|
|
|
+ activityId, _ := this.GetInt("ActivityId")
|
|
|
+ if activityId < 1 {
|
|
|
+ br.Msg = "请输入活动ID"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp := new(models.CygxActivityOfflineMeetingDetailResp)
|
|
|
+ activityInfo, err := models.GetAddActivityInfoById(activityId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取活动详情信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !services.GetBelongingRai(user.Mobile) {
|
|
|
+ br.Msg = "你暂无查看权限"
|
|
|
+ br.ErrMsg = "你暂无查看权限,UserId:" + strconv.Itoa(user.UserId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ var condition string
|
|
|
+ var pars []interface{}
|
|
|
+ condition = ` AND activity_id = ? `
|
|
|
+ pars = append(pars, activityId)
|
|
|
+ listOfflineMeeting, err := models.GetOfflineMeetingListWithUser(condition, pars)
|
|
|
+
|
|
|
+ UserMobileMap, err := services.GetAdminCheckUserMobileMap(user)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "你暂无查看权限"
|
|
|
+ br.ErrMsg = "你暂无查看权限,UserId:" + strconv.Itoa(user.UserId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ for _, v := range listOfflineMeeting {
|
|
|
+ if _, ok := UserMobileMap[v.Mobile]; !ok {
|
|
|
+ item := new(models.CygxActivitySignupResp)
|
|
|
+ item.RealName = v.RealName
|
|
|
+ item.CompanyName = v.CompanyName
|
|
|
+ item.IsMeeting = v.IsMeeting
|
|
|
+ if v.IsMeeting == 1 {
|
|
|
+ item.SigninTime = v.SigninTime
|
|
|
+ }
|
|
|
+ resp.List = append(resp.List, item)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if len(resp.List) == 0 {
|
|
|
+ resp.List = make([]*models.CygxActivitySignupResp, 0)
|
|
|
+ }
|
|
|
+ resp.ActivityId = activityId
|
|
|
+ resp.ActivityName = activityInfo.ActivityName
|
|
|
+
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+}
|