report.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. package models
  2. import (
  3. "eta/eta_mini_crm_ht/utils"
  4. "time"
  5. "github.com/beego/beego/v2/client/orm"
  6. )
  7. type ReportStatus string
  8. type ReportSource string
  9. const (
  10. SourceETA ReportSource = "ETA"
  11. SourceHT ReportSource = "HT"
  12. StatusInit ReportStatus = "INIT"
  13. StatusPending ReportStatus = "PENDING"
  14. StatusDone ReportStatus = "DONE"
  15. MaxBatchNum = 1000
  16. CommonColumns = "id,org_id,author,abstract,title,source,cover_src,published_time,plate_name"
  17. taskColumns = "id,author,published_time"
  18. )
  19. type Report struct {
  20. Id int `description:"id"`
  21. OrgId int `description:"组织id"`
  22. Source ReportSource `description:"来源"`
  23. Title string `description:"标题"`
  24. Abstract string `description:"摘要"`
  25. Author string `description:"作者"`
  26. CoverSrc int `description:"封面"`
  27. PlateName string `description:"板块名称"`
  28. Status ReportStatus `description:"状态"`
  29. SendStatus SendStatus `description:"发送状态"`
  30. PublishedTime string `description:"发布时间"`
  31. CreatedTime time.Time `description:"创建时间"`
  32. UpdatedTime time.Time `description:"更新时间"`
  33. }
  34. type ReportView struct {
  35. Id int
  36. OrgId int
  37. Source ReportSource
  38. Title string
  39. Abstract string
  40. Author string
  41. CoverSrc string
  42. PlateName string
  43. PermissionNames string
  44. SendStatus SendStatus
  45. PublishedTime string
  46. }
  47. func (r *Report) ToView() (item *ReportView) {
  48. item = &ReportView{
  49. Id: r.Id,
  50. OrgId: r.OrgId,
  51. Source: r.Source,
  52. Title: r.Title,
  53. Abstract: r.Abstract,
  54. Author: r.Author,
  55. PlateName: r.PlateName,
  56. SendStatus: r.SendStatus,
  57. PublishedTime: r.PublishedTime,
  58. }
  59. return
  60. }
  61. func (r *Report) TableName() string {
  62. return "reports"
  63. }
  64. func (r *Report) UpdateSendStatus(status SendStatus) (err error) {
  65. o := orm.NewOrm()
  66. r.SendStatus = status
  67. _, err = o.Update(r, "send_status")
  68. return
  69. }
  70. func GetReportCountByCondition(condition string, pars []interface{}) (count int, err error) {
  71. o := orm.NewOrm()
  72. sql := `SELECT COUNT(*) AS count FROM reports WHERE 1=1 `
  73. if condition != "" {
  74. sql += condition
  75. }
  76. err = o.Raw(sql, pars).QueryRow(&count)
  77. return
  78. }
  79. func GetReportById(id int) (items *Report, err error) {
  80. o := orm.NewOrm()
  81. sql := `SELECT distinct id ,title,abstract,author,published_time,send_status,source,classify_id,plate_name FROM reports WHERE id =?`
  82. err = o.Raw(sql, id).QueryRow(&items)
  83. return
  84. }
  85. func GetReportIdByPermissionIds(id int) (items *Report, err error) {
  86. o := orm.NewOrm()
  87. sql := `SELECT distinct id ,title,abstract,author,published_time,send_status,source,classify_id,plate_name FROM reports WHERE id =?`
  88. err = o.Raw(sql, id).QueryRow(&items)
  89. return
  90. }
  91. func GetReportByCondition(condition, sortCondition string, pars []interface{}, startPage, pageSize int) (items []*Report, err error) {
  92. o := orm.NewOrm()
  93. sql := `SELECT * FROM reports WHERE 1=1 `
  94. if condition != "" {
  95. sql += condition
  96. }
  97. if sortCondition != "" {
  98. sql += sortCondition // 排序
  99. }
  100. sql += ` LIMIT ?,?`
  101. _, err = o.Raw(sql, pars, startPage, pageSize).QueryRows(&items)
  102. return
  103. }
  104. func GetETAReportIdsByCondition(condition string, pars []interface{}) (ids []int, err error) {
  105. o := orm.NewOrmUsingDB("rddp")
  106. sql := `SELECT distinct id FROM report WHERE 1=1 `
  107. if condition != "" {
  108. sql += condition
  109. }
  110. _, err = o.Raw(sql, pars).QueryRows(&ids)
  111. return
  112. }
  113. func GetETAReportById(id int) (classifyId int, err error) {
  114. o := orm.NewOrmUsingDB("rddp")
  115. sql := `SELECT COALESCE(NULLIF(classify_id_third,0),NULLIF(classify_id_second,0),classify_id_first) classify_id FROM report WHERE id =?`
  116. err = o.Raw(sql, id).QueryRow(&classifyId)
  117. return
  118. }
  119. func GetETAReportIdByClassifyId(id int) (classifyId int, err error) {
  120. o := orm.NewOrmUsingDB("rddp")
  121. sql := `SELECT COALESCE(NULLIF(classify_id_third,0),NULLIF(classify_id_second,0),classify_id_first) classify_id FROM report WHERE id=? `
  122. err = o.Raw(sql, id).QueryRow(&classifyId)
  123. return
  124. }
  125. func GetReportIdByClassifyId(ids []int) (reportIds []int, err error) {
  126. o := orm.NewOrm()
  127. condition := "source='ETA' and classify_id in (" + utils.GetOrmReplaceHolder(len(ids)) + ") "
  128. sql := `SELECT distinct id FROM reports WHERE ` + condition
  129. _, err = o.Raw(sql, ids).QueryRows(&reportIds)
  130. return
  131. }
  132. func GetReportIdByPlateName(names []string) (reportIds []int, err error) {
  133. o := orm.NewOrm()
  134. condition := "source='HT' and plate_name in (" + utils.GetOrmReplaceHolder(len(names)) + ") "
  135. sql := `SELECT distinct id FROM reports WHERE ` + condition
  136. _, err = o.Raw(sql, names).QueryRows(&reportIds)
  137. return
  138. }
  139. func GetReportByIds(sortCondition string, ids []int, startSize int, pageSize int) (reports []Report, err error) {
  140. o := orm.NewOrm()
  141. condition := "id in (" + utils.GetOrmReplaceHolder(len(ids)) + ") " + sortCondition + " limit ?,?"
  142. sql := `SELECT * FROM reports WHERE ` + condition
  143. _, err = o.Raw(sql, ids, startSize, pageSize).QueryRows(&reports)
  144. return
  145. }
  146. func GetReportIdsByCondition(condition string, pars []interface{}) (ids []int, err error) {
  147. o := orm.NewOrm()
  148. sql := `SELECT id FROM reports WHERE 1=1 ` + condition
  149. _, err = o.Raw(sql, pars).QueryRows(&ids)
  150. return
  151. }