report.go 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065
  1. package models
  2. import (
  3. "eta/eta_api/utils"
  4. "github.com/beego/beego/v2/client/orm"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "strings"
  7. "time"
  8. )
  9. // 报告状态
  10. const (
  11. ReportStateUnpublished = 1 // 未发布
  12. ReportStatePublished = 2 // 已发布
  13. ReportStateWaitSubmit = 3 // 待提交
  14. ReportStateWaitApprove = 4 // 审批中
  15. ReportStateRefused = 5 // 已驳回
  16. ReportStatePass = 6 // 已通过
  17. )
  18. type Report struct {
  19. Id int `orm:"column(id)" description:"报告Id"`
  20. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  21. ClassifyIdFirst int `description:"一级分类id"`
  22. ClassifyNameFirst string `description:"一级分类名称"`
  23. ClassifyIdSecond int `description:"二级分类id"`
  24. ClassifyNameSecond string `description:"二级分类名称"`
  25. Title string `description:"标题"`
  26. Abstract string `description:"摘要"`
  27. Author string `description:"作者"`
  28. Frequency string `description:"频度"`
  29. CreateTime string `description:"创建时间"`
  30. ModifyTime time.Time `description:"修改时间"`
  31. State int `description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
  32. PublishTime time.Time `description:"发布时间"`
  33. Stage int `description:"期数"`
  34. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  35. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  36. Content string `description:"内容"`
  37. VideoUrl string `description:"音频文件URL"`
  38. VideoName string `description:"音频文件名称"`
  39. VideoPlaySeconds string `description:"音频播放时长"`
  40. VideoSize string `description:"音频文件大小,单位M"`
  41. ContentSub string `description:"内容前两个章节"`
  42. ReportCode string `description:"报告唯一编码"`
  43. ReportVersion int `description:"1:旧版,2:新版"`
  44. HasChapter int `description:"是否有章节 0-否 1-是"`
  45. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  46. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  47. MsgSendTime time.Time `description:"模版消息发送时间"`
  48. AdminId int `description:"创建者账号"`
  49. AdminRealName string `description:"创建者姓名"`
  50. ApproveTime time.Time `description:"审批时间"`
  51. }
  52. type ReportList struct {
  53. Id int `description:"报告Id"`
  54. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  55. ClassifyIdFirst int `description:"一级分类id"`
  56. ClassifyNameFirst string `description:"一级分类名称"`
  57. ClassifyIdSecond int `description:"二级分类id"`
  58. ClassifyNameSecond string `description:"二级分类名称"`
  59. Title string `description:"标题"`
  60. Abstract string `description:"摘要"`
  61. Author string `description:"作者"`
  62. Frequency string `description:"频度"`
  63. CreateTime string `description:"创建时间"`
  64. ModifyTime time.Time `description:"修改时间"`
  65. State int `description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
  66. PublishTime string `description:"发布时间"`
  67. PrePublishTime string `description:"预发布时间"`
  68. Stage int `description:"期数"`
  69. MsgIsSend int `description:"模板消息是否已发送,0:否,1:是"`
  70. Content string `description:"内容"`
  71. VideoUrl string `description:"音频文件URL"`
  72. VideoName string `description:"音频文件名称"`
  73. VideoPlaySeconds string `description:"音频播放时长"`
  74. ContentSub string `description:"内容前两个章节"`
  75. Pv int `description:"Pv"`
  76. Uv int `description:"Uv"`
  77. ReportCode string `description:"报告唯一编码"`
  78. ReportVersion int `description:"1:旧版,2:新版"`
  79. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  80. NeedThsMsg int `description:"是否需要推送客群消息 0-否 1-是"`
  81. HasChapter int `description:"是否有章节 0-否 1-是"`
  82. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  83. ChapterVideoList []*ReportChapterVideoList `description:"章节音频列表"`
  84. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  85. MsgSendTime string `description:"模版消息发送时间"`
  86. CanEdit bool `description:"是否可编辑"`
  87. Editor string `description:"编辑人"`
  88. AdminId int `description:"创建者账号"`
  89. AdminRealName string `description:"创建者姓名"`
  90. ApproveTime string `description:"审批时间"`
  91. }
  92. type ReportListResp struct {
  93. List []*ReportList
  94. Paging *paging.PagingItem `description:"分页数据"`
  95. }
  96. func GetReportListCount(condition string, pars []interface{}, companyType string) (count int, err error) {
  97. //产品权限
  98. companyTypeSqlStr := ``
  99. if companyType == "ficc" {
  100. companyTypeSqlStr = " AND classify_id_first != 40 "
  101. } else if companyType == "权益" {
  102. companyTypeSqlStr = " AND classify_id_first = 40 "
  103. }
  104. oRddp := orm.NewOrmUsingDB("rddp")
  105. sql := `SELECT COUNT(1) AS count FROM report WHERE 1=1 ` + companyTypeSqlStr
  106. if condition != "" {
  107. sql += condition
  108. }
  109. err = oRddp.Raw(sql, pars).QueryRow(&count)
  110. return
  111. }
  112. func GetReportList(condition string, pars []interface{}, companyType string, startSize, pageSize int) (items []*ReportList, err error) {
  113. o := orm.NewOrmUsingDB("rddp")
  114. //产品权限
  115. companyTypeSqlStr := ``
  116. if companyType == "ficc" {
  117. companyTypeSqlStr = " AND classify_id_first != 40 "
  118. } else if companyType == "权益" {
  119. companyTypeSqlStr = " AND classify_id_first = 40 "
  120. }
  121. sql := `SELECT *,
  122. (SELECT COUNT(1) FROM report_view_record AS rvr WHERE rvr.report_id=report.id) AS pv,
  123. (SELECT COUNT(DISTINCT user_id) FROM report_view_record AS rvr WHERE rvr.report_id=report.id) AS uv
  124. FROM report WHERE 1=1 ` + companyTypeSqlStr
  125. if condition != "" {
  126. sql += condition
  127. }
  128. sql += `ORDER BY FIELD(state,3,1,2,4), modify_time DESC LIMIT ?,?`
  129. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  130. return
  131. }
  132. // PublishReport 发布报告
  133. func PublishReport(reportIds []int) (err error) {
  134. if len(reportIds) == 0 {
  135. return
  136. }
  137. o := orm.NewOrmUsingDB("rddp")
  138. sql := `UPDATE report SET state=2,publish_time=now(),modify_time=NOW() WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  139. _, err = o.Raw(sql).Exec()
  140. return
  141. }
  142. // PublishCancleReport 取消发布报告
  143. func PublishCancleReport(reportIds int, publishTimeNullFlag bool) (err error) {
  144. o := orm.NewOrmUsingDB("rddp")
  145. var sql string
  146. if publishTimeNullFlag {
  147. sql = ` UPDATE report SET state=1, publish_time=null, pre_publish_time=null, pre_msg_send=0 WHERE id =?`
  148. } else {
  149. sql = ` UPDATE report SET state=1, pre_publish_time=null, pre_msg_send=0 WHERE id =?`
  150. }
  151. _, err = o.Raw(sql, reportIds).Exec()
  152. return
  153. }
  154. // 删除报告
  155. func DeleteReport(reportIds int) (err error) {
  156. o := orm.NewOrmUsingDB("rddp")
  157. sql := ` DELETE FROM report WHERE id =? `
  158. _, err = o.Raw(sql, reportIds).Exec()
  159. return
  160. }
  161. type ReportDetail struct {
  162. Id int `orm:"column(id)" description:"报告Id"`
  163. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  164. ClassifyIdFirst int `description:"一级分类id"`
  165. ClassifyNameFirst string `description:"一级分类名称"`
  166. ClassifyIdSecond int `description:"二级分类id"`
  167. ClassifyNameSecond string `description:"二级分类名称"`
  168. Title string `description:"标题"`
  169. Abstract string `description:"摘要"`
  170. Author string `description:"作者"`
  171. Frequency string `description:"频度"`
  172. CreateTime string `description:"创建时间"`
  173. ModifyTime string `description:"修改时间"`
  174. State int `description:"1:未发布,2:已发布"`
  175. PublishTime string `description:"发布时间"`
  176. PrePublishTime string `description:"预发布时间"`
  177. Stage int `description:"期数"`
  178. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  179. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  180. Content string `description:"内容"`
  181. VideoUrl string `description:"音频文件URL"`
  182. VideoName string `description:"音频文件名称"`
  183. VideoPlaySeconds string `description:"音频播放时长"`
  184. ContentSub string `description:"内容前两个章节"`
  185. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  186. HasChapter int `description:"是否有章节 0-否 1-是"`
  187. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  188. }
  189. func GetReportById(reportId int) (item *ReportDetail, err error) {
  190. o := orm.NewOrmUsingDB("rddp")
  191. sql := `SELECT * FROM report WHERE id=?`
  192. err = o.Raw(sql, reportId).QueryRow(&item)
  193. return
  194. }
  195. func GetReportByIds(reportIds string) (list []*ReportDetail, err error) {
  196. o := orm.NewOrmUsingDB("rddp")
  197. sql := `SELECT * FROM report WHERE id in ` + reportIds
  198. _, err = o.Raw(sql).QueryRows(&list)
  199. return
  200. }
  201. // GetSimpleReportByIds 根据报告ID查询报告基本信息
  202. func GetSimpleReportByIds(reportIds []int) (list []*ReportDetail, err error) {
  203. if len(reportIds) == 0 {
  204. return
  205. }
  206. o := orm.NewOrmUsingDB("rddp")
  207. sql := `SELECT id, title FROM report WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  208. _, err = o.Raw(sql, reportIds).QueryRows(&list)
  209. return
  210. }
  211. func GetReportStage(classifyIdFirst, classifyIdSecond int) (count int, err error) {
  212. o := orm.NewOrmUsingDB("rddp")
  213. sql := ``
  214. if classifyIdSecond > 0 {
  215. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_second=? "
  216. o.Raw(sql, classifyIdSecond).QueryRow(&count)
  217. } else {
  218. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first=? "
  219. o.Raw(sql, classifyIdFirst).QueryRow(&count)
  220. }
  221. return
  222. }
  223. func GetReportStageEdit(classifyIdFirst, classifyIdSecond, reportId int) (count int, err error) {
  224. o := orm.NewOrmUsingDB("rddp")
  225. sql := ``
  226. if classifyIdSecond > 0 {
  227. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_second=? AND id<>? "
  228. o.Raw(sql, classifyIdSecond, reportId).QueryRow(&count)
  229. } else {
  230. sql = "SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first=? AND id<>? "
  231. o.Raw(sql, classifyIdFirst, reportId).QueryRow(&count)
  232. }
  233. return
  234. }
  235. type PublishReq struct {
  236. ReportIds string `description:"报告id,多个用英文逗号隔开"`
  237. }
  238. type PublishCancelReq struct {
  239. ReportIds int `description:"报告id"`
  240. }
  241. type DeleteReq struct {
  242. ReportIds int `description:"报告id"`
  243. }
  244. type AddReq struct {
  245. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  246. ClassifyIdFirst int `description:"一级分类id"`
  247. ClassifyNameFirst string `description:"一级分类名称"`
  248. ClassifyIdSecond int `description:"二级分类id"`
  249. ClassifyNameSecond string `description:"二级分类名称"`
  250. Title string `description:"标题"`
  251. Abstract string `description:"摘要"`
  252. Author string `description:"作者"`
  253. Frequency string `description:"频度"`
  254. State int `description:"状态:1:未发布,2:已发布"`
  255. Content string `description:"内容"`
  256. CreateTime string `description:"创建时间"`
  257. ReportVersion int `description:"1:旧版,2:新版"`
  258. }
  259. type PrePublishReq struct {
  260. ReportId int `description:"报告id"`
  261. PrePublishTime string `description:"预发布时间"`
  262. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  263. }
  264. type AddResp struct {
  265. ReportId int64 `description:"报告id"`
  266. ReportCode string `description:"报告code"`
  267. }
  268. func AddReport(item *Report) (lastId int64, err error) {
  269. o := orm.NewOrmUsingDB("rddp")
  270. lastId, err = o.Insert(item)
  271. return
  272. }
  273. type EditReq struct {
  274. ReportId int64 `description:"报告id"`
  275. ClassifyIdFirst int `description:"一级分类id"`
  276. ClassifyNameFirst string `description:"一级分类名称"`
  277. ClassifyIdSecond int `description:"二级分类id"`
  278. ClassifyNameSecond string `description:"二级分类名称"`
  279. Title string `description:"标题"`
  280. Abstract string `description:"摘要"`
  281. Author string `description:"作者"`
  282. Frequency string `description:"频度"`
  283. State int `description:"状态:1:未发布,2:已发布"`
  284. Content string `description:"内容"`
  285. CreateTime string `description:"创建时间"`
  286. }
  287. type EditResp struct {
  288. ReportId int64 `description:"报告id"`
  289. ReportCode string `description:"报告code"`
  290. }
  291. func EditReport(item *Report, reportId int64) (err error) {
  292. o := orm.NewOrmUsingDB("rddp")
  293. sql := `UPDATE report
  294. SET
  295. classify_id_first =?,
  296. classify_name_first = ?,
  297. classify_id_second = ?,
  298. classify_name_second = ?,
  299. title = ?,
  300. abstract = ?,
  301. author = ?,
  302. frequency = ?,
  303. state = ?,
  304. content = ?,
  305. content_sub = ?,
  306. stage =?,
  307. create_time = ?,
  308. modify_time = ?
  309. WHERE id = ? `
  310. _, err = o.Raw(sql, item.ClassifyIdFirst, item.ClassifyNameFirst, item.ClassifyIdSecond, item.ClassifyNameSecond, item.Title,
  311. item.Abstract, item.Author, item.Frequency, item.State, item.Content, item.ContentSub, item.Stage, item.CreateTime, time.Now(), reportId).Exec()
  312. return
  313. }
  314. type ReportDetailReq struct {
  315. ReportId int `description:"报告id"`
  316. }
  317. type ClassifyIdDetailReq struct {
  318. ClassifyIdFirst int `description:"报告一级分类id"`
  319. ClassifyIdSecond int `description:"报告二级分类id"`
  320. }
  321. func GetReportDetailByClassifyId(classifyIdFirst, classifyIdSecond int) (item *Report, err error) {
  322. o := orm.NewOrmUsingDB("rddp")
  323. sql := ` SELECT * FROM report WHERE 1=1 `
  324. if classifyIdSecond > 0 {
  325. sql = sql + ` AND classify_id_second=? ORDER BY stage DESC LIMIT 1`
  326. err = o.Raw(sql, classifyIdSecond).QueryRow(&item)
  327. } else {
  328. sql = sql + ` AND classify_id_first=? ORDER BY stage DESC LIMIT 1`
  329. err = o.Raw(sql, classifyIdFirst).QueryRow(&item)
  330. }
  331. return
  332. }
  333. type SendTemplateMsgReq struct {
  334. ReportId int `description:"报告id"`
  335. }
  336. func ModifyReportMsgIsSend(reportId int) (err error) {
  337. o := orm.NewOrmUsingDB("rddp")
  338. report, err := GetReportById(reportId)
  339. if err != nil {
  340. return
  341. }
  342. if report.MsgIsSend == 0 {
  343. sql := `UPDATE report SET msg_is_send = 1, msg_send_time=NOW() WHERE id = ? `
  344. _, err = o.Raw(sql, reportId).Exec()
  345. }
  346. return
  347. }
  348. func ModifyReportVideo(reportId int, videoUrl, videoName, videoSize string, playSeconds float64) (err error) {
  349. o := orm.NewOrmUsingDB("rddp")
  350. sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? `
  351. _, err = o.Raw(sql, videoUrl, videoName, playSeconds, videoSize, reportId).Exec()
  352. return
  353. }
  354. type ReportItem struct {
  355. Id int `orm:"column(id)" description:"报告Id"`
  356. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  357. ClassifyIdFirst int `description:"一级分类id"`
  358. ClassifyNameFirst string `description:"一级分类名称"`
  359. ClassifyIdSecond int `description:"二级分类id"`
  360. ClassifyNameSecond string `description:"二级分类名称"`
  361. Title string `description:"标题"`
  362. Abstract string `description:"摘要"`
  363. Author string `description:"作者"`
  364. Frequency string `description:"频度"`
  365. CreateTime time.Time `description:"创建时间"`
  366. ModifyTime time.Time `description:"修改时间"`
  367. State int `description:"1:未发布,2:已发布"`
  368. PublishTime time.Time `description:"发布时间"`
  369. Stage int `description:"期数"`
  370. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  371. Content string `description:"内容"`
  372. VideoUrl string `description:"音频文件URL"`
  373. VideoName string `description:"音频文件名称"`
  374. VideoPlaySeconds string `description:"音频播放时长"`
  375. ContentSub string `description:"内容前两个章节"`
  376. }
  377. func GetReportItemById(reportId int) (item *ReportItem, err error) {
  378. o := orm.NewOrmUsingDB("rddp")
  379. sql := `SELECT * FROM report WHERE id=?`
  380. err = o.Raw(sql, reportId).QueryRow(&item)
  381. return
  382. }
  383. type SaveReportContent struct {
  384. Content string `description:"内容"`
  385. ReportId int `description:"报告id"`
  386. NoChange int `description:"内容是否未改变:1:内容未改变"`
  387. }
  388. func EditReportContent(reportId int, content, contentSub string) (err error) {
  389. o := orm.NewOrmUsingDB("rddp")
  390. sql := ` UPDATE report SET content=?,content_sub=?,modify_time=NOW() WHERE id=? `
  391. _, err = o.Raw(sql, content, contentSub, reportId).Exec()
  392. return
  393. }
  394. func AddReportSaveLog(reportId, adminId int, content, contentSub, adminName string) (err error) {
  395. o := orm.NewOrmUsingDB("rddp")
  396. sql := ` INSERT INTO report_save_log(report_id, content,content_sub,admin_id,admin_name) VALUES (?,?,?,?,?) `
  397. _, err = o.Raw(sql, reportId, content, contentSub, adminId, adminName).Exec()
  398. return
  399. }
  400. func MultiAddReportChaptersSaveLog(items []*ReportChapter, adminId int, adminRealName string) (err error) {
  401. o := orm.NewOrmUsingDB("rddp")
  402. p, err := o.Raw(`INSERT INTO report_save_log(report_id, report_chapter_id, content, content_sub, admin_id, admin_name) VALUES (?,?,?,?,?,?)`).Prepare()
  403. if err != nil {
  404. return
  405. }
  406. defer func() {
  407. _ = p.Close()
  408. }()
  409. for _, v := range items {
  410. _, err = p.Exec(v.ReportId, v.ReportChapterId, v.Content, v.ContentSub, adminId, adminRealName)
  411. if err != nil {
  412. return
  413. }
  414. }
  415. return
  416. }
  417. type SaveReportContentResp struct {
  418. ReportId int `description:"报告id"`
  419. }
  420. func ModifyReportCode(reportId int64, reportCode string) (err error) {
  421. o := orm.NewOrmUsingDB("rddp")
  422. sql := `UPDATE report SET report_code=? WHERE id=? `
  423. _, err = o.Raw(sql, reportCode, reportId).Exec()
  424. return
  425. }
  426. func ModifyReportThsMsgIsSend(item *ReportDetail) (err error) {
  427. o := orm.NewOrmUsingDB("rddp")
  428. if item.ThsMsgIsSend == 0 {
  429. sql := `UPDATE report SET ths_msg_is_send = 1 WHERE id = ? `
  430. _, err = o.Raw(sql, item.Id).Exec()
  431. }
  432. return
  433. }
  434. type ThsSendTemplateMsgReq struct {
  435. ReportId []int `description:"报告id"`
  436. }
  437. type PublishDayWeekReportReq struct {
  438. ReportId int `description:"报告ID"`
  439. }
  440. // SaveDayWeekReportReq 新增晨报周报请求体
  441. type SaveDayWeekReportReq struct {
  442. ReportId int `description:"报告ID"`
  443. Title string `description:"标题"`
  444. ReportType string `description:"一级分类ID"`
  445. Author string `description:"作者"`
  446. CreateTime string `description:"创建时间"`
  447. }
  448. // GetDayWeekReportStage 获取晨报周报期数
  449. func GetDayWeekReportStage(classifyIdFirst int, yearStart time.Time) (count int, err error) {
  450. o := orm.NewOrmUsingDB("rddp")
  451. sql := " SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first = ? AND create_time > ? "
  452. o.Raw(sql, classifyIdFirst, yearStart).QueryRow(&count)
  453. return
  454. }
  455. // AddReportAndChapter 新增报告及章节
  456. func AddReportAndChapter(reportItem *Report, chapterItemList []*ReportChapter) (reportId int64, err error) {
  457. o := orm.NewOrmUsingDB("rddp")
  458. to, err := o.Begin()
  459. if err != nil {
  460. return
  461. }
  462. defer func() {
  463. if err != nil {
  464. _ = to.Rollback()
  465. } else {
  466. _ = to.Commit()
  467. }
  468. }()
  469. if reportId, err = to.Insert(reportItem); err != nil {
  470. return
  471. }
  472. if len(chapterItemList) > 0 {
  473. for _, chapterItem := range chapterItemList {
  474. chapterItem.ReportId = int(reportId)
  475. cpId, tmpErr := to.Insert(chapterItem)
  476. if tmpErr != nil {
  477. return
  478. }
  479. chapterItem.ReportChapterId = int(cpId)
  480. }
  481. }
  482. return
  483. }
  484. // GetReportByReportId 主键获取报告
  485. func GetReportByReportId(reportId int) (item *Report, err error) {
  486. o := orm.NewOrmUsingDB("rddp")
  487. sql := `SELECT * FROM report WHERE id = ?`
  488. err = o.Raw(sql, reportId).QueryRow(&item)
  489. return
  490. }
  491. // GetReportByOldReportId 根据老报告id主键获取报告
  492. func GetReportByOldReportId(reportId int) (item *Report, err error) {
  493. o := orm.NewOrmUsingDB("rddp")
  494. sql := `SELECT * FROM report WHERE old_report_id = ?`
  495. err = o.Raw(sql, reportId).QueryRow(&item)
  496. return
  497. }
  498. // DeleteDayWeekReportAndChapter 删除晨周报及章节
  499. func DeleteDayWeekReportAndChapter(reportId int) (err error) {
  500. o := orm.NewOrmUsingDB("rddp")
  501. to, err := o.Begin()
  502. if err != nil {
  503. return
  504. }
  505. defer func() {
  506. if err != nil {
  507. _ = to.Rollback()
  508. } else {
  509. _ = to.Commit()
  510. }
  511. }()
  512. sql := ` DELETE FROM report WHERE id = ? LIMIT 1 `
  513. if _, err = to.Raw(sql, reportId).Exec(); err != nil {
  514. return
  515. }
  516. sql = ` DELETE FROM report_chapter WHERE report_id = ? `
  517. if _, err = to.Raw(sql, reportId).Exec(); err != nil {
  518. return
  519. }
  520. return
  521. }
  522. // UpdateReport 更新报告
  523. func (reportInfo *Report) UpdateReport(cols []string) (err error) {
  524. o := orm.NewOrmUsingDB("rddp")
  525. _, err = o.Update(reportInfo, cols...)
  526. return
  527. }
  528. // 晨周报详情
  529. type ReportDetailView struct {
  530. *ReportDetail
  531. ChapterList []*ReportChapter
  532. }
  533. func GetUnPublishDayReport(startTime time.Time, endTime time.Time) (item *Report, err error) {
  534. o := orm.NewOrmUsingDB("rddp")
  535. sql := ` SELECT
  536. *
  537. FROM
  538. report AS a
  539. WHERE
  540. a.has_chapter = 1
  541. AND a.chapter_type = "day"
  542. AND a.state = 1
  543. AND (
  544. a.create_time BETWEEN ? AND ?
  545. )
  546. ORDER BY
  547. a.create_time DESC
  548. LIMIT 1 `
  549. err = o.Raw(sql, startTime, endTime).QueryRow(&item)
  550. return
  551. }
  552. type ElasticReportDetail struct {
  553. ReportId int `description:"报告ID"`
  554. ReportChapterId int `description:"报告章节ID"`
  555. Title string `description:"标题"`
  556. Abstract string `description:"摘要"`
  557. BodyContent string `description:"内容"`
  558. PublishTime string `description:"发布时间"`
  559. PublishState int `description:"发布状态 1-未发布 2-已发布"`
  560. Author string `description:"作者"`
  561. ClassifyIdFirst int `description:"一级分类ID"`
  562. ClassifyNameFirst string `description:"一级分类名称"`
  563. ClassifyIdSecond int `description:"二级分类ID"`
  564. ClassifyNameSecond string `description:"二级分类名称"`
  565. Categories string `description:"关联的品种名称(包括品种别名)"`
  566. StageStr string `description:"报告期数"`
  567. BodyMd5 string `description:"MD5加密之后的内容"`
  568. }
  569. // GetLastPublishedDayWeekReport 获取上一篇已发布的晨周报
  570. func GetLastPublishDayWeekReport(chapterType string) (item *Report, err error) {
  571. o := orm.NewOrmUsingDB("rddp")
  572. sql := ` SELECT * FROM report WHERE has_chapter = 1 AND chapter_type = ? AND state = 2 ORDER BY publish_time DESC LIMIT 1 `
  573. err = o.Raw(sql, chapterType).QueryRow(&item)
  574. return
  575. }
  576. // GetNewReportExist
  577. func GetNewReportExist(oldReportId int) (item *Report, err error) {
  578. o := orm.NewOrmUsingDB("rddp")
  579. sql := ` SELECT id FROM report WHERE old_report_id = ? LIMIT 1 `
  580. err = o.Raw(sql, oldReportId).QueryRow(&item)
  581. return
  582. }
  583. // PublishReportAndChapter 发布报告及章节
  584. func PublishReportAndChapter(reportInfo *Report, publishIds, unPublishIds []int, isPublishReport bool, cols []string) (err error) {
  585. o := orm.NewOrmUsingDB("rddp")
  586. to, err := o.Begin()
  587. if err != nil {
  588. return
  589. }
  590. defer func() {
  591. if err != nil {
  592. _ = to.Rollback()
  593. } else {
  594. _ = to.Commit()
  595. }
  596. }()
  597. // 更新报告
  598. if isPublishReport {
  599. if _, err = to.Update(reportInfo, cols...); err != nil {
  600. return
  601. }
  602. }
  603. // 发布章节
  604. if len(publishIds) > 0 {
  605. sql := ` UPDATE report_chapter SET publish_state = 2, publish_time = ? WHERE report_id = ? AND report_chapter_id IN (` + utils.GetOrmInReplace(len(publishIds)) + `) `
  606. _, err = to.Raw(sql, reportInfo.PublishTime, reportInfo.Id, publishIds).Exec()
  607. }
  608. if len(unPublishIds) > 0 {
  609. sql := ` UPDATE report_chapter SET publish_state = 1, publish_time = NULL, is_edit = 0 WHERE report_id = ? AND report_chapter_id IN (` + utils.GetOrmInReplace(len(unPublishIds)) + `) `
  610. _, err = to.Raw(sql, reportInfo.Id, unPublishIds).Exec()
  611. }
  612. return
  613. }
  614. func GetSyncEmptyVideoReport() (list []*Report, err error) {
  615. o := orm.NewOrmUsingDB("rddp")
  616. sql := ` SELECT id FROM report WHERE old_report_id > 0 AND state = 2 AND chapter_type = "" AND (video_size = "" OR video_play_seconds = "")
  617. UNION ALL
  618. SELECT DISTINCT report_id FROM report_chapter WHERE publish_state = 2 AND (video_size = "" OR video_play_seconds = "") `
  619. _, err = o.Raw(sql).QueryRows(&list)
  620. return
  621. }
  622. // 发布报告
  623. func PublishReportById(reportId int, publishTime time.Time) (err error) {
  624. o := orm.NewOrmUsingDB("rddp")
  625. sql := `UPDATE report SET state = 2, publish_time = ?, pre_publish_time=null, pre_msg_send=0, modify_time = NOW() WHERE id = ? `
  626. _, err = o.Raw(sql, publishTime, reportId).Exec()
  627. return
  628. }
  629. // GetCommentReportByReportId 查询有留言的报告列表
  630. func GetCommentReportByReportId(condition string, pars []interface{}, startSize, pageSize int) (list []*Report, err error) {
  631. o := orm.NewOrmUsingDB("rddp")
  632. sql := `SELECT
  633. id,
  634. create_time,
  635. title,
  636. classify_name_first,
  637. classify_id_first,
  638. classify_name_second,
  639. classify_id_second,
  640. state,
  641. IF
  642. ( publish_time, publish_time, create_time ) AS publish_time
  643. FROM
  644. report
  645. WHERE
  646. 1=1
  647. `
  648. if condition != "" {
  649. sql += condition
  650. }
  651. sql += ` ORDER BY publish_time DESC , title ASC LIMIT ?,?`
  652. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  653. return
  654. }
  655. // GetCommentReportByReportIdOrderBy 查询有留言的报告列表(指定排序)
  656. func GetCommentReportByReportIdOrderBy(condition string, pars []interface{}, startSize, pageSize int, orderBy string) (list []*Report, err error) {
  657. o := orm.NewOrmUsingDB("rddp")
  658. sql := `SELECT
  659. id,
  660. create_time,
  661. title,
  662. classify_name_first,
  663. classify_id_first,
  664. classify_name_second,
  665. classify_id_second,
  666. state,
  667. IF
  668. ( publish_time, publish_time, create_time ) AS publish_time
  669. FROM
  670. report
  671. WHERE
  672. 1=1
  673. `
  674. if condition != "" {
  675. sql += condition
  676. }
  677. if orderBy == `` {
  678. sql += ` ORDER BY publish_time DESC , title ASC `
  679. } else {
  680. sql += orderBy
  681. }
  682. sql += ` LIMIT ?,? `
  683. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
  684. return
  685. }
  686. // GetCommentReportTotalByReportId 查询有留言的报告列表总数
  687. func GetCommentReportTotalByReportId(condition string, pars []interface{}) (total int64, err error) {
  688. o := orm.NewOrmUsingDB("rddp")
  689. sql := `SELECT count(*)
  690. FROM report WHERE 1=1`
  691. if condition != "" {
  692. sql += condition
  693. }
  694. err = o.Raw(sql, pars).QueryRow(&total)
  695. return
  696. }
  697. // 点赞相关的报告列表
  698. type LikeReportItem struct {
  699. ReportId int `description:"报告Id"`
  700. ReportChapterId int `description:"报告章节Id"`
  701. ClassifyIdFirst int `description:"一级分类id"`
  702. ClassifyNameFirst string `description:"一级分类名称"`
  703. ClassifyIdSecond int `description:"二级分类id"`
  704. ClassifyNameSecond string `description:"二级分类名称"`
  705. ReportChapterTypeId int `description:"章节类型"`
  706. ReportChapterTypeName string `description:"品种名称"`
  707. PublishTime time.Time `description:"发布时间" `
  708. Title string `description:"标题"`
  709. }
  710. // GetLikeReportByReportIdReportChapterId 获取有被点赞的报告列表
  711. func GetLikeReportByReportIdReportChapterId(reportIds string, chapterIds string, orderStr string, startSize, pageSize int) (list []*LikeReportItem, err error) {
  712. o := orm.NewOrmUsingDB("rddp")
  713. sql := `( SELECT
  714. id AS report_id,
  715. 0 AS report_chapter_id,
  716. classify_id_first,
  717. classify_id_second,
  718. classify_name_first,
  719. classify_name_second,
  720. 0 as report_chapter_type_id,
  721. "" as report_chapter_type_name,
  722. publish_time,
  723. title
  724. FROM
  725. report
  726. WHERE
  727. classify_name_first != "晨报"
  728. AND classify_name_first != "周报"
  729. AND id in (` + reportIds + `)
  730. )
  731. UNION
  732. ( SELECT
  733. report_id,
  734. report_chapter_id,
  735. classify_id_first,
  736. 0 as classify_id_second,
  737. classify_name_first,
  738. null as classify_name_second,
  739. type_id as report_chapter_type_id,
  740. type_name as report_chapter_type_name,
  741. publish_time,
  742. title
  743. FROM
  744. report_chapter
  745. WHERE
  746. report_chapter_id in (` + chapterIds + `)
  747. )`
  748. if orderStr != "" {
  749. sql += ` ORDER BY FIELD(CONCAT(report_id, "-",report_chapter_id),` + orderStr + `)`
  750. } else {
  751. sql += ` ORDER BY publish_time DESC, report_id Desc`
  752. }
  753. sql += ` LIMIT ?,?`
  754. _, err = o.Raw(sql, startSize, pageSize).QueryRows(&list)
  755. return
  756. }
  757. // GetLikeReportTotalByReportIdReportChapterId 获取有被点赞的报告列表总数
  758. func GetLikeReportTotalByReportIdReportChapterId(reportIds string, chapterIds string) (total int64, err error) {
  759. o := orm.NewOrmUsingDB("rddp")
  760. sql := `select count(*) from (( SELECT
  761. id AS report_id,
  762. 0 AS report_chapter_id,
  763. classify_id_first,
  764. classify_id_second,
  765. classify_name_first,
  766. classify_name_second,
  767. 0 as report_chapter_type_id,
  768. publish_time,
  769. title
  770. FROM
  771. report
  772. WHERE
  773. classify_name_first != "晨报"
  774. AND classify_name_first != "周报"
  775. AND id in (` + reportIds + `)
  776. )
  777. UNION
  778. ( SELECT
  779. report_id,
  780. report_chapter_id,
  781. classify_id_first,
  782. 0 as classify_id_second,
  783. classify_name_first,
  784. null as classify_name_second,
  785. type_id as report_chapter_type_id,
  786. publish_time,
  787. title
  788. FROM
  789. report_chapter
  790. WHERE
  791. report_chapter_id in (` + chapterIds + `)
  792. )) r`
  793. err = o.Raw(sql).QueryRow(&total)
  794. return
  795. }
  796. // GetPageReportList 分页获取报告列表
  797. func GetPageReportList(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*ReportList, err error) {
  798. o := orm.NewOrmUsingDB("rddp")
  799. sql := `SELECT * FROM report WHERE 1=1 `
  800. sql += condition
  801. sql += ` ORDER BY modify_time DESC`
  802. totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  803. err = o.Raw(totalSql, pars).QueryRow(&total)
  804. if err != nil {
  805. return
  806. }
  807. sql += ` LIMIT ?,? `
  808. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  809. return
  810. }
  811. // SunCodeReq 获取太阳码请求体
  812. type SunCodeReq struct {
  813. CodePage string `json:"CodePage" description:"太阳码page"`
  814. CodeScene string `json:"CodeScene" description:"太阳码scene"`
  815. }
  816. // YbPcSuncode 活动海报表
  817. type YbPcSuncode struct {
  818. SuncodeID uint32 `orm:"column(suncode_id);pk" `
  819. Scene string `gorm:"column:scene;type:varchar(255);not null;default:0" json:"scene"` // 微信scene
  820. SceneMd5 string `gorm:"column:scene_md5;type:varchar(255);not null" json:"sceneMd5"`
  821. CodePage string `gorm:"column:code_page;type:varchar(255);not null;default:''" json:"codePage"` // 路径
  822. SuncodeUrl string `gorm:"column:suncode_url;type:varchar(255);not null;default:''" json:"suncodeUrl"` // 太阳码储存地址
  823. CreateTime time.Time `gorm:"column:create_time;type:timestamp;default:CURRENT_TIMESTAMP" json:"createTime"`
  824. }
  825. // GetYbPcSunCode 获取太阳码
  826. func GetYbPcSunCode(scene, page string) (item *YbPcSuncode, err error) {
  827. o := orm.NewOrmUsingDB("weekly")
  828. sql := `SELECT * FROM yb_pc_suncode WHERE scene = ? AND code_page = ? `
  829. err = o.Raw(sql, scene, page).QueryRow(&item)
  830. return
  831. }
  832. func AddYbPcSunCode(item *YbPcSuncode) (err error) {
  833. o := orm.NewOrmUsingDB("weekly")
  834. _, err = o.Insert(item)
  835. return
  836. }
  837. // YbSuncodePars 小程序太阳码scene参数
  838. type YbSuncodePars struct {
  839. ID uint32 `orm:"column(id);pk" `
  840. Scene string `gorm:"column:scene;type:varchar(255);not null;default:''" json:"scene"` // scene参数
  841. SceneKey string `gorm:"column:scene_key;type:varchar(32);not null;default:''" json:"scene_key"` // MD5值
  842. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:CURRENT_TIMESTAMP" json:"createTime"`
  843. }
  844. func AddYbSuncodePars(item *YbSuncodePars) (err error) {
  845. o := orm.NewOrmUsingDB("weekly")
  846. _, err = o.Insert(item)
  847. return
  848. }
  849. // UpdateReportSecondClassifyNameByClassifyId 更新报告分类名称字段
  850. func UpdateReportSecondClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  851. o := orm.NewOrmUsingDB("rddp")
  852. sql := " UPDATE report SET classify_name_second = ? WHERE classify_id_second = ? "
  853. _, err = o.Raw(sql, classifyName, classifyId).Exec()
  854. return
  855. }
  856. // UpdateReportFirstClassifyNameByClassifyId 更新报告分类一级名称字段
  857. func UpdateReportFirstClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  858. o := orm.NewOrmUsingDB("rddp")
  859. sql := " UPDATE report SET classify_name_first = ? WHERE classify_id_first = ? "
  860. _, err = o.Raw(sql, classifyName, classifyId).Exec()
  861. return
  862. }
  863. // UpdateReportSecondClassifyFirstNameByClassifyId 更新报告二级分类的一级分类名称和id
  864. func UpdateReportSecondClassifyFirstNameByClassifyId(classifyId, newClassifyId int, classifyName string) (err error) {
  865. o := orm.NewOrmUsingDB("rddp")
  866. sql := " UPDATE report SET classify_name_first = ?, classify_id_first = ? WHERE classify_id_second = ? "
  867. _, err = o.Raw(sql, classifyName, newClassifyId, classifyId).Exec()
  868. return
  869. }
  870. // GetEmptyContentSubPPTReport 获取前两章为空的PPT报告
  871. func GetEmptyContentSubPPTReport() (list []*Report, err error) {
  872. sql := `SELECT
  873. r.id,
  874. r.content,
  875. r.content_sub
  876. FROM
  877. report AS r
  878. JOIN ppt_v2 AS p ON r.id = p.report_id
  879. WHERE
  880. p.report_id > 0 AND r.content_sub = ""`
  881. _, err = orm.NewOrmUsingDB("rddp").Raw(sql).QueryRows(&list)
  882. return
  883. }
  884. // ModifyReportAuthor 更改报告作者
  885. func ModifyReportAuthor(condition string, pars []interface{}, authorName string) (count int, err error) {
  886. //产品权限
  887. oRddp := orm.NewOrmUsingDB("rddp")
  888. sql := `UPDATE english_report set author = ? WHERE 1=1 `
  889. if condition != "" {
  890. sql += condition
  891. }
  892. err = oRddp.Raw(sql, authorName, pars).QueryRow(&count)
  893. return
  894. }
  895. func UpdateReportPublishTime(reportId int, videoNameDate string) (err error) {
  896. o := orm.NewOrmUsingDB("rddp")
  897. sql1 := ` UPDATE report SET publish_time = NOW() WHERE id = ? `
  898. _, err = o.Raw(sql1, reportId).Exec()
  899. if err != nil {
  900. return
  901. }
  902. //修改音频标题
  903. sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !="" and video_name is not null)`
  904. _, err = o.Raw(sql2, reportId).Exec()
  905. return
  906. }
  907. func UpdateReportChapterPublishTime(reportId int, videoNameDate string) (err error) {
  908. o := orm.NewOrmUsingDB("rddp")
  909. sql1 := ` UPDATE report_chapter SET publish_time = NOW() WHERE report_id = ? `
  910. _, err = o.Raw(sql1, reportId).Exec()
  911. if err != nil {
  912. return
  913. }
  914. //修改音频标题
  915. 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)`
  916. _, err = o.Raw(sql2, reportId).Exec()
  917. return
  918. }
  919. // MarkEditReport 标记编辑英文研报的请求数据
  920. type MarkEditReport struct {
  921. ReportId int `description:"研报id"`
  922. Status int `description:"标记状态,1:编辑中,2:编辑完成"`
  923. }
  924. type MarkReportResp struct {
  925. Status int `description:"状态:0:无人编辑, 1:当前有人在编辑"`
  926. Msg string `description:"提示信息"`
  927. Editor string `description:"编辑者姓名"`
  928. }
  929. type MarkReportItem struct {
  930. AdminId int `description:"编辑者ID"`
  931. Editor string `description:"编辑者姓名"`
  932. ReportClassifyNameFirst string
  933. }
  934. // GetReportByCondition 获取报告
  935. func GetReportByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, isPage bool, startSize, pageSize int) (items []*Report, err error) {
  936. o := orm.NewOrmUsingDB("rddp")
  937. fields := `*`
  938. if len(fieldArr) > 0 {
  939. fields = strings.Join(fieldArr, ",")
  940. }
  941. sql := `SELECT ` + fields + ` FROM report WHERE 1=1 `
  942. sql += condition
  943. order := ` ORDER BY modify_time DESC`
  944. if orderRule != `` {
  945. order = orderRule
  946. }
  947. sql += order
  948. if isPage {
  949. sql += ` LIMIT ?,?`
  950. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  951. } else {
  952. _, err = o.Raw(sql, pars).QueryRows(&items)
  953. }
  954. return
  955. }
  956. // ModifyReportMsgIsSendV2 更新报告消息状态
  957. func ModifyReportMsgIsSendV2(reportId int) (err error) {
  958. o := orm.NewOrmUsingDB("rddp")
  959. sql := `UPDATE report SET msg_is_send = 1, ths_msg_is_send = 1, msg_send_time = NOW() WHERE id = ? LIMIT 1`
  960. _, err = o.Raw(sql, reportId).Exec()
  961. return
  962. }
  963. // SetPrePublishReportById 设置定时发布
  964. func SetPrePublishReportById(reportId int, prePublishTime string, preMsgSend int) (err error) {
  965. o := orm.NewOrmUsingDB("rddp")
  966. sql := `UPDATE report SET pre_publish_time=?, pre_msg_send=? WHERE id = ? and state = 1 `
  967. _, err = o.Raw(sql, prePublishTime, preMsgSend, reportId).Exec()
  968. return
  969. }