user.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. var condition string
  35. var pars []interface{}
  36. mobile := user.Mobile
  37. if mobile == "" {
  38. br.Ret = 200
  39. br.Success = true
  40. br.Msg = "获取成功"
  41. br.Data = resp
  42. }
  43. permissionId, err := models.GetCompanyPermissionId(user.CompanyId)
  44. if err != nil {
  45. br.Msg = "获取信息失败"
  46. br.ErrMsg = "GetCompanyPermissionId,Err:" + err.Error()
  47. return
  48. }
  49. permissionId = "23"
  50. if permissionId == "" {
  51. br.Ret = 200
  52. br.Success = true
  53. br.Msg = "获取成功"
  54. br.Data = resp
  55. }
  56. mapIndustrial := make(map[int][]*models.IndustrialManagementRep)
  57. mapFllow := make(map[int]int)
  58. ampCheckList := make(map[int][]int, 0)
  59. permissionIdList := make([]string, 0)
  60. fllowList, err := models.GetCygxIndustryFllowList(mobile)
  61. if err != nil && err.Error() != utils.ErrNoRow() {
  62. br.Msg = "获取信息失败"
  63. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  64. return
  65. }
  66. for _, v := range fllowList {
  67. mapFllow[v.IndustrialManagementId] = v.IndustrialManagementId
  68. }
  69. industrialList, err := models.GetindustrialManagement()
  70. if err != nil {
  71. br.Msg = "获取信息失败"
  72. br.ErrMsg = "获取产业信息失败,Err:" + err.Error()
  73. return
  74. }
  75. for _, v := range industrialList {
  76. if mapFllow[v.IndustrialManagementId] > 0 {
  77. v.IsFllow = true
  78. //添加所关注的行业赛道
  79. ampCheckList[v.ChartPermissionId] = append(ampCheckList[v.ChartPermissionId], v.IndustrialManagementId)
  80. }
  81. mapIndustrial[v.ChartPermissionId] = append(mapIndustrial[v.ChartPermissionId], v)
  82. }
  83. slicepermissionId := strings.Split(permissionId, ",")
  84. if len(slicepermissionId) > 0 {
  85. for _, v := range slicepermissionId {
  86. permissionIdList = append(permissionIdList, v)
  87. }
  88. condition += ` AND chart_permission_id IN (` + utils.GetOrmInReplace(len(slicepermissionId)) + ` ) `
  89. pars = append(pars, permissionIdList)
  90. }
  91. permissionList, err := models.GetChartPermissionAll(condition, pars)
  92. if err != nil {
  93. br.Msg = "获取信息失败"
  94. br.ErrMsg = "获取产业信息失败,Err:" + err.Error()
  95. return
  96. }
  97. for k, v := range permissionList {
  98. if len(mapIndustrial[v.ChartPermissionId]) == 0 {
  99. permissionList[k].List = make([]*models.IndustrialManagementRep, 0)
  100. } else {
  101. permissionList[k].List = mapIndustrial[v.ChartPermissionId]
  102. }
  103. if len(ampCheckList[v.ChartPermissionId]) == 0 {
  104. permissionList[k].CheckList = make([]int, 0)
  105. } else {
  106. permissionList[k].CheckList = ampCheckList[v.ChartPermissionId]
  107. }
  108. permissionList[k].AllTracks = "全部赛道"
  109. }
  110. count, err := models.GetXzsChooseSendCountByMobile(mobile)
  111. if err != nil {
  112. br.Msg = "获取信息失败"
  113. br.ErrMsg = "GetXzsChooseSendCountByMobile,Err:" + err.Error()
  114. return
  115. }
  116. if count == 0 {
  117. resp.IsObjective = 1
  118. resp.IsSubjective = 1
  119. } else {
  120. detail, err := models.GetCygxXzsChooseSendByMobile(mobile)
  121. if err != nil {
  122. br.Msg = "获取信息失败"
  123. br.ErrMsg = "GetCygxXzsChooseSendByMobile,Err:" + err.Error()
  124. return
  125. }
  126. resp.IsObjective = detail.IsObjective
  127. resp.IsSubjective = detail.IsSubjective
  128. resp.IsRefuse = detail.IsRefuse
  129. }
  130. resp.List = permissionList
  131. br.Ret = 200
  132. br.Success = true
  133. br.Msg = "获取成功"
  134. br.Data = resp
  135. }
  136. // @Title 提交用户的选择详情
  137. // @Description 提交用户的选择详情接口
  138. // @Param request body models.SubmitChooseSendResp true "type json string"
  139. // @Success 200 {object} models.CygxXzsChooseSendResp
  140. // @router /choose/submit [post]
  141. func (this *UserController) ChooseSubmit() {
  142. br := new(models.BaseResponse).Init()
  143. defer func() {
  144. this.Data["json"] = br
  145. this.ServeJSON()
  146. }()
  147. user := this.User
  148. if user == nil {
  149. br.Msg = "请登录"
  150. br.ErrMsg = "请登录,用户信息为空"
  151. br.Ret = 408
  152. return
  153. }
  154. if user.Mobile == "" {
  155. br.Msg = "提交失败!"
  156. br.ErrMsg = "提交失败,手机号不能为空"
  157. return
  158. }
  159. var req models.SubmitChooseSendResp
  160. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  161. if err != nil {
  162. br.Msg = "参数解析异常!"
  163. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  164. return
  165. }
  166. var industrialManagementIds string
  167. industrialManagementList := req.List
  168. for _, v := range industrialManagementList {
  169. if v.ChartPermissionId != 23 {
  170. industrialManagementIds += v.IndustrialManagementIds + ","
  171. }
  172. }
  173. industrialManagementIds = strings.TrimRight(industrialManagementIds, ",")
  174. sliceIndustrial := strings.Split(industrialManagementIds, ",")
  175. var itemsFllow []*models.CygxIndustryFllow
  176. for _, v := range sliceIndustrial {
  177. item := new(models.CygxIndustryFllow)
  178. industrialManagementId, _ := strconv.Atoi(v)
  179. item.IndustrialManagementId = industrialManagementId
  180. item.UserId = user.UserId
  181. item.Mobile = user.Mobile
  182. item.Email = user.Email
  183. item.CompanyId = user.CompanyId
  184. item.CompanyName = user.CompanyName
  185. item.RealName = user.RealName
  186. item.Type = 1
  187. item.CreateTime = time.Now()
  188. item.ModifyTime = time.Now()
  189. item.Source = 2
  190. itemsFllow = append(itemsFllow, item)
  191. }
  192. mobile := user.Mobile
  193. item := new(models.CygxXzsChooseSend)
  194. item.UserId = user.UserId
  195. item.Mobile = user.Mobile
  196. item.Email = user.Email
  197. item.CompanyId = user.CompanyId
  198. item.CompanyName = user.CompanyName
  199. item.RealName = user.RealName
  200. item.CreateTime = time.Now()
  201. item.ModifyTime = time.Now()
  202. item.IsRefuse = req.IsRefuse
  203. item.IsSubjective = req.IsSubjective
  204. item.IsObjective = req.IsObjective
  205. count, err := models.GetXzsChooseSendCountByMobile(mobile)
  206. if err != nil {
  207. br.Msg = "获取信息失败"
  208. br.ErrMsg = "GetXzsChooseSendCountByMobile,Err:" + err.Error()
  209. return
  210. }
  211. //如果有记录就新增,没有记录就修改
  212. if count == 0 {
  213. err = models.AddCygxXzsChooseSend(item, itemsFllow)
  214. } else {
  215. err = models.UpdateCygxXzsChooseSend(item, itemsFllow)
  216. }
  217. if err != nil {
  218. br.Msg = "保存失败!"
  219. br.ErrMsg = "保存失败!,Err:" + err.Error()
  220. return
  221. }
  222. br.Ret = 200
  223. br.Success = true
  224. br.Msg = "保存成功"
  225. }