activity_special.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "hongze/hongze_cygx/models"
  6. "hongze/hongze_cygx/services"
  7. "hongze/hongze_cygx/utils"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. //专项调研活动
  13. type ActivitySpecialCoAntroller struct {
  14. BaseAuthController
  15. }
  16. // @Title 专项产业调研列表
  17. // @Description 获取专项产业调研列表接口
  18. // @Param PageSize query int true "每页数据条数"
  19. // @Param CurrentIndex query int true "当前页页码,从1开始"
  20. // @Success 200 {object} models.GetCygxActivitySpecialDetailListResp
  21. // @router /list [get]
  22. func (this *ActivitySpecialCoAntroller) SpecialList() {
  23. br := new(models.BaseResponse).Init()
  24. defer func() {
  25. this.Data["json"] = br
  26. this.ServeJSON()
  27. }()
  28. user := this.User
  29. if user == nil {
  30. br.Msg = "请登录"
  31. br.ErrMsg = "请登录,SysUser Is Empty"
  32. return
  33. }
  34. pageSize, _ := this.GetInt("PageSize")
  35. currentIndex, _ := this.GetInt("CurrentIndex")
  36. if pageSize <= 0 {
  37. pageSize = utils.PageSize20
  38. }
  39. if currentIndex <= 0 {
  40. currentIndex = 1
  41. }
  42. list, total, errList := services.GetActivitySpecialList(user, currentIndex, pageSize, "")
  43. if errList != nil {
  44. br.Msg = "获取失败"
  45. br.ErrMsg = "获取失败,Err:" + errList.Error()
  46. return
  47. }
  48. page := paging.GetPaging(currentIndex, pageSize, total)
  49. resp := new(models.GetCygxActivitySpecialDetailListResp)
  50. count, err := models.GetCygxUserFollowSpecial(user.UserId)
  51. if err != nil {
  52. br.Msg = "获取数据失败!"
  53. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  54. return
  55. }
  56. if count == 1 && user.UserId > 0 {
  57. resp.IsFollow = true
  58. }
  59. if user.Mobile != "" {
  60. resp.IsBindingMobile = true
  61. }
  62. resp.List = list
  63. resp.Paging = page
  64. br.Ret = 200
  65. br.Success = true
  66. br.Msg = "获取成功"
  67. br.Data = resp
  68. }
  69. // @Title 专项产业调研详情
  70. // @Description 获取专项产业调研详情接口
  71. // @Param ActivityId query int true "活动ID"
  72. // @Success Ret=200 {object} models.CygxActivitySpecialResp
  73. // @router /detail [get]
  74. func (this *ActivitySpecialCoAntroller) SpecialDetail() {
  75. br := new(models.BaseResponse).Init()
  76. defer func() {
  77. this.Data["json"] = br
  78. this.ServeJSON()
  79. }()
  80. user := this.User
  81. if user == nil {
  82. br.Msg = "请登录"
  83. br.ErrMsg = "请登录,用户信息为空"
  84. br.Ret = 408
  85. return
  86. }
  87. uid := user.UserId
  88. activityId, _ := this.GetInt("ActivityId")
  89. if activityId < 1 {
  90. br.Msg = "请输入活动ID"
  91. return
  92. }
  93. resp := new(models.CygxActivitySpecialResp)
  94. hasPermission := 0
  95. activityInfo, err := models.GetCygxActivitySpecialDetailById(uid, activityId)
  96. if err != nil && err.Error() != utils.ErrNoRow() {
  97. br.Msg = "获取信息失败"
  98. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  99. return
  100. }
  101. if activityInfo == nil {
  102. br.Msg = "活动不存在"
  103. br.ErrMsg = "活动ID错误,Err:" + "activityId:" + strconv.Itoa(activityId)
  104. return
  105. }
  106. applyCount, err := models.GetApplyRecordCount(uid)
  107. if err != nil && err.Error() != utils.ErrNoRow() {
  108. br.Msg = "获取信息失败"
  109. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  110. return
  111. }
  112. //获取FICC销售信息 如果是FICC的客户类型,则默认他申请过
  113. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 1)
  114. if err != nil && err.Error() != utils.ErrNoRow() {
  115. br.Msg = "获取信息失败"
  116. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  117. return
  118. }
  119. if user.CompanyId <= 1 {
  120. //companyDetailStatus = ""
  121. } else {
  122. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  123. if err != nil {
  124. br.Msg = "获取信息失败"
  125. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  126. return
  127. }
  128. if companyPermission == "" {
  129. if applyCount > 0 {
  130. hasPermission = 4
  131. } else {
  132. if sellerItem != nil {
  133. hasPermission = 5
  134. } else {
  135. //获取权益销售信息 如果是FICC的客户类型,则默认他申请过
  136. sellerItemQy, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  137. if err != nil && err.Error() != utils.ErrNoRow() {
  138. br.Msg = "获取信息失败"
  139. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  140. return
  141. }
  142. if sellerItemQy != nil {
  143. hasPermission = 2
  144. resp.SellerMobile = sellerItemQy.Mobile
  145. resp.SellerName = sellerItemQy.RealName
  146. } else {
  147. hasPermission = 3
  148. }
  149. }
  150. }
  151. resp.HasPermission = hasPermission
  152. resp.OperationMode = "Apply"
  153. resp.PopupMsg = "您暂无权限参加此活动,若想参加可以申请开通对应的试用权限"
  154. br.Ret = 200
  155. br.Success = true
  156. br.Msg = "获取成功"
  157. br.Data = resp
  158. return
  159. }
  160. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  161. if err != nil {
  162. br.Msg = "获取信息失败!"
  163. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  164. return
  165. }
  166. if companyDetail == nil {
  167. br.Msg = "获取信息失败!"
  168. br.ErrMsg = "客户不存在,uid:" + strconv.Itoa(user.UserId) + "CompanyId:" + strconv.Itoa(user.CompanyId)
  169. return
  170. }
  171. }
  172. userType, permissionStr, err := services.GetUserType(user.CompanyId)
  173. if err != nil {
  174. br.Msg = "获取信息失败"
  175. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  176. return
  177. }
  178. itemAct := new(models.ActivityDetail)
  179. itemAct.CustomerTypeIds = activityInfo.CustomerTypeIds
  180. noPower, err := services.GetShareNoPowe(itemAct, permissionStr, userType, user)
  181. if err != nil {
  182. br.Msg = "获取信息失败"
  183. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  184. return
  185. }
  186. //获取用户的产业规模,判断是否允许可见
  187. companyProduct, err := models.GetCompanyProductDetail(user.CompanyId, 2)
  188. if err != nil && err.Error() != utils.ErrNoRow() {
  189. br.Msg = "获取信息失败"
  190. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  191. return
  192. }
  193. if companyProduct != nil {
  194. if companyProduct.Scale != "" {
  195. if strings.Count(activityInfo.Scale, companyProduct.Scale) > 0 {
  196. noPower = false
  197. }
  198. }
  199. }
  200. if noPower {
  201. br.Msg = "您暂无查看该活动权限"
  202. br.ErrMsg = "被分享客户不可见,获取信息失败"
  203. br.IsSendEmail = false
  204. return
  205. }
  206. if userType == 1 && strings.Contains(activityInfo.ChartPermissionName, "研选") {
  207. br.Msg = "您暂无查看该活动权限"
  208. br.ErrMsg = "被分享客户不可见,永续客户无法查看研选行业"
  209. return
  210. }
  211. //判断是否已经申请过
  212. if user.CompanyId > 1 {
  213. permissionStr, err := models.GetCompanyPermissionByUser(user.CompanyId)
  214. if err != nil {
  215. br.Msg = "获取信息失败"
  216. br.ErrMsg = "获取客户权限信息失败,Err:" + err.Error()
  217. return
  218. }
  219. companyItem, err := models.GetCompanyDetailById(user.CompanyId)
  220. //冻结客户
  221. if err != nil {
  222. if err.Error() == utils.ErrNoRow() {
  223. if applyCount > 0 {
  224. hasPermission = 4
  225. } else {
  226. if sellerItem != nil {
  227. hasPermission = 5
  228. } else {
  229. //获取权益销售信息 如果是FICC的客户类型,则默认他申请过
  230. sellerItemQy, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  231. if err != nil && err.Error() != utils.ErrNoRow() {
  232. br.Msg = "获取信息失败"
  233. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  234. return
  235. }
  236. if sellerItemQy != nil {
  237. hasPermission = 2
  238. resp.SellerMobile = sellerItemQy.Mobile
  239. resp.SellerName = sellerItemQy.RealName
  240. } else {
  241. hasPermission = 3
  242. }
  243. }
  244. }
  245. resp.HasPermission = hasPermission
  246. resp.OperationMode = "Apply"
  247. resp.PopupMsg = "您暂无权限参加此活动,若想参加可以申请开通对应的试用权限"
  248. br.Ret = 200
  249. br.Success = true
  250. br.Msg = "获取成功"
  251. br.Data = resp
  252. return
  253. } else {
  254. br.Msg = "获取信息失败"
  255. br.ErrMsg = "获取客户公司信息失败,Err:" + err.Error()
  256. return
  257. }
  258. }
  259. var havePower bool
  260. if strings.Contains(permissionStr, activityInfo.ActivityTypeName) {
  261. havePower = true
  262. }
  263. if havePower {
  264. hasPermission = 1
  265. resp.HaqveJurisdiction = true
  266. } else {
  267. if permissionStr == "专家" {
  268. resp.PopupMsg = "您暂无权限参加此活动,若想参加可以申请开通对应的试用权限"
  269. resp.MsgType = "Type"
  270. } else {
  271. resp.PopupMsg = "您暂无权限参加此活动,若想参加可以申请开通对应的试用权限"
  272. resp.MsgType = "Industry"
  273. }
  274. if companyItem.ProductId == 2 {
  275. resp.SellerMobile = companyItem.Mobile
  276. resp.SellerName = companyItem.SellerName
  277. resp.OperationMode = "Call"
  278. hasPermission = 2
  279. } else {
  280. hasPermission = 5
  281. }
  282. }
  283. } else { //潜在客户
  284. if applyCount > 0 {
  285. hasPermission = 4
  286. } else {
  287. if sellerItem != nil {
  288. hasPermission = 5
  289. } else {
  290. hasPermission = 3
  291. }
  292. }
  293. resp.OperationMode = "Apply"
  294. resp.PopupMsg = "您暂无权限参加此活动,若想参加可以申请开通对应的试用权限"
  295. }
  296. if hasPermission == 1 {
  297. count, err := models.GetCygxUserFollowSpecial(user.UserId)
  298. if err != nil {
  299. br.Msg = "获取数据失败!"
  300. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  301. return
  302. }
  303. if count == 1 {
  304. resp.IsFollow = true
  305. }
  306. activityInfo, err := services.HandleActivitySpecialShow(activityInfo, user)
  307. if err != nil {
  308. br.Msg = "获取数据失败!"
  309. br.ErrMsg = "HandleActivitySpecialShow,Err:" + err.Error()
  310. return
  311. }
  312. var condition string
  313. var pars []interface{}
  314. condition += ` AND activity_id = ? `
  315. pars = append(pars, activityInfo.ActivityId)
  316. tripTota, err := models.GetActivitySpecialTripCountByActivityId(condition, pars)
  317. if err != nil {
  318. br.Msg = "获取数据失败!"
  319. br.ErrMsg = "GetActivitySpecialTripCountByActivityId,Err:" + err.Error()
  320. return
  321. }
  322. activityInfo.TripNum = tripTota
  323. activityInfo.ActivityTypeName = "专项调研"
  324. resp.Detail = activityInfo
  325. }
  326. resp.HasPermission = hasPermission
  327. br.Ret = 200
  328. br.Success = true
  329. br.Msg = "获取成功"
  330. br.Data = resp
  331. }
  332. // @Title报名
  333. // @Description 报名
  334. // @Param request body models.ActivityIdRep true "type json string"
  335. // @Success Ret=200 {object} models.SignupSpecialStatus
  336. // @router /add [post]
  337. func (this *ActivitySpecialCoAntroller) SpecialTripAdd() {
  338. br := new(models.BaseResponse).Init()
  339. defer func() {
  340. this.Data["json"] = br
  341. this.ServeJSON()
  342. }()
  343. user := this.User
  344. if user == nil {
  345. br.Msg = "请登录"
  346. br.ErrMsg = "请登录,用户信息为空"
  347. br.Ret = 408
  348. return
  349. }
  350. uid := user.UserId
  351. var req models.ActivityIdRep
  352. resp := new(models.SignupSpecialStatus)
  353. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  354. if err != nil {
  355. br.Msg = "参数解析异常!"
  356. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  357. return
  358. }
  359. activityId := req.ActivityId
  360. hasPermission := 0
  361. //判断是否已经申请过
  362. applyCount, err := models.GetApplyRecordCount(uid)
  363. if err != nil && err.Error() != utils.ErrNoRow() {
  364. br.Msg = "获取信息失败"
  365. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  366. return
  367. }
  368. //获取FICC销售信息
  369. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 1)
  370. if err != nil && err.Error() != utils.ErrNoRow() {
  371. br.Msg = "申请失败"
  372. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  373. return
  374. }
  375. activityInfo, errInfo := models.GetCygxActivitySpecialDetail(activityId)
  376. if activityInfo == nil {
  377. br.Msg = "操作失败"
  378. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
  379. return
  380. }
  381. if errInfo != nil {
  382. br.Msg = "操作失败"
  383. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  384. return
  385. }
  386. //HasPermission "1:有该行业权限,正常展示,2:无该行业权限,3:潜在客户,未提交过申请,4:潜在客户,已提交过申请"`
  387. //var companyDetailStatus string
  388. if user.CompanyId > 1 {
  389. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  390. if err != nil {
  391. br.Msg = "获取信息失败"
  392. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  393. return
  394. }
  395. if companyPermission == "" {
  396. if applyCount > 0 {
  397. hasPermission = 4
  398. } else {
  399. if sellerItem != nil {
  400. hasPermission = 5
  401. } else {
  402. //获取权益销售信息 如果是FICC的客户类型,则默认他申请过
  403. sellerItemQy, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  404. if err != nil && err.Error() != utils.ErrNoRow() {
  405. br.Msg = "获取信息失败"
  406. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  407. return
  408. }
  409. if sellerItemQy != nil {
  410. hasPermission = 2
  411. resp.SellerMobile = sellerItemQy.Mobile
  412. resp.SellerName = sellerItemQy.RealName
  413. } else {
  414. hasPermission = 3
  415. }
  416. }
  417. }
  418. resp.HasPermission = hasPermission
  419. resp.ActivityId = activityId
  420. resp.PopupMsg = "您暂无权限参加此活动,若想参加可以申请开通对应的试用权限"
  421. br.Ret = 200
  422. br.Success = true
  423. br.Msg = "获取成功"
  424. br.Data = resp
  425. return
  426. }
  427. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  428. if err != nil {
  429. br.Msg = "获取信息失败!"
  430. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  431. return
  432. }
  433. if companyDetail == nil {
  434. br.Msg = "获取信息失败!"
  435. br.ErrMsg = "客户不存在,uid:" + strconv.Itoa(user.UserId) + "CompanyId:" + strconv.Itoa(user.CompanyId)
  436. return
  437. }
  438. }
  439. var userType int
  440. var permissionStr string
  441. userType, permissionStr, err = services.GetUserType(user.CompanyId)
  442. if err != nil {
  443. br.Msg = "获取信息失败!"
  444. br.ErrMsg = "获取失败,Err:" + err.Error()
  445. return
  446. }
  447. if userType == 1 && strings.Contains(activityInfo.ChartPermissionName, "研选") {
  448. br.Msg = "您暂无查看该活动权限"
  449. br.ErrMsg = "被分享客户不可见,永续客户无法查看研选行业"
  450. return
  451. }
  452. if user.CompanyId > 1 {
  453. companyItem, err := models.GetCompanyDetailById(user.CompanyId)
  454. //冻结客户
  455. if err != nil {
  456. if err.Error() == utils.ErrNoRow() {
  457. if applyCount > 0 {
  458. hasPermission = 4
  459. } else {
  460. if sellerItem != nil {
  461. hasPermission = 5
  462. } else {
  463. hasPermission = 3
  464. }
  465. }
  466. resp.ActivityId = activityId
  467. resp.HasPermission = hasPermission
  468. resp.PopupMsg = "您暂无权限参加此活动,若想参加可以申请开通对应的试用权限"
  469. br.Ret = 200
  470. br.Success = true
  471. br.Msg = "获取成功"
  472. br.Data = resp
  473. return
  474. } else {
  475. br.Msg = "获取信息失败"
  476. br.ErrMsg = "获取客户公司信息失败,Err:" + err.Error()
  477. return
  478. }
  479. }
  480. //判断是否有权限
  481. var havePower bool
  482. if strings.Contains(permissionStr, activityInfo.ActivityTypeName) {
  483. havePower = true
  484. }
  485. if havePower {
  486. hasPermission = 1
  487. } else {
  488. if companyItem.ProductId == 2 {
  489. hasPermission = 2
  490. resp.SellerMobile = companyItem.Mobile
  491. resp.SellerName = companyItem.SellerName
  492. if permissionStr == "专家" {
  493. resp.PopupMsg = "您暂无权限参加【" + activityInfo.ActivityTypeName + "】类型活动,若想参加请联系对口销售--" + companyItem.SellerName + ":" + companyItem.Mobile
  494. } else {
  495. resp.PopupMsg = "您暂无权限参加【" + activityInfo.ChartPermissionName + "】行业活动,若想参加请联系对口销售--" + companyItem.SellerName + ":" + companyItem.Mobile
  496. }
  497. } else {
  498. hasPermission = 5
  499. }
  500. }
  501. } else { //潜在客户
  502. if applyCount > 0 {
  503. hasPermission = 4
  504. } else {
  505. if sellerItem != nil {
  506. hasPermission = 5
  507. } else {
  508. hasPermission = 3
  509. }
  510. }
  511. resp.PopupMsg = "您暂无权限参加此活动,若想参加可以申请开通对应的试用权限"
  512. }
  513. resp.HasPermission = hasPermission
  514. resp.ActivityId = activityId
  515. if hasPermission == 1 {
  516. signupStatus, popupMsg, popupMsg2, err := services.SpecialTripPopupMsg(activityInfo, user)
  517. if err != nil {
  518. br.Msg = "获取信息失败"
  519. br.ErrMsg = "SpecialTripPopupMsg,Err:" + err.Error()
  520. return
  521. }
  522. total, err := models.GetUserActivitySpecialTripCount(user.UserId, activityId)
  523. if err != nil {
  524. br.Msg = "获取信息失败"
  525. br.ErrMsg = "获取日程数量信息失败,Err:" + err.Error()
  526. return
  527. }
  528. resp.PopupMsg = popupMsg
  529. resp.PopupMsg2 = popupMsg2
  530. resp.SignupStatus = signupStatus
  531. if signupStatus == 1 {
  532. //判断是删除还是添加
  533. if total == 0 {
  534. //获取销售信息
  535. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  536. if err != nil {
  537. br.Msg = "操作失败"
  538. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  539. return
  540. }
  541. item := new(models.CygxActivitySpecialTrip)
  542. item.UserId = uid
  543. item.RealName = user.RealName
  544. item.ActivityId = activityId
  545. item.CreateTime = time.Now()
  546. item.Mobile = user.Mobile
  547. item.Email = user.Email
  548. item.CompanyId = user.CompanyId
  549. item.CompanyName = user.CompanyName
  550. if sellerItem != nil {
  551. item.SellerName = sellerItem.RealName
  552. }
  553. err = models.AddCygxActivitySpecialTrip(item)
  554. if err != nil {
  555. br.Msg = "操作失败"
  556. br.ErrMsg = "操作失败,Err:" + err.Error()
  557. return
  558. }
  559. //SignupStatus int `description:"返回状态:1:成功 、2 :人数已满 、3:调研次数已用完、 4:超时"`
  560. ////给所属销售发送消息
  561. //if sellerItem.Mobile != "" {
  562. // openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  563. // if openIpItem != nil && openIpItem.OpenId != "" {
  564. // if sellerItem != nil {
  565. // go services.SendSpecialTemplateMsg(user.RealName+"【"+user.CompanyName+"】", time.Now().Format(utils.FormatDateTime), user.Mobile, activityInfo.ResearchTheme, "sale", openIpItem)
  566. // }
  567. // }
  568. //}
  569. // 给芳姐发消息
  570. //cnf, _ := models.GetConfigByCode("tpl_msg")
  571. //if cnf != nil {
  572. // openIpItem, _ := models.GetUserRecordByMobile(4, cnf.ConfigValue)
  573. // if openIpItem != nil && openIpItem.OpenId != "" {
  574. // actList, _ := models.GetActivityListSpecialAll(activityId)
  575. // if len(actList) == 5 {
  576. // var companyName string
  577. // for _, v := range actList {
  578. // companyName += "【" + v.CompanyName + "】"
  579. // }
  580. // go services.SendSpecialTemplateMsg(companyName, "", "", activityInfo.ResearchTheme, "", openIpItem)
  581. // }
  582. // }
  583. //}
  584. ////用户专项调研操作行为,模板消息推送
  585. //go services.SpecialActivityUserRemind(user, activityInfo, 1)
  586. }
  587. }
  588. }
  589. br.Ret = 200
  590. br.Success = true
  591. br.Msg = "操作成功"
  592. br.Data = resp
  593. }
  594. // @Title 取消报名
  595. // @Description 取消报名
  596. // @Param request body models.ActivityIdRep true "type json string"
  597. // @Success Ret=200 {object} models.SignupStatus
  598. // @router /trip/cancel [post]
  599. func (this *ActivitySpecialCoAntroller) Tripcancel() {
  600. br := new(models.BaseResponse).Init()
  601. defer func() {
  602. this.Data["json"] = br
  603. this.ServeJSON()
  604. }()
  605. user := this.User
  606. if user == nil {
  607. br.Msg = "请登录"
  608. br.ErrMsg = "请登录,用户信息为空"
  609. br.Ret = 408
  610. return
  611. }
  612. uid := user.UserId
  613. var req models.ActivityIdRep
  614. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  615. if err != nil {
  616. br.Msg = "参数解析异常!"
  617. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  618. return
  619. }
  620. activityId := req.ActivityId
  621. activityInfo, errInfo := models.GetCygxActivitySpecialDetailById(uid, activityId)
  622. if activityInfo == nil {
  623. br.Msg = "操作失败"
  624. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
  625. return
  626. }
  627. if errInfo != nil {
  628. br.Msg = "操作失败"
  629. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  630. return
  631. }
  632. err = models.CancelActivitySpecialTrip(uid, activityInfo)
  633. if err != nil {
  634. br.Msg = "操作失败"
  635. br.ErrMsg = "CancelActivitySpecialTrip,Err:" + err.Error()
  636. return
  637. }
  638. br.Ret = 200
  639. br.Success = true
  640. br.Msg = "会议提醒已取消"
  641. }