report.go 41 KB

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