activity.go 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "hongze/hongze_cygx/models"
  6. "hongze/hongze_cygx/utils"
  7. "rdluck_tools/paging"
  8. "strconv"
  9. "time"
  10. )
  11. //活动
  12. type ActivityCoAntroller struct {
  13. BaseAuthController
  14. }
  15. // @Title 活动类型列表
  16. // @Description活动类型列表接口
  17. // @Success 200 {object} models.ActivityTypeListResp
  18. // @router /activityTypelist [get]
  19. func (this *ActivityCoAntroller) List() {
  20. br := new(models.BaseResponse).Init()
  21. defer func() {
  22. this.Data["json"] = br
  23. this.ServeJSON()
  24. }()
  25. user := this.User
  26. if user == nil {
  27. br.Msg = "请登录"
  28. br.ErrMsg = "请登录,SysUser Is Empty"
  29. br.Ret = 408
  30. return
  31. }
  32. resp := new(models.ActivityTypeListResp)
  33. list, err := models.GetActivityTypeList()
  34. if err != nil {
  35. br.Msg = "获取失败"
  36. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  37. return
  38. }
  39. resp.List = list
  40. br.Ret = 200
  41. br.Success = true
  42. br.Msg = "获取成功"
  43. br.Data = resp
  44. }
  45. // @Title 活动列表
  46. // @Description 获取活动列表接口
  47. // @Param PageSize query int true "每页数据条数"
  48. // @Param CurrentIndex query int true "当前页页码,从1开始"
  49. // @Param ChartPermissionIds query string false "行业id 多个用 , 隔开"
  50. // @Param ActivityTypeIds query string false "活动类型id 多个用 , 隔开"
  51. // @Param KeyWord query string false "搜索关键词"
  52. // @Param ActiveState query string false "活动进行状态 未开始:1、进行中2、已结束3"
  53. // @Param IsShowJurisdiction query int false "是否仅展示有权限的,1是,2否 默认为零"
  54. // @Success 200 {object} models.GetCygxActivityListRep
  55. // @router /list [get]
  56. func (this *ActivityCoAntroller) ActivityList() {
  57. br := new(models.BaseResponse).Init()
  58. defer func() {
  59. this.Data["json"] = br
  60. this.ServeJSON()
  61. }()
  62. user := this.User
  63. if user == nil {
  64. br.Msg = "请登录"
  65. br.ErrMsg = "请登录,SysUser Is Empty"
  66. return
  67. }
  68. uid := user.UserId
  69. pageSize, _ := this.GetInt("PageSize")
  70. currentIndex, _ := this.GetInt("CurrentIndex")
  71. chartPermissionIds := this.GetString("ChartPermissionIds")
  72. activityTypeIds := this.GetString("ActivityTypeIds")
  73. isShowJurisdiction, _ := this.GetInt("IsShowJurisdiction")
  74. keyWord := this.GetString("KeyWord")
  75. activeState := this.GetString("ActiveState")
  76. if activeState == "" {
  77. activeState = "1"
  78. }
  79. //if isShowJurisdiction != 1 {
  80. // isShowJurisdiction = 0
  81. //}
  82. itemSearch := new(models.CygxActivityUserSearchContent)
  83. itemSearch.UserId = uid
  84. itemSearch.CreateTime = time.Now()
  85. itemSearch.Mobile = user.Mobile
  86. itemSearch.Email = user.Email
  87. itemSearch.CompanyId = user.CompanyId
  88. itemSearch.CompanyName = user.CompanyName
  89. itemSearch.ModifyTime = time.Now()
  90. itemSearch.ChartPermissionids = chartPermissionIds
  91. itemSearch.ActivityTypeids = activityTypeIds
  92. itemSearch.ActiveState = activeState
  93. itemSearch.IsShowJurisdiction = isShowJurisdiction
  94. _, errSearch := models.AddUserSearchContent(itemSearch)
  95. if errSearch != nil {
  96. br.Msg = "操作失败"
  97. br.ErrMsg = "操作失败,Err:" + errSearch.Error()
  98. return
  99. }
  100. var startSize int
  101. if pageSize <= 0 {
  102. pageSize = utils.PageSize20
  103. }
  104. if currentIndex <= 0 {
  105. currentIndex = 1
  106. }
  107. startSize = utils.StartIndex(currentIndex, pageSize)
  108. var condition string
  109. var pars []interface{}
  110. if keyWord != "" {
  111. condition += ` AND (art.activity_name LIKE '%` + keyWord + `%' ) `
  112. }
  113. //行业名称
  114. if len(chartPermissionIds) > 0 {
  115. condition += ` AND art.chart_permission_id IN (` + chartPermissionIds + `)`
  116. }
  117. condition += ` AND art.publish_status = 1 AND art.active_state IN (` + activeState + `)`
  118. //1专家电话会、2分析师电话会、3公司调研电话会、4公司线下调研、5专家线下沙龙、6分析师线下沙龙
  119. //resultTimeNow := time.Now().Format("2006-01-02 15:04:05")
  120. //resultTime30 := time.Now().Add(+time.Minute * 30).Format("2006-01-02 15:04:05")
  121. //resultTime_30 := time.Now().Add(-time.Minute * 30).Format("2006-01-02 15:04:05")
  122. //resultTime60 := time.Now().Add(+time.Minute * 60).Format("2006-01-02 15:04:05")
  123. //resultTime_60 := time.Now().Add(-time.Minute * 60).Format("2006-01-02 15:04:05")
  124. //if activeState == "1" {
  125. // if len(activityTypeIds) > 0 {
  126. // condition += ` AND art.activity_type_id IN (` + activityTypeIds + `)`
  127. // }
  128. // condition += ` AND art.activity_time > ` + "'" + resultTimeNow + "'"
  129. //} else if activeState == "2" {
  130. // condition += ` AND art.activity_time > ` + "'" + resultTimeNow + "'"
  131. // if len(activityTypeIds) > 0 {
  132. // condition += ` AND art.activity_type_id IN (` + activityTypeIds + `)`
  133. // condition += ` AND art.activity_time < ` + "'" + resultTime30 + "'"
  134. // } else {
  135. // var sqlOr string
  136. // sqlOr = condition
  137. // condition += ` AND (art.activity_type_id IN ( 1, 2, 3 ) AND art.activity_time < ` + "'" + resultTime30 + "'" + ")"
  138. // condition += ` OR(art.activity_type_id IN ( 4, 5, 6 ) AND art.activity_time < ` + "'" + resultTime60 + "'" + sqlOr + ")"
  139. // }
  140. //} else {
  141. // if len(activityTypeIds) > 0 {
  142. // condition += ` AND art.activity_type_id IN (` + activityTypeIds + `)`
  143. // condition += ` AND art.activity_time > ` + "'" + resultTime_30 + "'"
  144. // } else {
  145. // var sqlOr string
  146. // sqlOr = condition
  147. // condition += ` AND (art.activity_type_id IN ( 1, 2, 3 ) AND art.activity_time <` + "'" + resultTime_30 + "'" + ")"
  148. // condition += ` OR(art.activity_type_id IN ( 4, 5, 6 ) AND art.activity_time < ` + "'" + resultTime_60 + "'" + sqlOr + ")"
  149. // }
  150. //}
  151. total, err := models.GetActivityCount(condition, pars)
  152. if err != nil {
  153. br.Msg = "获取失败"
  154. br.ErrMsg = "获取失败,Err:" + err.Error()
  155. return
  156. }
  157. if activeState != "1" {
  158. condition += ` ORDER BY art.activity_time DESC `
  159. }
  160. //condition += ` ORDER BY art.activity_time DESC `
  161. list, errList := models.GetActivityListAll(condition, pars, uid, startSize, pageSize)
  162. //srt30min := "1,2,3"
  163. //srt60min := "4,5,6"
  164. //for k, v := range list {
  165. // if strings.Contains(srt30min, strconv.Itoa(v.ActivityTypeId)) {
  166. // resultTime := utils.StrTimeToTime(v.ActivityTime) //时间字符串格式转时间格式
  167. // if resultTime.After(time.Now()) {
  168. // list[k].ActiveState = "1"
  169. // } else if time.Now().After(resultTime) && resultTime.After(time.Now().Add(+time.Minute*30)) {
  170. // list[k].ActiveState = "2"
  171. // } else {
  172. // list[k].ActiveState = "3"
  173. // }
  174. // }
  175. // if strings.Contains(srt60min, strconv.Itoa(v.ActivityTypeId)) {
  176. // resultTime := utils.StrTimeToTime(v.ActivityTime) //时间字符串格式转时间格式
  177. // if resultTime.After(time.Now()) {
  178. // list[k].ActiveState = "1"
  179. // } else if time.Now().After(resultTime) && resultTime.After(time.Now().Add(+time.Minute*60)) {
  180. // list[k].ActiveState = "2"
  181. // } else {
  182. // list[k].ActiveState = "3"
  183. // }
  184. // }
  185. //}
  186. if errList != nil {
  187. br.Msg = "获取失败"
  188. br.ErrMsg = "获取失败,Err:" + errList.Error()
  189. return
  190. }
  191. page := paging.GetPaging(currentIndex, pageSize, total)
  192. resp := new(models.GetCygxActivityListRep)
  193. resp.List = list
  194. resp.Paging = page
  195. br.Ret = 200
  196. br.Success = true
  197. br.Msg = "获取成功"
  198. br.Data = resp
  199. }
  200. // @Title 我的日程
  201. // @Description 我的日程列表接口
  202. // @Param PageSize query int true "每页数据条数"
  203. // @Param CurrentIndex query int true "当前页页码,从1开始"
  204. // @Success 200 {object} models.GetCygxActivityListRep
  205. // @router /scheduleList [get]
  206. func (this *ActivityCoAntroller) ScheduleList() {
  207. br := new(models.BaseResponse).Init()
  208. defer func() {
  209. this.Data["json"] = br
  210. this.ServeJSON()
  211. }()
  212. user := this.User
  213. if user == nil {
  214. br.Msg = "请登录"
  215. br.ErrMsg = "请登录,SysUser Is Empty"
  216. return
  217. }
  218. uid := user.UserId
  219. pageSize, _ := this.GetInt("PageSize")
  220. currentIndex, _ := this.GetInt("CurrentIndex")
  221. var startSize int
  222. if pageSize <= 0 {
  223. pageSize = utils.PageSize20
  224. }
  225. if currentIndex <= 0 {
  226. currentIndex = 1
  227. }
  228. startSize = utils.StartIndex(currentIndex, pageSize)
  229. var condition string
  230. var pars []interface{}
  231. condition += ` AND art.publish_status = 1 AND art.active_state IN(1,2) AND s.is_cancel = 0 AND s.fail_type = 0 `
  232. total, err := models.GetScheduleCount(condition, uid)
  233. if err != nil {
  234. br.Msg = "获取失败"
  235. br.ErrMsg = "获取失败,Err:" + err.Error()
  236. return
  237. }
  238. list, errList := models.GetScheduleList(condition, pars, uid, startSize, pageSize)
  239. if errList != nil {
  240. br.Msg = "获取失败"
  241. br.ErrMsg = "获取失败,Err:" + errList.Error()
  242. return
  243. }
  244. page := paging.GetPaging(currentIndex, pageSize, total)
  245. resp := new(models.GetCygxActivityListRep)
  246. resp.List = list
  247. resp.Paging = page
  248. br.Ret = 200
  249. br.Success = true
  250. br.Msg = "获取成功"
  251. br.Data = resp
  252. }
  253. // @Title 活动详情
  254. // @Description 获取活动详情接口
  255. // @Param ActivityId query int true "活动ID"
  256. // @Success Ret=200 {object} models.ActivityDetail
  257. // @router /detail [get]
  258. func (this *ActivityCoAntroller) Detail() {
  259. br := new(models.BaseResponse).Init()
  260. defer func() {
  261. this.Data["json"] = br
  262. this.ServeJSON()
  263. }()
  264. user := this.User
  265. if user == nil {
  266. br.Msg = "请登录"
  267. br.ErrMsg = "请登录,用户信息为空"
  268. br.Ret = 408
  269. return
  270. }
  271. uid := user.UserId
  272. activityId, _ := this.GetInt("ActivityId")
  273. if activityId < 1 {
  274. br.Msg = "请输入活动ID"
  275. return
  276. }
  277. activityInfo, err := models.GetAddActivityInfoByIdShow(uid, activityId)
  278. if activityInfo == nil {
  279. br.Msg = "活动不存在"
  280. br.ErrMsg = "活动ID错误,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  281. return
  282. }
  283. detail, errDetail := models.GetActivityTypeDetailById(activityInfo.ActivityTypeId)
  284. if errDetail != nil {
  285. br.Msg = "获取信息失败"
  286. br.ErrMsg = "获取信息失败,Err:" + errDetail.Error()
  287. return
  288. }
  289. activityInfo.ShowType = detail.ShowType
  290. br.Ret = 200
  291. br.Success = true
  292. br.Msg = "获取成功"
  293. br.Data = activityInfo
  294. }
  295. // @Title 活动报名
  296. // @Description 活动报名接口
  297. // @Param request body models.ActivitySingnupRep true "type json string"
  298. // @Success Ret=200 {object} models.SignupStatus
  299. // @router /signup/add [post]
  300. func (this *ActivityCoAntroller) SignupAdd() {
  301. br := new(models.BaseResponse).Init()
  302. defer func() {
  303. this.Data["json"] = br
  304. this.ServeJSON()
  305. }()
  306. user := this.User
  307. if user == nil {
  308. br.Msg = "请登录"
  309. br.ErrMsg = "请登录,用户信息为空"
  310. br.Ret = 408
  311. return
  312. }
  313. uid := user.UserId
  314. //var signupStatus string
  315. signupStatus := ""
  316. var req models.ActivitySingnupRep
  317. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  318. if err != nil {
  319. br.Msg = "参数解析异常!"
  320. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  321. return
  322. }
  323. activityId := req.ActivityId
  324. signupType := req.SignupType
  325. if signupType != 1 && signupType != 2 {
  326. br.Msg = "请选择正确的报名方式!"
  327. return
  328. }
  329. //SignupStatus string `description:"报名状态:人数已满:FullStarffed、单机构超过两人:TwoPeople、爽约次数过多:BreakPromise、超时:Overtime 、成功:Success"`
  330. item := new(models.CygxActivitySignup)
  331. //if activityId%5 == 1 {
  332. // signupStatus = "FullStarffed"
  333. // item.FailType = 1
  334. //} else if activityId%5 == 2 {
  335. // signupStatus = "TwoPeople"
  336. // item.FailType = 2
  337. //} else if activityId%5 == 3 {
  338. // signupStatus = "BreakPromise"
  339. // item.FailType = 3
  340. //} else if activityId%5 == 4 {
  341. // signupStatus = "Overtime"
  342. //} else if activityId%5 == 5 {
  343. // signupStatus = "Success"
  344. //}
  345. signupStatus = "Success"
  346. activityInfo, errInfo := models.GetAddActivityInfoById(activityId)
  347. if activityInfo == nil {
  348. br.Msg = "操作失败"
  349. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
  350. return
  351. }
  352. if errInfo != nil {
  353. br.Msg = "操作失败"
  354. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  355. return
  356. }
  357. resultTime := utils.StrTimeToTime(activityInfo.ActivityTime) //时间字符串格式转时间格式
  358. if time.Now().After(resultTime.Add(-time.Minute * 60)) {
  359. signupStatus = "Overtime"
  360. }
  361. total, errtotal := models.GetActivitySignupCount(uid, activityId)
  362. if errtotal != nil {
  363. br.Msg = "获取失败"
  364. br.ErrMsg = "获取失败,Err:" + errtotal.Error()
  365. return
  366. }
  367. if total > 0 {
  368. br.Msg = "您已报名这个活动"
  369. return
  370. }
  371. if signupStatus == "Success" {
  372. item.UserId = uid
  373. item.ActivityId = activityId
  374. item.CreateTime = time.Now()
  375. item.Mobile = user.Mobile
  376. item.Email = user.Email
  377. item.CompanyId = user.CompanyId
  378. item.CompanyName = user.CompanyName
  379. _, errSignup := models.AddActivitySignup(item)
  380. if errSignup != nil {
  381. br.Msg = "操作失败"
  382. br.ErrMsg = "操作失败,Err:" + errSignup.Error()
  383. return
  384. }
  385. }
  386. resp := new(models.SignupStatus)
  387. resp.SignupType = signupType
  388. resp.SignupStatus = signupStatus
  389. if signupStatus == "Success" {
  390. resp.ActivityId = activityId
  391. }
  392. if activityId%2 == 1 {
  393. resp.GoFollow = true
  394. }
  395. br.Ret = 200
  396. br.Success = true
  397. br.Msg = "操作成功"
  398. br.Data = resp
  399. }
  400. // @Title 活动取消报名
  401. // @Description 活动取消报名接口
  402. // @Param request body models.ActivitySingnupRep true "type json string"
  403. // @Success Ret=200 {object} models.SignupStatus
  404. // @router /signup/cancel [post]
  405. func (this *ActivityCoAntroller) SignupCancel() {
  406. br := new(models.BaseResponse).Init()
  407. defer func() {
  408. this.Data["json"] = br
  409. this.ServeJSON()
  410. }()
  411. user := this.User
  412. if user == nil {
  413. br.Msg = "请登录"
  414. br.ErrMsg = "请登录,用户信息为空"
  415. br.Ret = 408
  416. return
  417. }
  418. uid := user.UserId
  419. var req models.ActivitySingnupRep
  420. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  421. if err != nil {
  422. br.Msg = "参数解析异常!"
  423. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  424. return
  425. }
  426. activityId := req.ActivityId
  427. signupType := req.SignupType
  428. if signupType != 1 && signupType != 2 {
  429. br.Msg = "请选择正确的报名方式!"
  430. return
  431. }
  432. item := new(models.CygxActivitySignup)
  433. activityInfo, errInfo := models.GetAddActivityInfoById(activityId)
  434. if activityInfo == nil {
  435. br.Msg = "操作失败"
  436. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
  437. return
  438. }
  439. if errInfo != nil {
  440. br.Msg = "操作失败"
  441. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  442. return
  443. }
  444. resultTime := utils.StrTimeToTime(activityInfo.ActivityTime) //时间字符串格式转时间格式
  445. if time.Now().After(resultTime.Add(-time.Minute * 60)) {
  446. if signupType == 1 {
  447. br.Msg = "活动开始前1小时内无法取消预约外呼,请联系对口销售处理"
  448. } else {
  449. br.Msg = "活动开始前1小时内无法取消报名,请联系对口销售处理"
  450. }
  451. return
  452. }
  453. total, err := models.GetActivitySignupCount(uid, activityId)
  454. if err != nil {
  455. br.Msg = "获取失败"
  456. br.ErrMsg = "获取失败,Err:" + err.Error()
  457. return
  458. }
  459. if total == 0 {
  460. br.Msg = "您暂未报名这个活动"
  461. return
  462. }
  463. item.UserId = uid
  464. item.ActivityId = activityId
  465. item.CreateTime = time.Now()
  466. item.Mobile = user.Mobile
  467. item.Email = user.Email
  468. item.CompanyId = user.CompanyId
  469. item.CompanyName = user.CompanyName
  470. resp := new(models.SignupStatus)
  471. resp.ActivityId = activityId
  472. _, errSignup := models.CancelActivitySignup(item)
  473. if errSignup != nil {
  474. br.Msg = "操作失败"
  475. br.ErrMsg = "操作失败,Err:" + errSignup.Error()
  476. return
  477. }
  478. br.Ret = 200
  479. br.Success = true
  480. br.Msg = "操作成功"
  481. br.Data = resp
  482. }
  483. // @Title 用户搜索详情
  484. // @Description 获取用户搜索详情接口
  485. // @Param IsShowJurisdiction query int true "是否仅展示有权限的,默认为0,1是,2否 "
  486. // @Success Ret=200 {object} models.ActivityUserSearchContentList
  487. // @router /getUserSearchContent [get]
  488. func (this *ActivityCoAntroller) GetUserSearchContent() {
  489. br := new(models.BaseResponse).Init()
  490. defer func() {
  491. this.Data["json"] = br
  492. this.ServeJSON()
  493. }()
  494. user := this.User
  495. if user == nil {
  496. br.Msg = "请登录"
  497. br.ErrMsg = "请登录,用户信息为空"
  498. br.Ret = 408
  499. return
  500. }
  501. uid := user.UserId
  502. detailSeearch := new(models.CygxActivityUserSearchContent)
  503. detailSeearch.IsShowJurisdiction = 0
  504. detailSeearch.ChartPermissionids = ""
  505. detailSeearch.ActiveState = ""
  506. detail, _ := models.GetUserSearchContentByUid(uid)
  507. if detail == nil {
  508. detail = detailSeearch
  509. }
  510. //if err != nil {
  511. // br.Msg = "获取信息失败"
  512. // br.ErrMsg = "获取信息失败,Err:" + err.Error()
  513. // return
  514. //}
  515. isShowJurisdiction, _ := this.GetInt("IsShowJurisdiction")
  516. //chartPermissionidsSlice := strings.Split(detail.ChartPermissionids, ",")
  517. //activityTypeidsSlice := strings.Split(detail.ActivityTypeids, ",")
  518. //activeStateSlice := strings.Split(detail.ActiveState, ",") //"活动进行状态 未开始:1、进行中2、已结束3"`
  519. listActivityType, errActivityType := models.GetActivityTypeList()
  520. if errActivityType != nil {
  521. br.Msg = "获取失败"
  522. br.ErrMsg = "获取数据失败,Err:" + errActivityType.Error()
  523. return
  524. }
  525. //for _, v := range activityTypeidsSlice {
  526. // for k2, v2 := range listActivityType {
  527. // if strconv.Itoa(v2.ActivityTypeId) == v {
  528. // listActivityType[k2].IsChoose = true
  529. // }
  530. // }
  531. //}
  532. var listChartPermissionid []*models.ActivityChartPermission
  533. var errChart error
  534. if isShowJurisdiction == 1 {
  535. listChartPermissionidAll, errChartAll := models.GetUserCompanyPermission(user.CompanyId)
  536. listChartPermissionid = listChartPermissionidAll
  537. errChart = errChartAll
  538. } else if isShowJurisdiction == 2 {
  539. listChartPermissionidAll, errChartAll := models.GetChartPermissionActivity()
  540. listChartPermissionid = listChartPermissionidAll
  541. errChart = errChartAll
  542. } else {
  543. if detail.IsShowJurisdiction == 1 {
  544. listChartPermissionidAll, errChartAll := models.GetUserCompanyPermission(user.CompanyId)
  545. listChartPermissionid = listChartPermissionidAll
  546. errChart = errChartAll
  547. } else {
  548. listChartPermissionidAll, errChartAll := models.GetChartPermissionActivity()
  549. listChartPermissionid = listChartPermissionidAll
  550. errChart = errChartAll
  551. }
  552. }
  553. if errChart != nil {
  554. br.Msg = "获取信息失败"
  555. br.ErrMsg = "获取品种信息失败,Err:" + errChart.Error()
  556. return
  557. }
  558. //for _, v := range chartPermissionidsSlice {
  559. // for k2, v2 := range listChartPermissionid {
  560. // if strconv.Itoa(v2.ChartPermissionId) == v {
  561. // listChartPermissionid[k2].IsChoose = true
  562. // }
  563. // }
  564. //}
  565. resp := new(models.ActivityUserSearchContentList)
  566. if detail.IsShowJurisdiction == 1 {
  567. resp.IsShowJurisdiction = true
  568. }
  569. fmt.Println(isShowJurisdiction)
  570. if isShowJurisdiction == 1 || detail.IsShowJurisdiction == 1 {
  571. resp.IsShowJurisdiction = true
  572. for k, _ := range listChartPermissionid {
  573. listChartPermissionid[k].IsChoose = true
  574. }
  575. }
  576. if isShowJurisdiction == 2 {
  577. resp.IsShowJurisdiction = false
  578. }
  579. activeStateList := []models.ActivityStaus{models.ActivityStaus{Id: 1, StatusName: "未开始"}, models.ActivityStaus{Id: 2, StatusName: "进行中"}, models.ActivityStaus{Id: 3, StatusName: "已结束"}}
  580. //for _, v := range activeStateSlice {
  581. // for k2, v2 := range activeStateList {
  582. // if strconv.Itoa(v2.Id) == v {
  583. // //activeStateList[k2].IsChoose = true
  584. // }
  585. // }
  586. //}
  587. if activeStateList[1].IsChoose == activeStateList[2].IsChoose == false {
  588. activeStateList[0].IsChoose = true
  589. }
  590. resp.ListActivityType = listActivityType
  591. resp.ListChartPermission = listChartPermissionid
  592. resp.ListActivityStaus = activeStateList
  593. br.Ret = 200
  594. br.Success = true
  595. br.Msg = "获取成功"
  596. br.Data = resp
  597. }
  598. // @Title 添加会议提醒
  599. // @Description 添加会议提醒接口
  600. // @Param request body models.ActivityIdRep true "type json string"
  601. // @Success Ret=200 {object} models.SignupStatus
  602. // @router /meetingReminder/add [post]
  603. func (this *ActivityCoAntroller) MeetingReminderAdd() {
  604. br := new(models.BaseResponse).Init()
  605. defer func() {
  606. this.Data["json"] = br
  607. this.ServeJSON()
  608. }()
  609. user := this.User
  610. if user == nil {
  611. br.Msg = "请登录"
  612. br.ErrMsg = "请登录,用户信息为空"
  613. br.Ret = 408
  614. return
  615. }
  616. uid := user.UserId
  617. //var signupStatus string
  618. signupStatus := "Success"
  619. var req models.ActivityIdRep
  620. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  621. if err != nil {
  622. br.Msg = "参数解析异常!"
  623. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  624. return
  625. }
  626. activityId := req.ActivityId
  627. //SignupStatus string `description:"报名状态:人数已满:FullStarffed、单机构超过两人:TwoPeople、爽约次数过多:BreakPromise、超时:Overtime 、成功:Success"`
  628. item := new(models.CygxActivityMeetingReminder)
  629. activityInfo, errInfo := models.GetAddActivityInfoById(activityId)
  630. if activityInfo == nil {
  631. br.Msg = "操作失败"
  632. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
  633. return
  634. }
  635. if errInfo != nil {
  636. br.Msg = "操作失败"
  637. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  638. return
  639. }
  640. resultTime := utils.StrTimeToTime(activityInfo.ActivityTime) //时间字符串格式转时间格式
  641. if time.Now().After(resultTime.Add(-time.Minute * 15)) {
  642. br.Msg = "活动开始前15分钟无法设置会议提醒"
  643. return
  644. }
  645. //if signupStatus == "Success" {
  646. total, err := models.GetActivitySignupCount(uid, activityId)
  647. if err != nil {
  648. br.Msg = "获取失败"
  649. br.ErrMsg = "获取失败,Err:" + err.Error()
  650. return
  651. }
  652. if total == 0 {
  653. br.Msg = "您暂未预约外呼这个活动"
  654. return
  655. }
  656. totalMeeting, errMeeting := models.GetActivityMeetingReminderCount(uid, activityId)
  657. if errMeeting != nil {
  658. br.Msg = "获取失败"
  659. br.ErrMsg = "获取失败,Err:" + errMeeting.Error()
  660. return
  661. }
  662. if totalMeeting > 0 {
  663. br.Msg = "您已预约,请勿重复预约"
  664. return
  665. }
  666. item.UserId = uid
  667. item.ActivityId = activityId
  668. item.CreateTime = time.Now()
  669. item.Mobile = user.Mobile
  670. item.Email = user.Email
  671. item.CompanyId = user.CompanyId
  672. item.CompanyName = user.CompanyName
  673. _, errSignup := models.AddActivityMeetingReminder(item)
  674. if errSignup != nil {
  675. br.Msg = "操作失败"
  676. br.ErrMsg = "操作失败,Err:" + errSignup.Error()
  677. return
  678. }
  679. //}
  680. resp := new(models.SignupStatus)
  681. resp.SignupStatus = signupStatus
  682. resp.ActivityId = activityId
  683. if activityId%2 == 1 {
  684. resp.GoFollow = true
  685. }
  686. br.Ret = 200
  687. br.Success = true
  688. br.Msg = "设置成功,会前15分钟会为您推送微信消息提醒"
  689. br.Data = resp
  690. }
  691. // @Title 取消会议提醒
  692. // @Description 取消会议提醒接口
  693. // @Param request body models.ActivityIdRep true "type json string"
  694. // @Success Ret=200 {object} models.SignupStatus
  695. // @router /meetingReminder/cancel [post]
  696. func (this *ActivityCoAntroller) MeetingReminderCancel() {
  697. br := new(models.BaseResponse).Init()
  698. defer func() {
  699. this.Data["json"] = br
  700. this.ServeJSON()
  701. }()
  702. user := this.User
  703. if user == nil {
  704. br.Msg = "请登录"
  705. br.ErrMsg = "请登录,用户信息为空"
  706. br.Ret = 408
  707. return
  708. }
  709. uid := user.UserId
  710. var req models.ActivityIdRep
  711. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  712. if err != nil {
  713. br.Msg = "参数解析异常!"
  714. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  715. return
  716. }
  717. activityId := req.ActivityId
  718. signupStatus := "Success"
  719. item := new(models.CygxActivityMeetingReminder)
  720. activityInfo, errInfo := models.GetAddActivityInfoById(activityId)
  721. if activityInfo == nil {
  722. br.Msg = "操作失败"
  723. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
  724. return
  725. }
  726. if errInfo != nil {
  727. br.Msg = "操作失败"
  728. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  729. return
  730. }
  731. //if signupStatus == "Success" {
  732. total, err := models.GetActivityMeetingReminderCount(uid, activityId)
  733. if err != nil {
  734. br.Msg = "获取失败"
  735. br.ErrMsg = "获取失败,Err:" + err.Error()
  736. return
  737. }
  738. if total == 0 {
  739. br.Msg = "您暂未添加该活动会议提醒"
  740. return
  741. }
  742. resultTime := utils.StrTimeToTime(activityInfo.ActivityTime) //时间字符串格式转时间格式
  743. if time.Now().After(resultTime.Add(-time.Minute * 15)) {
  744. br.Msg = "活动开始前15分钟无法取消会议提醒"
  745. return
  746. }
  747. item.UserId = uid
  748. item.ActivityId = activityId
  749. item.CreateTime = time.Now()
  750. item.Mobile = user.Mobile
  751. item.Email = user.Email
  752. item.CompanyId = user.CompanyId
  753. item.CompanyName = user.CompanyName
  754. _, errSignup := models.CancelActivityMeetingReminder(item)
  755. if errSignup != nil {
  756. br.Msg = "操作失败"
  757. br.ErrMsg = "操作失败,Err:" + errSignup.Error()
  758. return
  759. }
  760. //}
  761. resp := new(models.SignupStatus)
  762. resp.SignupStatus = signupStatus
  763. resp.ActivityId = activityId
  764. br.Ret = 200
  765. br.Success = true
  766. br.Msg = "操作成功"
  767. br.Data = resp
  768. }