user.go 6.5 KB

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