user.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "hongze/hongze_cygxzs/models"
  5. "hongze/hongze_cygxzs/utils"
  6. "strconv"
  7. "strings"
  8. "time"
  9. )
  10. type UserController struct {
  11. BaseAuthController
  12. }
  13. type UserCommonController struct {
  14. BaseCommonController
  15. }
  16. // @Title 获取用户的选择详情
  17. // @Description 获取用户的选择详情接口
  18. // @Success 200 {object} models.CygxXzsChooseSendResp
  19. // @router /choose/detail [get]
  20. func (this *UserController) ChooseDetail() {
  21. br := new(models.BaseResponse).Init()
  22. defer func() {
  23. this.Data["json"] = br
  24. this.ServeJSON()
  25. }()
  26. user := this.User
  27. if user == nil {
  28. br.Msg = "请登录"
  29. br.ErrMsg = "请登录,用户信息为空"
  30. br.Ret = 408
  31. return
  32. }
  33. resp := new(models.CygxXzsChooseSendResp)
  34. mobile := user.Mobile
  35. mapIndustrial := make(map[int][]*models.IndustrialManagementRep)
  36. mapFllow := make(map[int]int)
  37. ampCheckList := make(map[int][]int, 0)
  38. fllowList, err := models.GetCygxIndustryFllowList(mobile)
  39. if err != nil && err.Error() != utils.ErrNoRow() {
  40. br.Msg = "获取信息失败"
  41. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  42. return
  43. }
  44. for _, v := range fllowList {
  45. mapFllow[v.IndustrialManagementId] = v.IndustrialManagementId
  46. }
  47. industrialList, err := models.GetindustrialManagement()
  48. if err != nil {
  49. br.Msg = "获取信息失败"
  50. br.ErrMsg = "获取产业信息失败,Err:" + err.Error()
  51. return
  52. }
  53. for _, v := range industrialList {
  54. if mapFllow[v.IndustrialManagementId] > 0 {
  55. v.IsFllow = true
  56. //添加所关注的行业赛道
  57. ampCheckList[v.ChartPermissionId] = append(ampCheckList[v.ChartPermissionId], v.IndustrialManagementId)
  58. }
  59. mapIndustrial[v.ChartPermissionId] = append(mapIndustrial[v.ChartPermissionId], v)
  60. }
  61. permissionList, err := models.GetChartPermissionAll("")
  62. if err != nil {
  63. br.Msg = "获取信息失败"
  64. br.ErrMsg = "获取产业信息失败,Err:" + err.Error()
  65. return
  66. }
  67. for k, v := range permissionList {
  68. permissionList[k].List = mapIndustrial[v.ChartPermissionId]
  69. if len(ampCheckList[v.ChartPermissionId]) == 0 {
  70. permissionList[k].CheckList = make([]int, 0)
  71. } else {
  72. permissionList[k].CheckList = ampCheckList[v.ChartPermissionId]
  73. }
  74. permissionList[k].AllTracks = "全部赛道"
  75. }
  76. count, err := models.GetXzsChooseSendCountByMobile(mobile)
  77. if err != nil {
  78. br.Msg = "获取信息失败"
  79. br.ErrMsg = "GetXzsChooseSendCountByMobile,Err:" + err.Error()
  80. return
  81. }
  82. if count == 0 {
  83. resp.IsObjective = 1
  84. resp.IsSubjective = 1
  85. } else {
  86. detail, err := models.GetCygxXzsChooseSendByMobile(mobile)
  87. if err != nil {
  88. br.Msg = "获取信息失败"
  89. br.ErrMsg = "GetCygxXzsChooseSendByMobile,Err:" + err.Error()
  90. return
  91. }
  92. resp.IsObjective = detail.IsObjective
  93. resp.IsSubjective = detail.IsSubjective
  94. resp.IsRefuse = detail.IsRefuse
  95. }
  96. resp.List = permissionList
  97. br.Ret = 200
  98. br.Success = true
  99. br.Msg = "获取成功"
  100. br.Data = resp
  101. }
  102. // @Title 提交用户的选择详情
  103. // @Description 提交用户的选择详情接口
  104. // @Param request body models.SubmitChooseSendResp true "type json string"
  105. // @Success 200 {object} models.CygxXzsChooseSendResp
  106. // @router /choose/submit [post]
  107. func (this *UserController) ChooseSubmit() {
  108. br := new(models.BaseResponse).Init()
  109. defer func() {
  110. this.Data["json"] = br
  111. this.ServeJSON()
  112. }()
  113. user := this.User
  114. if user == nil {
  115. br.Msg = "请登录"
  116. br.ErrMsg = "请登录,用户信息为空"
  117. br.Ret = 408
  118. return
  119. }
  120. if user.Mobile == "" {
  121. br.Msg = "提交失败!"
  122. br.ErrMsg = "提交失败,手机号不能为空"
  123. return
  124. }
  125. var req models.SubmitChooseSendResp
  126. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  127. if err != nil {
  128. br.Msg = "参数解析异常!"
  129. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  130. return
  131. }
  132. industrialManagementIds := req.IndustrialManagementIds
  133. sliceIndustrial := strings.Split(industrialManagementIds, ",")
  134. var itemsFllow []*models.CygxIndustryFllow
  135. for _, v := range sliceIndustrial {
  136. item := new(models.CygxIndustryFllow)
  137. industrialManagementId, _ := strconv.Atoi(v)
  138. item.IndustrialManagementId = industrialManagementId
  139. item.UserId = user.UserId
  140. item.Mobile = user.Mobile
  141. item.Email = user.Email
  142. item.CompanyId = user.CompanyId
  143. item.CompanyName = user.CompanyName
  144. item.RealName = user.RealName
  145. item.Type = 1
  146. item.CreateTime = time.Now()
  147. item.ModifyTime = time.Now()
  148. item.Source = 2
  149. itemsFllow = append(itemsFllow, item)
  150. }
  151. mobile := user.Mobile
  152. item := new(models.CygxXzsChooseSend)
  153. item.UserId = user.UserId
  154. item.Mobile = user.Mobile
  155. item.Email = user.Email
  156. item.CompanyId = user.CompanyId
  157. item.CompanyName = user.CompanyName
  158. item.RealName = user.RealName
  159. item.CreateTime = time.Now()
  160. item.ModifyTime = time.Now()
  161. item.IsRefuse = req.IsRefuse
  162. item.IsSubjective = req.IsSubjective
  163. item.IsObjective = req.IsObjective
  164. count, err := models.GetXzsChooseSendCountByMobile(mobile)
  165. if err != nil {
  166. br.Msg = "获取信息失败"
  167. br.ErrMsg = "GetXzsChooseSendCountByMobile,Err:" + err.Error()
  168. return
  169. }
  170. //如果有记录就新增,没有记录就修改
  171. if count == 0 {
  172. err = models.AddCygxXzsChooseSend(item, itemsFllow)
  173. } else {
  174. err = models.UpdateCygxXzsChooseSend(item, itemsFllow)
  175. }
  176. if err != nil {
  177. br.Msg = "保存失败!"
  178. br.ErrMsg = "保存失败!,Err:" + err.Error()
  179. return
  180. }
  181. br.Ret = 200
  182. br.Success = true
  183. br.Msg = "保存成功"
  184. }