report.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. package models
  2. import (
  3. "eta/eta_hub/utils"
  4. "github.com/beego/beego/v2/client/orm"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "strings"
  7. "time"
  8. )
  9. type Report struct {
  10. Id int `orm:"column(id)" description:"报告Id"`
  11. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  12. ClassifyIdFirst int `description:"一级分类id"`
  13. ClassifyNameFirst string `description:"一级分类名称"`
  14. ClassifyIdSecond int `description:"二级分类id"`
  15. ClassifyNameSecond string `description:"二级分类名称"`
  16. Title string `description:"标题"`
  17. Abstract string `description:"摘要"`
  18. Author string `description:"作者"`
  19. Frequency string `description:"频度"`
  20. CreateTime string `description:"创建时间"`
  21. ModifyTime time.Time `description:"修改时间"`
  22. State int `description:"1:未发布,2:已发布"`
  23. PublishTime time.Time `description:"发布时间"`
  24. Stage int `description:"期数"`
  25. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  26. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  27. Content string `description:"内容"`
  28. VideoUrl string `description:"音频文件URL"`
  29. VideoName string `description:"音频文件名称"`
  30. VideoPlaySeconds string `description:"音频播放时长"`
  31. VideoSize string `description:"音频文件大小,单位M"`
  32. ContentSub string `description:"内容前两个章节"`
  33. ReportCode string `description:"报告唯一编码"`
  34. ReportVersion int `description:"1:旧版,2:新版"`
  35. HasChapter int `description:"是否有章节 0-否 1-是"`
  36. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  37. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  38. MsgSendTime time.Time `description:"模版消息发送时间"`
  39. AdminId int `description:"创建者账号"`
  40. AdminRealName string `description:"创建者姓名"`
  41. }
  42. type ReportListResp struct {
  43. List []*Report
  44. Paging *paging.PagingItem `description:"分页数据"`
  45. }
  46. func GetReportListCount(condition string, pars []interface{}, companyType string) (count int, err error) {
  47. //产品权限
  48. companyTypeSqlStr := ``
  49. if companyType == "ficc" {
  50. companyTypeSqlStr = " AND classify_id_first != 40 "
  51. } else if companyType == "权益" {
  52. companyTypeSqlStr = " AND classify_id_first = 40 "
  53. }
  54. oRddp := orm.NewOrmUsingDB("rddp")
  55. sql := `SELECT COUNT(1) AS count FROM report WHERE 1=1 ` + companyTypeSqlStr
  56. if condition != "" {
  57. sql += condition
  58. }
  59. err = oRddp.Raw(sql, pars).QueryRow(&count)
  60. return
  61. }
  62. func GetReportList(condition string, pars []interface{}, companyType string, startSize, pageSize int) (items []*Report, err error) {
  63. o := orm.NewOrmUsingDB("rddp")
  64. //产品权限
  65. companyTypeSqlStr := ``
  66. if companyType == "ficc" {
  67. companyTypeSqlStr = " AND classify_id_first != 40 "
  68. } else if companyType == "权益" {
  69. companyTypeSqlStr = " AND classify_id_first = 40 "
  70. }
  71. sql := `SELECT * FROM report WHERE 1=1 ` + companyTypeSqlStr
  72. if condition != "" {
  73. sql += condition
  74. }
  75. sql += `ORDER BY state ASC, modify_time DESC LIMIT ?,?`
  76. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  77. return
  78. }
  79. // PublishReport 发布报告
  80. func PublishReport(reportIds []int) (err error) {
  81. if len(reportIds) == 0 {
  82. return
  83. }
  84. o := orm.NewOrmUsingDB("rddp")
  85. sql := `UPDATE report SET state=2,publish_time=now(),modify_time=NOW() WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  86. _, err = o.Raw(sql).Exec()
  87. return
  88. }
  89. // PublishCancleReport 取消发布报告
  90. func PublishCancleReport(reportIds int, publishTimeNullFlag bool) (err error) {
  91. o := orm.NewOrmUsingDB("rddp")
  92. var sql string
  93. if publishTimeNullFlag {
  94. sql = ` UPDATE report SET state=1, publish_time=null, pre_publish_time=null, pre_msg_send=0 WHERE id =?`
  95. } else {
  96. sql = ` UPDATE report SET state=1, pre_publish_time=null, pre_msg_send=0 WHERE id =?`
  97. }
  98. _, err = o.Raw(sql, reportIds).Exec()
  99. return
  100. }
  101. // 删除报告
  102. func DeleteReport(reportIds int) (err error) {
  103. o := orm.NewOrmUsingDB("rddp")
  104. sql := ` DELETE FROM report WHERE id =? `
  105. _, err = o.Raw(sql, reportIds).Exec()
  106. return
  107. }
  108. type ReportDetail struct {
  109. Id int `orm:"column(id)" description:"报告Id"`
  110. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  111. ClassifyIdFirst int `description:"一级分类id"`
  112. ClassifyNameFirst string `description:"一级分类名称"`
  113. ClassifyIdSecond int `description:"二级分类id"`
  114. ClassifyNameSecond string `description:"二级分类名称"`
  115. Title string `description:"标题"`
  116. Abstract string `description:"摘要"`
  117. Author string `description:"作者"`
  118. Frequency string `description:"频度"`
  119. CreateTime string `description:"创建时间"`
  120. ModifyTime string `description:"修改时间"`
  121. State int `description:"1:未发布,2:已发布"`
  122. PublishTime string `description:"发布时间"`
  123. PrePublishTime string `description:"预发布时间"`
  124. Stage int `description:"期数"`
  125. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  126. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  127. Content string `description:"内容"`
  128. VideoUrl string `description:"音频文件URL"`
  129. VideoName string `description:"音频文件名称"`
  130. VideoPlaySeconds string `description:"音频播放时长"`
  131. ContentSub string `description:"内容前两个章节"`
  132. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  133. HasChapter int `description:"是否有章节 0-否 1-是"`
  134. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  135. }
  136. func GetReportById(reportId int) (item *ReportDetail, err error) {
  137. o := orm.NewOrmUsingDB("rddp")
  138. sql := `SELECT * FROM report WHERE id=?`
  139. err = o.Raw(sql, reportId).QueryRow(&item)
  140. return
  141. }
  142. func GetReportStage(classifyIdFirst, classifyIdSecond int) (count int, err error) {
  143. o := orm.NewOrmUsingDB("rddp")
  144. sql := ``
  145. if classifyIdSecond > 0 {
  146. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_second=? "
  147. o.Raw(sql, classifyIdSecond).QueryRow(&count)
  148. } else {
  149. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first=? "
  150. o.Raw(sql, classifyIdFirst).QueryRow(&count)
  151. }
  152. return
  153. }
  154. func GetReportStageEdit(classifyIdFirst, classifyIdSecond, reportId int) (count int, err error) {
  155. o := orm.NewOrmUsingDB("rddp")
  156. sql := ``
  157. if classifyIdSecond > 0 {
  158. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_second=? AND id<>? "
  159. o.Raw(sql, classifyIdSecond, reportId).QueryRow(&count)
  160. } else {
  161. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first=? AND id<>? "
  162. o.Raw(sql, classifyIdFirst, reportId).QueryRow(&count)
  163. }
  164. return
  165. }
  166. type PublishReq struct {
  167. ReportIds string `description:"报告id,多个用英文逗号隔开"`
  168. State int `description:"状态:3:驳回,4:审批通过"`
  169. }
  170. type PublishCancelReq struct {
  171. ReportIds int `description:"报告id"`
  172. }
  173. type DeleteReq struct {
  174. ReportIds int `description:"报告id"`
  175. }
  176. type AddReq struct {
  177. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  178. ClassifyIdFirst int `description:"一级分类id"`
  179. ClassifyNameFirst string `description:"一级分类名称"`
  180. ClassifyIdSecond int `description:"二级分类id"`
  181. ClassifyNameSecond string `description:"二级分类名称"`
  182. Title string `description:"标题"`
  183. Abstract string `description:"摘要"`
  184. Author string `description:"作者"`
  185. Frequency string `description:"频度"`
  186. State int `description:"状态:1:未发布,2:已发布"`
  187. Content string `description:"内容"`
  188. CreateTime string `description:"创建时间"`
  189. ReportVersion int `description:"1:旧版,2:新版"`
  190. }
  191. type PrePublishReq struct {
  192. ReportId int `description:"报告id"`
  193. PrePublishTime string `description:"预发布时间"`
  194. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  195. }
  196. type AddResp struct {
  197. ReportId int64 `description:"报告id"`
  198. ReportCode string `description:"报告code"`
  199. }
  200. func AddReport(item *Report) (lastId int64, err error) {
  201. o := orm.NewOrmUsingDB("rddp")
  202. lastId, err = o.Insert(item)
  203. return
  204. }
  205. type EditReq struct {
  206. ReportId int64 `description:"报告id"`
  207. ClassifyIdFirst int `description:"一级分类id"`
  208. ClassifyNameFirst string `description:"一级分类名称"`
  209. ClassifyIdSecond int `description:"二级分类id"`
  210. ClassifyNameSecond string `description:"二级分类名称"`
  211. Title string `description:"标题"`
  212. Abstract string `description:"摘要"`
  213. Author string `description:"作者"`
  214. Frequency string `description:"频度"`
  215. State int `description:"状态:1:未发布,2:已发布"`
  216. Content string `description:"内容"`
  217. CreateTime string `description:"创建时间"`
  218. }
  219. type EditResp struct {
  220. ReportId int64 `description:"报告id"`
  221. ReportCode string `description:"报告code"`
  222. }
  223. func EditReport(item *Report, reportId int64) (err error) {
  224. o := orm.NewOrmUsingDB("rddp")
  225. sql := `UPDATE report
  226. SET
  227. classify_id_first =?,
  228. classify_name_first = ?,
  229. classify_id_second = ?,
  230. classify_name_second = ?,
  231. title = ?,
  232. abstract = ?,
  233. author = ?,
  234. frequency = ?,
  235. state = ?,
  236. content = ?,
  237. content_sub = ?,
  238. stage =?,
  239. create_time = ?,
  240. modify_time = ?
  241. WHERE id = ? `
  242. _, err = o.Raw(sql, item.ClassifyIdFirst, item.ClassifyNameFirst, item.ClassifyIdSecond, item.ClassifyNameSecond, item.Title,
  243. item.Abstract, item.Author, item.Frequency, item.State, item.Content, item.ContentSub, item.Stage, item.CreateTime, time.Now(), reportId).Exec()
  244. return
  245. }
  246. type ReportDetailReq struct {
  247. ReportId int `description:"报告id"`
  248. }
  249. type ClassifyIdDetailReq struct {
  250. ClassifyIdFirst int `description:"报告一级分类id"`
  251. ClassifyIdSecond int `description:"报告二级分类id"`
  252. }
  253. type SendTemplateMsgReq struct {
  254. ReportId int `description:"报告id"`
  255. }
  256. func ModifyReportVideo(reportId int, videoUrl, videoName, videoSize string, playSeconds float64) (err error) {
  257. o := orm.NewOrmUsingDB("rddp")
  258. sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? `
  259. _, err = o.Raw(sql, videoUrl, videoName, playSeconds, videoSize, reportId).Exec()
  260. return
  261. }
  262. func EditReportContent(reportId int, content, contentSub string) (err error) {
  263. o := orm.NewOrmUsingDB("rddp")
  264. sql := ` UPDATE report SET content=?,content_sub=?,modify_time=NOW() WHERE id=? `
  265. _, err = o.Raw(sql, content, contentSub, reportId).Exec()
  266. return
  267. }
  268. func AddReportSaveLog(reportId, adminId int, content, contentSub, adminName string) (err error) {
  269. o := orm.NewOrmUsingDB("rddp")
  270. sql := ` INSERT INTO report_save_log(report_id, content,content_sub,admin_id,admin_name) VALUES (?,?,?,?,?) `
  271. _, err = o.Raw(sql, reportId, content, contentSub, adminId, adminName).Exec()
  272. return
  273. }
  274. type SaveReportContentResp struct {
  275. ReportId int `description:"报告id"`
  276. }
  277. func ModifyReportCode(reportId int64, reportCode string) (err error) {
  278. o := orm.NewOrmUsingDB("rddp")
  279. sql := `UPDATE report SET report_code=? WHERE id=? `
  280. _, err = o.Raw(sql, reportCode, reportId).Exec()
  281. return
  282. }
  283. func ModifyReportThsMsgIsSend(item *ReportDetail) (err error) {
  284. o := orm.NewOrmUsingDB("rddp")
  285. if item.ThsMsgIsSend == 0 {
  286. sql := `UPDATE report SET ths_msg_is_send = 1 WHERE id = ? `
  287. _, err = o.Raw(sql, item.Id).Exec()
  288. }
  289. return
  290. }
  291. // GetDayWeekReportStage 获取晨报周报期数
  292. func GetDayWeekReportStage(classifyIdFirst int, yearStart time.Time) (count int, err error) {
  293. o := orm.NewOrmUsingDB("rddp")
  294. sql := " SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first = ? AND create_time > ? "
  295. o.Raw(sql, classifyIdFirst, yearStart).QueryRow(&count)
  296. return
  297. }
  298. // GetReportByReportId 主键获取报告
  299. func GetReportByReportId(reportId int) (item *Report, err error) {
  300. o := orm.NewOrmUsingDB("rddp")
  301. sql := `SELECT * FROM report WHERE id = ?`
  302. err = o.Raw(sql, reportId).QueryRow(&item)
  303. return
  304. }
  305. // 发布报告
  306. func PublishReportById(reportId, state int, publishTime time.Time) (err error) {
  307. o := orm.NewOrmUsingDB("rddp")
  308. sql := `UPDATE report SET state = ?, publish_time = ?, pre_publish_time=null, pre_msg_send=0, modify_time = NOW() WHERE id = ? `
  309. _, err = o.Raw(sql, state,publishTime, reportId).Exec()
  310. return
  311. }
  312. func UpdateReportPublishTime(reportId int, videoNameDate string) (err error) {
  313. o := orm.NewOrmUsingDB("rddp")
  314. sql1 := ` UPDATE report SET publish_time = NOW() WHERE id = ? `
  315. _, err = o.Raw(sql1, reportId).Exec()
  316. if err != nil {
  317. return
  318. }
  319. //修改音频标题
  320. sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !="" and video_name is not null)`
  321. _, err = o.Raw(sql2, reportId).Exec()
  322. return
  323. }
  324. func UpdateReportChapterPublishTime(reportId int, videoNameDate string) (err error) {
  325. o := orm.NewOrmUsingDB("rddp")
  326. sql1 := ` UPDATE report_chapter SET publish_time = NOW() WHERE report_id = ? `
  327. _, err = o.Raw(sql1, reportId).Exec()
  328. if err != nil {
  329. return
  330. }
  331. //修改音频标题
  332. sql2 := ` UPDATE report_chapter SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE report_id = ? and (video_name !="" and video_name is not null)`
  333. _, err = o.Raw(sql2, reportId).Exec()
  334. return
  335. }
  336. // GetReportByCondition 获取报告
  337. func GetReportByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, isPage bool, startSize, pageSize int) (items []*Report, err error) {
  338. o := orm.NewOrmUsingDB("rddp")
  339. fields := `*`
  340. if len(fieldArr) > 0 {
  341. fields = strings.Join(fieldArr, ",")
  342. }
  343. sql := `SELECT ` + fields + ` FROM report WHERE 1=1 `
  344. sql += condition
  345. order := ` ORDER BY modify_time DESC`
  346. if orderRule != `` {
  347. order = orderRule
  348. }
  349. sql += order
  350. if isPage {
  351. sql += ` LIMIT ?,?`
  352. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  353. } else {
  354. _, err = o.Raw(sql, pars).QueryRows(&items)
  355. }
  356. return
  357. }
  358. type ElasticReportDetail struct {
  359. ReportId int `description:"报告ID"`
  360. ReportChapterId int `description:"报告章节ID"`
  361. Title string `description:"标题"`
  362. Abstract string `description:"摘要"`
  363. BodyContent string `description:"内容"`
  364. PublishTime string `description:"发布时间"`
  365. PublishState int `description:"发布状态 1-未发布 2-已发布"`
  366. Author string `description:"作者"`
  367. ClassifyIdFirst int `description:"一级分类ID"`
  368. ClassifyNameFirst string `description:"一级分类名称"`
  369. ClassifyIdSecond int `description:"二级分类ID"`
  370. ClassifyNameSecond string `description:"二级分类名称"`
  371. Categories string `description:"关联的品种名称(包括品种别名)"`
  372. StageStr string `description:"报告期数"`
  373. }