report_push_status.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "eta/eta_mini_crm/models"
  5. "eta/eta_mini_crm/models/request"
  6. "eta/eta_mini_crm/models/response"
  7. "eta/eta_mini_crm/utils"
  8. "fmt"
  9. "strconv"
  10. "strings"
  11. "time"
  12. "github.com/rdlucklib/rdluck_tools/paging"
  13. )
  14. type ReportPushStatusController struct {
  15. BaseAuthController
  16. }
  17. // List
  18. // @Title pdf研报列表
  19. // @Description pdf研报列表
  20. // @Param PageSize query int true "每页数据条数"
  21. // @Param CurrentIndex query int true "当前页页码,从1开始"
  22. // @Param ClassifyIds query string true "分类id,可多选用英文,隔开"
  23. // @Param ChartPermissionIds query string true "品种id,可多选用英文,隔开"
  24. // @Param PublishStartDate query string true "发布开始时间"
  25. // @Param PublishEndDate query string true "发布结束时间"
  26. // @Param PushStartDate query string true "推送开始时间"
  27. // @Param PushEndDate query string true "推送结束时间"
  28. // @Param KeyWord query string true "报告标题/创建人"
  29. // @Param SelectedIds query string true "选择的报告id, isSelectAll:为true时,反选"
  30. // @Param IsSelectAll query bool true "是否全选"
  31. // @Param SortParam query string true "排序字段"
  32. // @Param SortType query string true "排序方式"
  33. // @Success 200 {object} models.ReportAuthorResp
  34. // @router /list [get]
  35. func (this *ReportPushStatusController) List() {
  36. br := new(models.BaseResponse).Init()
  37. defer func() {
  38. this.Data["json"] = br
  39. this.ServeJSON()
  40. }()
  41. pageSize, _ := this.GetInt("PageSize")
  42. currentIndex, _ := this.GetInt("CurrentIndex")
  43. classifyIds := this.GetString("ClassifyIds")
  44. selectedIds := this.GetString("SelectedIds")
  45. isSelectAll, _ := this.GetBool("IsSelectAll")
  46. chartPermissionIds := this.GetString("ChartPermissionIds")
  47. publishStartDate := this.GetString("PublishStartDate")
  48. publishEndDate := this.GetString("PublishEndDate")
  49. pushStartDate := this.GetString("PushStartDate")
  50. pushEndDate := this.GetString("PushEndDate")
  51. keyWord := this.GetString("KeyWord")
  52. sortParam := this.GetString("SortParam")
  53. sortType := this.GetString("SortType")
  54. if pageSize <= 0 {
  55. pageSize = utils.PageSize20
  56. }
  57. if currentIndex <= 0 {
  58. currentIndex = 1
  59. }
  60. var condition string
  61. var pars []interface{}
  62. if publishStartDate != "" && publishEndDate != "" {
  63. condition += " AND a.publish_time >= ?"
  64. publishStartTime, err := time.Parse(utils.FormatDate, publishStartDate)
  65. if err != nil {
  66. br.Msg = "日期格式有误"
  67. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  68. return
  69. }
  70. publishStartDateStr := publishStartTime.Format(utils.FormatDateTime)
  71. pars = append(pars, publishStartDateStr)
  72. condition += " AND a.publish_time <= ?"
  73. publishEndTime, err := time.Parse(utils.FormatDate, publishEndDate)
  74. if err != nil {
  75. br.Msg = "日期格式有误"
  76. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  77. return
  78. }
  79. publishEndTime = publishEndTime.Add(23*time.Hour + 59*time.Minute + 59*time.Second)
  80. publishEndDateStr := publishEndTime.Format(utils.FormatDateTime)
  81. pars = append(pars, publishEndDateStr)
  82. }
  83. if pushStartDate != "" && pushEndDate != "" {
  84. condition += " AND b.push_time >= ?"
  85. pushStartTime, err := time.Parse(utils.FormatDate, pushStartDate)
  86. if err != nil {
  87. br.Msg = "日期格式有误"
  88. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  89. return
  90. }
  91. pushStartDateStr := pushStartTime.Format(utils.FormatDateTime)
  92. pars = append(pars, pushStartDateStr)
  93. condition += " AND b.push_time <= ?"
  94. pushEndTime, err := time.Parse(utils.FormatDate, pushEndDate)
  95. if err != nil {
  96. br.Msg = "日期格式有误"
  97. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  98. return
  99. }
  100. pushEndTime = pushEndTime.Add(23*time.Hour + 59*time.Minute + 59*time.Second)
  101. pushEndDateStr := pushEndTime.Format(utils.FormatDateTime)
  102. pars = append(pars, pushEndDateStr)
  103. }
  104. if keyWord != "" {
  105. condition += ` AND a.title like ? `
  106. pars = utils.GetLikeKeywordPars(pars, keyWord, 1)
  107. }
  108. var sortCondition string
  109. if sortParam != "" && sortType != "" {
  110. sortCondition = " ORDER BY "
  111. var param, sort string
  112. switch sortParam {
  113. case "PublishTime":
  114. param = "a.publish_time"
  115. case "PushTime":
  116. param = "b.push_time"
  117. }
  118. switch sortType {
  119. case "asc":
  120. sort = " ASC "
  121. case "desc":
  122. sort = " DESC "
  123. }
  124. if param != "" && sort != "" {
  125. sortCondition += param + " " + sort
  126. } else {
  127. sortCondition = ""
  128. }
  129. }
  130. if sortCondition == "" {
  131. sortCondition = ` ORDER BY a.publish_time DESC `
  132. }
  133. classifyIdList := make([]int, 0)
  134. if classifyIds != "" {
  135. classifyArrStr := strings.Split(classifyIds, ",")
  136. if len(classifyArrStr) > 0 {
  137. for _, v := range classifyArrStr {
  138. tmp, _ := strconv.Atoi(v)
  139. classifyIdList = append(classifyIdList, tmp)
  140. }
  141. }
  142. }
  143. if chartPermissionIds != "" {
  144. idStrs := strings.Split(chartPermissionIds, ",")
  145. idInts := make([]int, 0)
  146. for _, id := range idStrs {
  147. tmp, _ := strconv.Atoi(id)
  148. idInts = append(idInts, tmp)
  149. }
  150. tmpClassifyList, err := models.GetClassifyIdsListByIds(idInts)
  151. if err != nil {
  152. br.Msg = "获取研报列表失败"
  153. br.ErrMsg = "品种获取分类失败,Err:" + err.Error()
  154. return
  155. }
  156. classifyIdList = append(classifyIdList, tmpClassifyList...)
  157. }
  158. if len(classifyIdList) > 0 {
  159. classifyIdList = utils.Unique(classifyIdList)
  160. condition += ` AND (a.classify_id_first IN (%s) AND a.classify_id_second IN (%s) AND a.classify_id_third IN (%s))`
  161. condition = fmt.Sprintf(condition, utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)))
  162. pars = append(pars, classifyIdList, classifyIdList, classifyIdList)
  163. }
  164. if isSelectAll {
  165. if selectedIds != "" {
  166. selectIdStrs := strings.Split(selectedIds, ",")
  167. if len(selectIdStrs) > 0 {
  168. condition += ` AND a.id NOT IN (` + utils.GetOrmReplaceHolder(len(selectIdStrs)) + `)`
  169. pars = append(pars, selectedIds)
  170. }
  171. }
  172. } else {
  173. if selectedIds != "" {
  174. selectIdStrs := strings.Split(selectedIds, ",")
  175. if len(selectIdStrs) > 0 {
  176. condition += ` AND a.id IN (` + utils.GetOrmReplaceHolder(len(selectIdStrs)) + `)`
  177. pars = append(pars, selectedIds)
  178. }
  179. }
  180. }
  181. startSize := utils.StartIndex(currentIndex, pageSize)
  182. total, err := models.GetReportCountByCondition(condition, pars)
  183. if err != nil {
  184. br.Msg = "获取研报列表失败"
  185. br.ErrMsg = "获取研报列表统计失败,Err:" + err.Error()
  186. return
  187. }
  188. reportList, err := models.GetReportPushStatusListByCondition(condition, pars, startSize, pageSize)
  189. if err != nil {
  190. br.Msg = "获取研报列表失败"
  191. br.ErrMsg = "获取研报列表失败,Err:" + err.Error()
  192. return
  193. }
  194. page := paging.GetPaging(currentIndex, pageSize, total)
  195. resp := new(response.ReportPushStatusResp)
  196. resp.List = reportList
  197. resp.Paging = page
  198. br.Data = resp
  199. br.Msg = "获取成功"
  200. br.Ret = 200
  201. br.Success = true
  202. }
  203. // PushCancel
  204. // @Title 取消推送报告
  205. // @Description 取消推送报告
  206. // @Param request body request.ReportPdfEditReq true "type json string"
  207. // @Success 200 {object} models.ReportAuthorResp
  208. // @router /pushCancel [post]
  209. func (this *ReportPushStatusController) PushCancel() {
  210. br := new(models.BaseResponse).Init()
  211. defer func() {
  212. this.Data["json"] = br
  213. this.ServeJSON()
  214. }()
  215. var req request.ReportPushStatusReq
  216. if err := json.Unmarshal(this.Ctx.Input.RequestBody, &req); err != nil {
  217. br.Msg = "参数错误"
  218. br.ErrMsg = "参数错误,Err:" + err.Error()
  219. return
  220. }
  221. reportPush, err := models.GetReportPushStatusByReportId(req.ReportId, 1)
  222. if err != nil && err.Error() != utils.ErrNoRow() {
  223. br.Msg = "推送失败"
  224. br.ErrMsg = "获取推送消息失败,Err:" + err.Error()
  225. return
  226. }
  227. if reportPush != nil {
  228. reportPush.State = 0
  229. reportPush.ModifyTime = time.Now()
  230. err = reportPush.Update([]string{"state", "modify_time"})
  231. if err != nil {
  232. br.Msg = "取消推送失败"
  233. br.ErrMsg = "取消推送失败,Err:" + err.Error()
  234. return
  235. }
  236. } else {
  237. reportPush := &models.ReportPushStatus{}
  238. reportPush.ReportId = req.ReportId
  239. reportPush.ReportType = 1
  240. reportPush.State = 0
  241. reportPush.CreateTime = time.Now()
  242. reportPush.ModifyTime = time.Now()
  243. _, err = reportPush.Insert()
  244. if err != nil {
  245. br.Msg = "取消推送失败"
  246. br.ErrMsg = "新增推送记录失败,Err:" + err.Error()
  247. return
  248. }
  249. }
  250. br.Msg = "取消推送成功"
  251. br.Success = true
  252. br.Ret = 200
  253. }
  254. // Push
  255. // @Title 推送报告
  256. // @Description 推送报告
  257. // @Param request body request.ReportPdfEditReq true "type json string"
  258. // @Success 200 {object} models.ReportAuthorResp
  259. // @router /push [post]
  260. func (this *ReportPushStatusController) Push() {
  261. br := new(models.BaseResponse).Init()
  262. defer func() {
  263. this.Data["json"] = br
  264. this.ServeJSON()
  265. }()
  266. var req request.ReportPushStatusReq
  267. if err := json.Unmarshal(this.Ctx.Input.RequestBody, &req); err != nil {
  268. br.Msg = "参数错误"
  269. br.ErrMsg = "参数错误,Err:" + err.Error()
  270. return
  271. }
  272. count, err := models.GetReportCountById(req.ReportId)
  273. if err != nil {
  274. br.Msg = "研报未发布或已删除"
  275. br.ErrMsg = "研报查询失败,Err:" + err.Error()
  276. return
  277. }
  278. if count == 0 {
  279. br.Msg = "研报未发布或已删除"
  280. return
  281. }
  282. reportPush, err := models.GetReportPushStatusByReportId(req.ReportId, 0)
  283. if err != nil && err.Error() != utils.ErrNoRow() {
  284. br.Msg = "推送失败"
  285. br.ErrMsg = "获取推送消息失败,Err:" + err.Error()
  286. return
  287. }
  288. if reportPush != nil {
  289. reportPush.State = 1
  290. reportPush.ModifyTime = time.Now()
  291. reportPush.PushTime = time.Now()
  292. err = reportPush.Update([]string{"state", "modify_time", "push_time"})
  293. if err != nil {
  294. br.Msg = "推送失败"
  295. br.ErrMsg = "推送失败,Err:" + err.Error()
  296. return
  297. }
  298. } else {
  299. reportPush := &models.ReportPushStatus{}
  300. reportPush.ReportId = req.ReportId
  301. reportPush.ReportType = 1
  302. reportPush.State = 1
  303. reportPush.PushTime = time.Now()
  304. reportPush.CreateTime = time.Now()
  305. reportPush.ModifyTime = time.Now()
  306. _, err = reportPush.Insert()
  307. if err != nil {
  308. br.Msg = "推送失败"
  309. br.ErrMsg = "推送失败,Err:" + err.Error()
  310. return
  311. }
  312. }
  313. br.Msg = "推送成功"
  314. br.Success = true
  315. br.Ret = 200
  316. }
  317. // BatchPush
  318. // @Title 批量推送报告
  319. // @Description 批量推送报告
  320. // @Param request body request.BatchReportModifyPushStatusReq true "type json string"
  321. // @Success 200 {object} models.ReportAuthorResp
  322. // @router /batch/push [post]
  323. func (this *ReportPushStatusController) BatchPush() {
  324. br := new(models.BaseResponse).Init()
  325. defer func() {
  326. this.Data["json"] = br
  327. this.ServeJSON()
  328. }()
  329. var req request.BatchReportModifyPushStatusReq
  330. if err := json.Unmarshal(this.Ctx.Input.RequestBody, &req); err != nil {
  331. br.Msg = "参数错误"
  332. br.ErrMsg = "参数错误,Err:" + err.Error()
  333. return
  334. }
  335. var condition string
  336. var pars []interface{}
  337. if req.PublishStartDate != "" && req.PublishEndDate != "" {
  338. condition += " AND a.publish_time >= ?"
  339. publishStartTime, err := time.Parse(utils.FormatDate, req.PublishStartDate)
  340. if err != nil {
  341. br.Msg = "日期格式有误"
  342. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  343. return
  344. }
  345. publishStartDateStr := publishStartTime.Format(utils.FormatDateTime)
  346. pars = append(pars, publishStartDateStr)
  347. condition += " AND a.publish_time <= ?"
  348. publishEndTime, err := time.Parse(utils.FormatDate, req.PublishEndDate)
  349. if err != nil {
  350. br.Msg = "日期格式有误"
  351. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  352. return
  353. }
  354. publishEndTime = publishEndTime.Add(23*time.Hour + 59*time.Minute + 59*time.Second)
  355. publishEndDateStr := publishEndTime.Format(utils.FormatDateTime)
  356. pars = append(pars, publishEndDateStr)
  357. }
  358. if req.PushStartDate != "" && req.PushEndDate != "" {
  359. condition += " AND b.push_time >= ?"
  360. pushStartTime, err := time.Parse(utils.FormatDate, req.PushStartDate)
  361. if err != nil {
  362. br.Msg = "日期格式有误"
  363. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  364. return
  365. }
  366. pushStartDateStr := pushStartTime.Format(utils.FormatDateTime)
  367. pars = append(pars, pushStartDateStr)
  368. condition += " AND b.push_time <= ?"
  369. pushEndTime, err := time.Parse(utils.FormatDate, req.PushEndDate)
  370. if err != nil {
  371. br.Msg = "日期格式有误"
  372. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  373. return
  374. }
  375. pushEndTime = pushEndTime.Add(23*time.Hour + 59*time.Minute + 59*time.Second)
  376. pushEndDateStr := pushEndTime.Format(utils.FormatDateTime)
  377. pars = append(pars, pushEndDateStr)
  378. }
  379. if req.KeyWord != "" {
  380. condition += ` AND a.title like ? `
  381. pars = utils.GetLikeKeywordPars(pars, req.KeyWord, 1)
  382. }
  383. classifyIdList := make([]int, 0)
  384. classifyIdList = append(classifyIdList, req.ClassifyIds...)
  385. tmpClassifyList, err := models.GetClassifyIdsListByIds(req.ChartPermissionIds)
  386. if err != nil {
  387. br.Msg = "获取研报列表失败"
  388. br.ErrMsg = "品种获取分类失败,Err:" + err.Error()
  389. return
  390. }
  391. classifyIdList = append(classifyIdList, tmpClassifyList...)
  392. if len(classifyIdList) > 0 {
  393. classifyIdList = utils.Unique(classifyIdList)
  394. condition += ` AND (a.classify_id_first IN (%s) AND a.classify_id_second IN (%s) AND a.classify_id_third IN (%s))`
  395. condition = fmt.Sprintf(condition, utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)))
  396. pars = append(pars, classifyIdList, classifyIdList, classifyIdList)
  397. }
  398. if req.IsSelectAll {
  399. if len(req.SelectedIds) > 0 {
  400. condition += ` AND a.id NOT IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
  401. pars = append(pars, req.SelectedIds)
  402. }
  403. } else {
  404. if len(req.SelectedIds) > 0 {
  405. condition += ` AND a.id IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
  406. pars = append(pars, req.SelectedIds)
  407. }
  408. }
  409. reportIds, err := models.GetReportIdListByCondition(condition, pars)
  410. if err != nil {
  411. br.Msg = "批量推送失败"
  412. br.ErrMsg = "查询研报失败,Err:" + err.Error()
  413. return
  414. }
  415. reportPush, err := models.GetReportPushStatusByReportIds(reportIds, 1)
  416. if err != nil {
  417. br.Msg = "批量推送失败"
  418. br.ErrMsg = "查询推送状态失败,Err:" + err.Error()
  419. return
  420. }
  421. existReportMap := make(map[int]struct{})
  422. for _, v := range reportPush {
  423. existReportMap[v.ReportId] = struct{}{}
  424. }
  425. existReportIds := make([]int, 0)
  426. noExistReportIds := make([]int, 0)
  427. for _, v := range reportIds {
  428. if _, ok := existReportMap[v]; !ok {
  429. noExistReportIds = append(noExistReportIds, v)
  430. } else {
  431. existReportIds = append(existReportIds, v)
  432. }
  433. }
  434. err = models.BatchPushReport(existReportIds)
  435. if err != nil {
  436. br.Msg = "批量推送失败"
  437. br.ErrMsg = "批量修改推送失败,Err:" + err.Error()
  438. return
  439. }
  440. insertReportPushList := make([]*models.ReportPushStatus, 0)
  441. for _, v := range noExistReportIds {
  442. insertReportPushList = append(insertReportPushList, &models.ReportPushStatus{
  443. ReportId: v,
  444. State: 1,
  445. ReportType: 1,
  446. CreateTime: time.Now(),
  447. ModifyTime: time.Now(),
  448. PushTime: time.Now(),
  449. })
  450. }
  451. obj := &models.ReportPushStatus{}
  452. err = obj.MultiInsert(insertReportPushList)
  453. if err != nil {
  454. br.Msg = "批量推送失败"
  455. br.ErrMsg = "批量插入推送状态失败,Err:" + err.Error()
  456. return
  457. }
  458. br.Msg = "推送成功"
  459. br.Success = true
  460. br.Ret = 200
  461. }
  462. // BatchPushCancel
  463. // @Title 批量撤销推送报告
  464. // @Description 批量撤销推送报告
  465. // @Param request body request.BatchReportModifyPushStatusReq true "type json string"
  466. // @Success 200 {object} models.ReportAuthorResp
  467. // @router /batch/pushCancel [post]
  468. func (this *ReportPushStatusController) BatchPushCancel() {
  469. br := new(models.BaseResponse).Init()
  470. defer func() {
  471. this.Data["json"] = br
  472. this.ServeJSON()
  473. }()
  474. var req request.BatchReportModifyPushStatusReq
  475. if err := json.Unmarshal(this.Ctx.Input.RequestBody, &req); err != nil {
  476. br.Msg = "参数错误"
  477. br.ErrMsg = "参数错误,Err:" + err.Error()
  478. return
  479. }
  480. var condition string
  481. var pars []interface{}
  482. if req.PublishStartDate != "" && req.PublishEndDate != "" {
  483. condition += " AND a.publish_time >= ?"
  484. publishStartTime, err := time.Parse(utils.FormatDate, req.PublishStartDate)
  485. if err != nil {
  486. br.Msg = "日期格式有误"
  487. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  488. return
  489. }
  490. publishStartDateStr := publishStartTime.Format(utils.FormatDateTime)
  491. pars = append(pars, publishStartDateStr)
  492. condition += " AND a.publish_time <= ?"
  493. publishEndTime, err := time.Parse(utils.FormatDate, req.PublishEndDate)
  494. if err != nil {
  495. br.Msg = "日期格式有误"
  496. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  497. return
  498. }
  499. publishEndTime = publishEndTime.Add(23*time.Hour + 59*time.Minute + 59*time.Second)
  500. publishEndDateStr := publishEndTime.Format(utils.FormatDateTime)
  501. pars = append(pars, publishEndDateStr)
  502. }
  503. if req.PushStartDate != "" && req.PushEndDate != "" {
  504. condition += " AND b.push_time >= ?"
  505. pushStartTime, err := time.Parse(utils.FormatDate, req.PushStartDate)
  506. if err != nil {
  507. br.Msg = "日期格式有误"
  508. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  509. return
  510. }
  511. pushStartDateStr := pushStartTime.Format(utils.FormatDateTime)
  512. pars = append(pars, pushStartDateStr)
  513. condition += " AND b.push_time <= ?"
  514. pushEndTime, err := time.Parse(utils.FormatDate, req.PushEndDate)
  515. if err != nil {
  516. br.Msg = "日期格式有误"
  517. br.ErrMsg = "日期格式有误,Err:" + err.Error()
  518. return
  519. }
  520. pushEndTime = pushEndTime.Add(23*time.Hour + 59*time.Minute + 59*time.Second)
  521. pushEndDateStr := pushEndTime.Format(utils.FormatDateTime)
  522. pars = append(pars, pushEndDateStr)
  523. }
  524. if req.KeyWord != "" {
  525. condition += ` AND a.title like ? `
  526. pars = utils.GetLikeKeywordPars(pars, req.KeyWord, 1)
  527. }
  528. classifyIdList := make([]int, 0)
  529. classifyIdList = append(classifyIdList, req.ClassifyIds...)
  530. tmpClassifyList, err := models.GetClassifyIdsListByIds(req.ChartPermissionIds)
  531. if err != nil {
  532. br.Msg = "获取研报列表失败"
  533. br.ErrMsg = "品种获取分类失败,Err:" + err.Error()
  534. return
  535. }
  536. classifyIdList = append(classifyIdList, tmpClassifyList...)
  537. if len(classifyIdList) > 0 {
  538. classifyIdList = utils.Unique(classifyIdList)
  539. condition += ` AND (a.classify_id_first IN (%s) AND a.classify_id_second IN (%s) AND a.classify_id_third IN (%s))`
  540. condition = fmt.Sprintf(condition, utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)))
  541. pars = append(pars, classifyIdList, classifyIdList, classifyIdList)
  542. }
  543. if req.IsSelectAll {
  544. if len(req.SelectedIds) > 0 {
  545. condition += ` AND a.id NOT IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
  546. pars = append(pars, req.SelectedIds)
  547. }
  548. } else {
  549. if len(req.SelectedIds) > 0 {
  550. condition += ` AND a.id IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
  551. pars = append(pars, req.SelectedIds)
  552. }
  553. }
  554. reportIds, err := models.GetReportIdListByCondition(condition, pars)
  555. if err != nil {
  556. br.Msg = "批量推送失败"
  557. br.ErrMsg = "查询研报失败,Err:" + err.Error()
  558. return
  559. }
  560. reportPush, err := models.GetReportPushStatusByReportIds(reportIds, 1)
  561. if err != nil {
  562. br.Msg = "批量推送失败"
  563. br.ErrMsg = "查询推送状态失败,Err:" + err.Error()
  564. return
  565. }
  566. existReportMap := make(map[int]struct{})
  567. for _, v := range reportPush {
  568. existReportMap[v.ReportId] = struct{}{}
  569. }
  570. existReportIds := make([]int, 0)
  571. noExistReportIds := make([]int, 0)
  572. for _, v := range reportIds {
  573. if _, ok := existReportMap[v]; !ok {
  574. noExistReportIds = append(noExistReportIds, v)
  575. } else {
  576. existReportIds = append(existReportIds, v)
  577. }
  578. }
  579. err = models.BatchPushCancelReport(existReportIds)
  580. if err != nil {
  581. br.Msg = "批量取消推送失败"
  582. br.ErrMsg = "批量修改推送失败,Err:" + err.Error()
  583. return
  584. }
  585. insertReportPushList := make([]*models.ReportPushStatus, 0)
  586. for _, v := range noExistReportIds {
  587. insertReportPushList = append(insertReportPushList, &models.ReportPushStatus{
  588. ReportId: v,
  589. State: 0,
  590. ReportType: 1,
  591. CreateTime: time.Now(),
  592. ModifyTime: time.Now(),
  593. })
  594. }
  595. obj := &models.ReportPushStatus{}
  596. err = obj.MultiInsert(insertReportPushList)
  597. if err != nil {
  598. br.Msg = "批量撤销推送失败"
  599. br.ErrMsg = "批量插入推送状态失败,Err:" + err.Error()
  600. return
  601. }
  602. br.Msg = "撤销推送成功"
  603. br.Success = true
  604. br.Ret = 200
  605. }