report.go 55 KB

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