user_read_record.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. package controllers
  2. import (
  3. "eta/eta_mini_crm/models"
  4. "eta/eta_mini_crm/models/response"
  5. "eta/eta_mini_crm/utils"
  6. "fmt"
  7. "strconv"
  8. "strings"
  9. "time"
  10. "github.com/beego/beego/v2/client/orm"
  11. "github.com/rdlucklib/rdluck_tools/paging"
  12. )
  13. type UserReadRecordController struct {
  14. BaseAuthController
  15. }
  16. // List
  17. // @Title 用户阅读统计列表
  18. // @Description 用户阅读统计列表
  19. // @Param PageSize query int true "每页数据条数"
  20. // @Param CurrentIndex query int true "当前页页码,从1开始"
  21. // @Param SellerId query int true "销售id"
  22. // @Param Status query string true "用户状态"
  23. // @Param KeyWord query string true "手机号/邮箱/姓名"
  24. // @Param IsRegistered query string true "是否注册"
  25. // @Param IsSubscribed query string true "是否关注"
  26. // @Param RegisterStartDate query string true "注册开始时间"
  27. // @Param RegisterEndDate query string true "注册结束时间"
  28. // @Param CreateStartDate query string true "创建开始时间"
  29. // @Param CreateEndDate query string true "创建结束时间"
  30. // @Param SortParam query string true "排序字段"
  31. // @Param SortType query string true "排序方式"
  32. // @Success 200 {object} response.UserListResp
  33. // @router /list [get]
  34. func (this *UserReadRecordController) List() {
  35. br := new(models.BaseResponse).Init()
  36. defer func() {
  37. this.Data["json"] = br
  38. this.ServeJSON()
  39. }()
  40. pageSize, _ := this.GetInt("PageSize")
  41. currentIndex, _ := this.GetInt("CurrentIndex")
  42. sellerIdStr := this.GetString("SellerId")
  43. status := this.GetString("Status")
  44. keyWord := this.GetString("KeyWord")
  45. IsRegistered := this.GetString("IsRegisterd")
  46. IsSubscribed := this.GetString("IsSubscribed")
  47. registerStartDate := this.GetString("RegisterStartDate")
  48. registerEndDate := this.GetString("RegisterEndDate")
  49. createStartDate := this.GetString("CreateStartDate")
  50. createEndDate := this.GetString("CreateEndDate")
  51. sortParma := this.GetString("SortParam")
  52. sortType := this.GetString("SortType")
  53. var condition string
  54. var sortCondition string
  55. var pars []interface{}
  56. if keyWord != "" {
  57. condition += ` AND (u.real_name LIKE ? OR u.phone LIKE ? OR u.email LIKE ? OR u.company LIKE ?) `
  58. pars = utils.GetLikeKeywordPars(pars, keyWord, 4)
  59. }
  60. if pageSize <= 0 {
  61. pageSize = utils.PageSize20
  62. } else if pageSize > utils.PageSize100 {
  63. pageSize = utils.PageSize100
  64. }
  65. if currentIndex <= 0 {
  66. currentIndex = 1
  67. }
  68. if sellerIdStr != "" {
  69. sellerIds := strings.Split(sellerIdStr, ",")
  70. if len(sellerIds) != 0 {
  71. condition += ` AND ( `
  72. for i, id := range sellerIds {
  73. if i == 0 {
  74. condition += ` u.seller_id = ? `
  75. pars = append(pars, id)
  76. } else {
  77. condition += ` OR u.seller_id = ? `
  78. pars = append(pars, id)
  79. }
  80. }
  81. condition += `) `
  82. }
  83. }
  84. if sortParma != "" && sortType != "" {
  85. sortCondition = " ORDER BY "
  86. var param, sort string
  87. switch sortParma {
  88. case "LastUpdateTime":
  89. param = "last_update_time"
  90. case "ReadCnt":
  91. param = "read_cnt"
  92. }
  93. switch sortType {
  94. case "asc":
  95. sort = " ASC "
  96. case "desc":
  97. sort = " DESC "
  98. }
  99. if param != "" && sort != "" {
  100. sortCondition += param + " " + sort
  101. } else {
  102. sortCondition = ""
  103. }
  104. }
  105. switch status {
  106. case "禁用":
  107. condition += " AND u.status=? "
  108. pars = append(pars, 0)
  109. case "潜在":
  110. condition += " AND u.status=? "
  111. pars = append(pars, 1)
  112. case "正式":
  113. condition += " AND u.status=? "
  114. pars = append(pars, 2)
  115. case "":
  116. condition += " AND (u.status=? OR u.status=?) "
  117. pars = append(pars, 0, 2)
  118. }
  119. switch IsRegistered {
  120. case "是":
  121. condition += " AND u.is_registered=? "
  122. pars = append(pars, true)
  123. case "否":
  124. condition += " AND u.is_registered=? "
  125. pars = append(pars, false)
  126. }
  127. switch IsSubscribed {
  128. case "是":
  129. condition += " AND u.is_subscribed=? "
  130. pars = append(pars, true)
  131. case "否":
  132. condition += " AND u.is_subscribed=? "
  133. pars = append(pars, false)
  134. }
  135. if registerStartDate != "" {
  136. condition += " AND u.register_time>? "
  137. pars = append(pars, registerStartDate)
  138. }
  139. if registerEndDate != "" {
  140. condition += " AND u.register_time<? "
  141. pars = append(pars, registerEndDate)
  142. }
  143. if createStartDate != "" {
  144. condition += " AND u.create_time>? "
  145. pars = append(pars, createStartDate)
  146. }
  147. if createEndDate != "" {
  148. pars = append(pars, createEndDate)
  149. }
  150. if pageSize <= 0 {
  151. pageSize = utils.PageSize20
  152. } else if pageSize > utils.PageSize100 {
  153. pageSize = utils.PageSize100
  154. }
  155. if currentIndex <= 0 {
  156. currentIndex = 1
  157. }
  158. startSize := utils.StartIndex(currentIndex, pageSize)
  159. total, err := models.GetUserReadCount(condition, pars)
  160. if err != nil {
  161. br.Msg = "获取失败"
  162. br.ErrMsg = "获取失败,Err:" + err.Error()
  163. return
  164. }
  165. userList, err := models.GetUserReadList(condition, sortCondition, pars, startSize, pageSize)
  166. if err != nil {
  167. br.Msg = "查询用户失败"
  168. br.Msg = "查询用户失败,系统错误,Err:" + err.Error()
  169. return
  170. }
  171. page := paging.GetPaging(currentIndex, pageSize, total)
  172. resp := new(response.UserListResp)
  173. resp.Paging = page
  174. resp.List = userList
  175. br.Data = resp
  176. br.Ret = 200
  177. br.Success = true
  178. br.Msg = "获取成功"
  179. }
  180. // Detail
  181. // @Title 用户阅读记录详情
  182. // @Description 用户阅读记录详情信息
  183. // @Param PageSize query int true "每页数据条数"
  184. // @Param CurrentIndex query int true "当前页页码,从1开始"
  185. // @Param ChartPermissionIds query string true "品种列表"
  186. // @Param ClassifyIds query string true "品种列表"
  187. // @Success 200 {object} models.LoginResp
  188. // @router /detail [get]
  189. func (this *UserReadRecordController) Detail() {
  190. br := new(models.BaseResponse).Init()
  191. defer func() {
  192. this.Data["json"] = br
  193. this.ServeJSON()
  194. }()
  195. UserId, _ := this.GetInt("UserId")
  196. pageSize, _ := this.GetInt("PageSize")
  197. currentIndex, _ := this.GetInt("CurrentIndex")
  198. chartPermissionids := this.GetString("ChartPermissionIds")
  199. classifyIds := this.GetString("ClassifyIds")
  200. if UserId <= 0 {
  201. br.Msg = "查询用户不存在"
  202. return
  203. }
  204. if pageSize <= 0 {
  205. pageSize = utils.PageSize20
  206. } else if pageSize > utils.PageSize100 {
  207. pageSize = utils.PageSize100
  208. }
  209. if currentIndex <= 0 {
  210. currentIndex = 1
  211. }
  212. startSize := utils.StartIndex(currentIndex, pageSize)
  213. user, err := models.GetUserById(UserId)
  214. if err != nil {
  215. if err == orm.ErrNoRows {
  216. br.Msg = "用户不存在或已删除,请刷新页面"
  217. return
  218. }
  219. br.Msg = "查询用户失败"
  220. br.ErrMsg = "查询用户失败,系统错误,Err:" + err.Error()
  221. return
  222. }
  223. if user == nil {
  224. br.Msg = "用户不存在或已删除,请刷新页面"
  225. return
  226. }
  227. var condition string
  228. var pars []interface{}
  229. if chartPermissionids != "" {
  230. ids := strings.Split(chartPermissionids, ",")
  231. if len(ids) != 0 {
  232. condition += ` AND ( `
  233. for i, id := range ids {
  234. if i == 0 {
  235. condition += ` urp2.chart_permission_id = ? `
  236. pars = append(pars, id)
  237. } else {
  238. condition += ` OR urp2.chart_permission_id = ? `
  239. pars = append(pars, id)
  240. }
  241. }
  242. condition += `) `
  243. }
  244. }
  245. if classifyIds != "" {
  246. ids := strings.Split(classifyIds, ",")
  247. if len(ids) != 0 {
  248. condition += ` AND ( `
  249. for i, id := range ids {
  250. if i == 0 {
  251. condition += ` classify_id2 = ? `
  252. pars = append(pars, id)
  253. } else {
  254. condition += ` OR classify_id2 = ? `
  255. pars = append(pars, id)
  256. }
  257. }
  258. condition += `) `
  259. }
  260. }
  261. total, err := models.GetUserReadRecordCountByUserId(UserId, condition, pars)
  262. if err != nil {
  263. br.Msg = "查询阅读记录失败"
  264. br.ErrMsg = "查询阅读记录失败,Err:" + err.Error()
  265. return
  266. }
  267. readList, err := models.GetUserReadRecordByUserId(UserId, condition, pars, startSize, pageSize)
  268. if err != nil {
  269. br.Msg = "查询阅读记录失败"
  270. br.ErrMsg = "查询阅读记录失败,系统错误,Err:" + err.Error()
  271. return
  272. }
  273. page := paging.GetPaging(currentIndex, pageSize, total)
  274. resp := new(response.UserReadRecordListResp)
  275. resp.Paging = page
  276. resp.List = readList
  277. br.Msg = "获取成功"
  278. br.Data = resp
  279. br.Success = true
  280. br.Ret = 200
  281. }
  282. // ReadCntChart
  283. // @Title 用户阅读量统计图信息
  284. // @Description 用户阅读量统计图信息
  285. // @Param ChartPermissionIds query string true "品种列表"
  286. // @Param ClassifyIds query string true "品种列表"
  287. // @Param StartDate query string true "开始时间"
  288. // @Param EndDate query string true "结束时间"
  289. // @Param UserId query int true "用户id"
  290. // @Success 200 {object} models.LoginResp
  291. // @router /readCntChart [get]
  292. func (this *UserReadRecordController) ReadCntChart() {
  293. br := new(models.BaseResponse).Init()
  294. defer func() {
  295. this.Data["json"] = br
  296. this.ServeJSON()
  297. }()
  298. userId, _ := this.GetInt("UserId")
  299. startDate := this.GetString("StartDate")
  300. endDate := this.GetString("EndDate")
  301. chartPermissionIds := this.GetString("ChartPermissionIds")
  302. classifyIds := this.GetString("ClassifyIds")
  303. var condition string
  304. var pars []interface{}
  305. if chartPermissionIds != "" {
  306. ids := strings.Split(chartPermissionIds, ",")
  307. if len(ids) != 0 {
  308. condition += ` AND ( `
  309. for i, id := range ids {
  310. if i == 0 {
  311. condition += ` urp.chart_permission_id = ? `
  312. pars = append(pars, id)
  313. } else {
  314. condition += ` OR urp.chart_permission_id = ? `
  315. pars = append(pars, id)
  316. }
  317. }
  318. condition += `) `
  319. }
  320. }
  321. if classifyIds != "" {
  322. ids := strings.Split(classifyIds, ",")
  323. if len(ids) != 0 {
  324. condition += ` AND ( `
  325. for i, id := range ids {
  326. if i == 0 {
  327. condition += ` classify_id2 = ? `
  328. pars = append(pars, id)
  329. } else {
  330. condition += ` OR classify_id2 = ? `
  331. pars = append(pars, id)
  332. }
  333. }
  334. condition += `) `
  335. }
  336. }
  337. if startDate == "" {
  338. startDate = time.Now().AddDate(-1, 0, 0).Format(utils.FormatDate)
  339. }
  340. if endDate == "" {
  341. endDate = time.Now().AddDate(0, 0, 1).Format(utils.FormatDate)
  342. }
  343. if userId > 0 {
  344. condition += ` AND ur.user_id = ? `
  345. pars = append(pars, userId)
  346. }
  347. readCnts, err := models.GetStaticReadCnt(condition, pars, startDate, endDate)
  348. if err != nil {
  349. br.Msg = "获取阅读统计失败"
  350. br.ErrMsg = "获取阅读统计失败,系统错误,Err:" + err.Error()
  351. return
  352. }
  353. br.Msg = "查询成功"
  354. br.Data = readCnts
  355. br.Ret = 200
  356. br.Success = true
  357. }
  358. // readPermissionChart
  359. // @Title 用户阅读品种图信息
  360. // @Description 用户阅读品种图信息
  361. // @Param UserId query string true "用户id"
  362. // @Success 200 {object} models.LoginResp
  363. // @router /readPermissionChart [get]
  364. func (this *UserReadRecordController) ReadPermissionChart() {
  365. br := new(models.BaseResponse).Init()
  366. defer func() {
  367. this.Data["json"] = br
  368. this.ServeJSON()
  369. }()
  370. userId, _ := this.GetInt("UserId")
  371. var condition string
  372. var pars []interface{}
  373. if userId > 0 {
  374. condition += ` AND ur.user_id = ? `
  375. pars = append(pars, userId)
  376. }
  377. permissionCnts, err := models.GetStaticPermissionCnt(condition, pars)
  378. if err != nil {
  379. br.Msg = "获取品种阅读统计失败"
  380. br.ErrMsg = "获取品种阅读统计失败,系统错误,Err:" + err.Error()
  381. return
  382. }
  383. var sum int
  384. for _, v := range permissionCnts {
  385. sum += v.Count
  386. }
  387. for _, v := range permissionCnts {
  388. percent := float64(v.Count) / float64(sum) * 100
  389. percentStr := fmt.Sprintf("%.0f", percent)
  390. parsedFloat, _ := strconv.ParseFloat(percentStr, 64)
  391. v.Percent = parsedFloat
  392. }
  393. br.Msg = "查询成功"
  394. br.Data = permissionCnts
  395. br.Ret = 200
  396. br.Success = true
  397. }