report.go 55 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151
  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. IsManualSave bool `description:"是否手动保存:true:手动 false:自动"`
  619. }
  620. func AddReportSaveLog(reportId, adminId int, content, contentSub, contentStruct, canvasColor, adminName string, headResourceId, endResourceId int) (err error) {
  621. 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 (?,?,?,?,?,?,?,?,?) `
  622. err = global.DmSQL["rddp"].Exec(sql, reportId, content, contentSub, contentStruct, canvasColor, headResourceId, endResourceId, adminId, adminName).Error
  623. return
  624. }
  625. func MultiAddReportChaptersSaveLog(items []*ReportChapter, adminId int, adminRealName string) (err error) {
  626. tx := global.DmSQL["rddp"].Begin()
  627. for _, v := range items {
  628. 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
  629. if err != nil {
  630. tx.Rollback()
  631. return
  632. }
  633. }
  634. tx.Commit()
  635. return
  636. }
  637. type SaveReportContentResp struct {
  638. ReportId int `description:"报告id"`
  639. }
  640. func ModifyReportCode(reportId int64, reportCode string) (err error) {
  641. sql := `UPDATE report SET report_code=? WHERE id=? `
  642. err = global.DmSQL["rddp"].Exec(sql, reportCode, reportId).Error
  643. return
  644. }
  645. func ModifyReportThsMsgIsSend(item *ReportDetail) (err error) {
  646. if item.ThsMsgIsSend == 0 {
  647. sql := `UPDATE report SET ths_msg_is_send = 1 WHERE id = ? `
  648. err = global.DmSQL["rddp"].Exec(sql, item.Id).Error
  649. }
  650. return
  651. }
  652. type ThsSendTemplateMsgReq struct {
  653. ReportId []int `description:"报告id"`
  654. }
  655. type PublishDayWeekReportReq struct {
  656. ReportId int `description:"报告ID"`
  657. }
  658. // SaveDayWeekReportReq 新增晨报周报请求体
  659. type SaveDayWeekReportReq struct {
  660. ReportId int `description:"报告ID"`
  661. Title string `description:"标题"`
  662. ReportType string `description:"一级分类ID"`
  663. Author string `description:"作者"`
  664. CreateTime string `description:"创建时间"`
  665. }
  666. // GetReportByReportId 主键获取报告
  667. func GetReportByReportId(reportId int) (item *Report, err error) {
  668. sql := `SELECT * FROM report WHERE id = ?`
  669. err = global.DmSQL["rddp"].Raw(sql, reportId).First(&item).Error
  670. return
  671. }
  672. // DeleteDayWeekReportAndChapter 删除晨周报及章节
  673. func DeleteDayWeekReportAndChapter(reportId int) (err error) {
  674. to := global.DmSQL["rddp"].Begin()
  675. defer func() {
  676. if err != nil {
  677. _ = to.Rollback()
  678. } else {
  679. _ = to.Commit()
  680. }
  681. }()
  682. sql := ` DELETE FROM report WHERE id = ? LIMIT 1 `
  683. if err = to.Exec(sql, reportId).Error; err != nil {
  684. return
  685. }
  686. sql = ` DELETE FROM report_chapter WHERE report_id = ? `
  687. if err = to.Exec(sql, reportId).Error; err != nil {
  688. return
  689. }
  690. return
  691. }
  692. // UpdateReport 更新报告
  693. func (reportInfo *Report) UpdateReport(cols []string) (err error) {
  694. err = global.DmSQL["rddp"].Select(cols).Updates(reportInfo).Error
  695. return
  696. }
  697. // ReportDetailView
  698. // @Description: 晨周报详情
  699. type ReportDetailView struct {
  700. *ReportDetail
  701. ChapterList []*ReportChapter
  702. GrandAdminList []ReportDetailViewAdmin
  703. PermissionList []ReportDetailViewPermission
  704. }
  705. // ReportDetailViewAdmin
  706. // @Description: 报告里面的授权人
  707. type ReportDetailViewAdmin struct {
  708. AdminId int
  709. AdminName string
  710. }
  711. // ReportDetailViewPermission
  712. // @Description: 报告分类关联的品种权限
  713. type ReportDetailViewPermission struct {
  714. PermissionId int
  715. PermissionName string
  716. }
  717. type ElasticReportDetail struct {
  718. gorm.Model
  719. ReportId int `gorm:"column:report_id;index" description:"报告ID"`
  720. ReportChapterId int `gorm:"column:report_chapter_id" description:"报告章节ID"`
  721. Title string `gorm:"column:title" description:"标题"`
  722. Abstract string `gorm:"column:abstract" description:"摘要"`
  723. BodyContent string `gorm:"column:body_content" description:"内容"`
  724. PublishTime string `gorm:"column:publish_time" description:"发布时间"`
  725. PublishState int `gorm:"column:publish_state" description:"发布状态 1-未发布 2-已发布"`
  726. Author string `gorm:"column:author" description:"作者"`
  727. ClassifyIdFirst int `gorm:"column:classify_id_first" description:"一级分类ID"`
  728. ClassifyNameFirst string `gorm:"column:classify_name_first" description:"一级分类名称"`
  729. ClassifyIdSecond int `gorm:"column:classify_id_second" description:"二级分类ID"`
  730. ClassifyNameSecond string `gorm:"column:classify_name_second" description:"二级分类名称"`
  731. ClassifyId int `gorm:"column:classify_id" description:"最小单元的分类ID"`
  732. ClassifyName string `gorm:"column:classify_name" description:"最小单元的分类名称"`
  733. Categories string `gorm:"column:categories" description:"关联的品种名称(包括品种别名)"`
  734. StageStr string `gorm:"column:stage_str" description:"报告期数"`
  735. }
  736. // PublishReportAndChapter 发布报告及章节
  737. func PublishReportAndChapter(reportInfo *Report, isPublishReport bool, cols []string) (err error) {
  738. to := global.DmSQL["rddp"].Begin()
  739. defer func() {
  740. if err != nil {
  741. _ = to.Rollback()
  742. } else {
  743. _ = to.Commit()
  744. }
  745. }()
  746. // 更新报告
  747. if isPublishReport {
  748. err = to.Select(cols).Updates(reportInfo).Error
  749. if err != nil {
  750. return
  751. }
  752. }
  753. // 发布该报告的所有章节
  754. sql := ` UPDATE report_chapter SET publish_state = 2, publish_time = ? WHERE report_id = ? `
  755. err = to.Exec(sql, reportInfo.PublishTime, reportInfo.Id).Error
  756. return
  757. }
  758. // PublishReportById 发布报告
  759. func PublishReportById(reportId int, publishTime time.Time, lastModifyAdminId int, lastModifyAdminName string) (err error) {
  760. 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 = ? `
  761. err = global.DmSQL["rddp"].Exec(sql, publishTime, lastModifyAdminId, lastModifyAdminName, reportId).Error
  762. return
  763. }
  764. // ResetReportById 重置报告状态
  765. func ResetReportById(reportId, state int, lastModifyAdminId int, lastModifyAdminName string) (err error) {
  766. 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 = ?`
  767. err = global.DmSQL["rddp"].Exec(sql, state, lastModifyAdminId, lastModifyAdminName, reportId).Error
  768. return
  769. }
  770. // 点赞相关的报告列表
  771. type LikeReportItem struct {
  772. gorm.Model
  773. ReportId int `gorm:"column:report_id;index" description:"报告Id"`
  774. ReportChapterId int `gorm:"column:report_chapter_id" description:"报告章节Id"`
  775. ClassifyIdFirst int `gorm:"column:classify_id_first" description:"一级分类id"`
  776. ClassifyNameFirst string `gorm:"column:classify_name_first" description:"一级分类名称"`
  777. ClassifyIdSecond int `gorm:"column:classify_id_second" description:"二级分类id"`
  778. ClassifyNameSecond string `gorm:"column:classify_name_second" description:"二级分类名称"`
  779. ReportChapterTypeId int `gorm:"column:report_chapter_type_id" description:"章节类型"`
  780. ReportChapterTypeName string `gorm:"column:report_chapter_type_name" description:"品种名称"`
  781. PublishTime time.Time `gorm:"column:publish_time" description:"发布时间"`
  782. Title string `gorm:"column:title" description:"标题"`
  783. }
  784. // SunCodeReq 获取太阳码请求体
  785. type SunCodeReq struct {
  786. CodePage string `json:"CodePage" description:"太阳码page"`
  787. CodeScene string `json:"CodeScene" description:"太阳码scene"`
  788. }
  789. // YbPcSuncode 活动海报表
  790. type YbPcSuncode struct {
  791. SuncodeID uint32 `gorm:"column:suncode_id;primaryKey" json:"suncodeId"` //`orm:"column(suncode_id);pk" gorm:"primaryKey" `
  792. Scene string `gorm:"column:scene;type:varchar(255);not null;default:0" json:"scene"` // 微信scene
  793. SceneMd5 string `gorm:"column:scene_md5;type:varchar(255);not null" json:"sceneMd5"`
  794. CodePage string `gorm:"column:code_page;type:varchar(255);not null;default:''" json:"codePage"` // 路径
  795. SuncodeUrl string `gorm:"column:suncode_url;type:varchar(255);not null;default:''" json:"suncodeUrl"` // 太阳码储存地址
  796. CreateTime time.Time `gorm:"column:create_time;type:timestamp;default:CURRENT_TIMESTAMP" json:"createTime"`
  797. }
  798. // GetYbPcSunCode 获取太阳码
  799. func GetYbPcSunCode(scene, page string) (item *YbPcSuncode, err error) {
  800. sql := `SELECT * FROM yb_pc_suncode WHERE scene = ? AND code_page = ? `
  801. err = global.DmSQL["weekly"].Raw(sql, scene, page).First(&item).Error
  802. return
  803. }
  804. func AddYbPcSunCode(item *YbPcSuncode) (err error) {
  805. err = global.DmSQL["weekly"].Create(item).Error
  806. return
  807. }
  808. // YbSuncodePars 小程序太阳码scene参数
  809. type YbSuncodePars struct {
  810. ID uint32 `gorm:"column:id;primaryKey" json:"id"` //`orm:"column(id);pk" gorm:"primaryKey" `
  811. Scene string `gorm:"column:scene;type:varchar(255);not null;default:''" json:"scene"` // scene参数
  812. SceneKey string `gorm:"column:scene_key;type:varchar(32);not null;default:''" json:"scene_key"` // MD5值
  813. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:CURRENT_TIMESTAMP" json:"createTime"`
  814. }
  815. func AddYbSuncodePars(item *YbSuncodePars) (err error) {
  816. err = global.DmSQL["weekly"].Create(item).Error
  817. return
  818. }
  819. // UpdateReportSecondClassifyNameByClassifyId 更新报告分类名称字段
  820. func UpdateReportSecondClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  821. sql := " UPDATE report SET classify_name_second = ? WHERE classify_id_second = ? "
  822. err = global.DmSQL["rddp"].Exec(sql, classifyName, classifyId).Error
  823. return
  824. }
  825. // UpdateReportFirstClassifyNameByClassifyId 更新报告分类一级名称字段
  826. func UpdateReportFirstClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  827. sql := " UPDATE report SET classify_name_first = ? WHERE classify_id_first = ? "
  828. err = global.DmSQL["rddp"].Exec(sql, classifyName, classifyId).Error
  829. return
  830. }
  831. // UpdateReportThirdClassifyNameByClassifyId 更新报告的三级分类名称字段
  832. func UpdateReportThirdClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  833. sql := " UPDATE report SET classify_name_third = ? WHERE classify_id_third = ? "
  834. err = global.DmSQL["rddp"].Exec(sql, classifyName, classifyId).Error
  835. return
  836. }
  837. // ModifyReportAuthor 更改报告作者
  838. func ModifyReportAuthor(condition string, pars []interface{}, authorName string) (count int, err error) {
  839. //产品权限
  840. sql := `UPDATE english_report set author = ? WHERE 1=1 `
  841. if condition != "" {
  842. sql += condition
  843. }
  844. result := global.DmSQL["rddp"].Raw(sql, utils.ForwardPars(pars, authorName)...)
  845. count = int(result.RowsAffected)
  846. err = result.Error
  847. return
  848. }
  849. func UpdateReportPublishTime(reportId int, videoNameDate string) (err error) {
  850. sql1 := ` UPDATE report SET publish_time = NOW() WHERE id = ? `
  851. err = global.DmSQL["rddp"].Exec(sql1, reportId).Error
  852. if err != nil {
  853. return
  854. }
  855. //修改音频标题
  856. sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !='' and video_name is not null)`
  857. err = global.DmSQL["rddp"].Exec(sql2, reportId).Error
  858. return
  859. }
  860. func UpdateReportChapterPublishTime(reportId int, videoNameDate string) (err error) {
  861. sql1 := ` UPDATE report_chapter SET publish_time = NOW() WHERE report_id = ? `
  862. err = global.DmSQL["rddp"].Exec(sql1, reportId).Error
  863. if err != nil {
  864. return
  865. }
  866. //修改音频标题
  867. 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)`
  868. err = global.DmSQL["rddp"].Exec(sql2, reportId).Error
  869. return
  870. }
  871. // MarkEditReport 标记编辑英文研报的请求数据
  872. type MarkEditReport struct {
  873. ReportId int `description:"研报id"`
  874. ReportChapterId int `description:"研报章节id"`
  875. Status int `description:"标记状态,1:编辑中,2:查询状态,3:编辑完成"`
  876. }
  877. type MarkReportResp struct {
  878. Status int `description:"状态:0:无人编辑, 1:当前有人在编辑"`
  879. Msg string `description:"提示信息"`
  880. Editor string `description:"编辑者姓名"`
  881. }
  882. type MarkReportItem struct {
  883. AdminId int `description:"编辑者ID"`
  884. Editor string `description:"编辑者姓名"`
  885. ReportClassifyNameFirst string
  886. }
  887. // GetReportByCondition 获取报告
  888. func GetReportByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, isPage bool, startSize, pageSize int) (items []*Report, err error) {
  889. fields := `*`
  890. if len(fieldArr) > 0 {
  891. fields = strings.Join(fieldArr, ",")
  892. }
  893. sql := `SELECT ` + fields + ` FROM report WHERE 1=1 `
  894. sql += condition
  895. order := ` ORDER BY modify_time DESC`
  896. if orderRule != `` {
  897. order = orderRule
  898. }
  899. sql += order
  900. if isPage {
  901. sql += ` LIMIT ?,?`
  902. err = global.DmSQL["rddp"].Raw(sql, pars...).Find(&items).Error
  903. } else {
  904. err = global.DmSQL["rddp"].Raw(sql, pars...).Find(&items).Error
  905. }
  906. return
  907. }
  908. // SetPrePublishReportById 设置定时发布
  909. func SetPrePublishReportById(reportId int, prePublishTime string, preMsgSend int) (err error) {
  910. sql := `UPDATE report SET pre_publish_time=?, pre_msg_send=? WHERE id = ? and state = 1 `
  911. err = global.DmSQL["rddp"].Exec(sql, prePublishTime, preMsgSend, reportId).Error
  912. return
  913. }
  914. // ReportSubmitApproveReq 提交审批请求体
  915. type ReportSubmitApproveReq struct {
  916. ReportId int `description:"报告ID"`
  917. }
  918. // ReportCancelApproveReq 撤回审批请求体
  919. type ReportCancelApproveReq struct {
  920. ReportId int `description:"报告ID"`
  921. }
  922. func (m *Report) GetItemById(id int) (item *Report, err error) {
  923. sql := `SELECT * FROM report WHERE id = ? LIMIT 1`
  924. err = global.DmSQL["rddp"].Raw(sql, id).First(&item).Error
  925. return
  926. }
  927. // GetReportStateCount 获取指定状态的报告数量
  928. func GetReportStateCount(state int) (count int, err error) {
  929. sql := `SELECT COUNT(1) AS count FROM report WHERE state = ?`
  930. err = global.DmSQL["rddp"].Raw(sql, state).Scan(&count).Error
  931. return
  932. }
  933. // UpdateReportsStateByCond 批量更新报告状态
  934. func UpdateReportsStateByCond(classifyFirstId, classifySecondId, classifyThirdId, oldState, newState int) (err error) {
  935. cond := ``
  936. if classifyFirstId > 0 {
  937. cond += fmt.Sprintf(` AND classify_id_first = %d`, classifyFirstId)
  938. }
  939. if classifySecondId > 0 {
  940. cond += fmt.Sprintf(` AND classify_id_second = %d`, classifySecondId)
  941. }
  942. if classifyThirdId > 0 {
  943. cond += fmt.Sprintf(` AND classify_id_third = %d`, classifyThirdId)
  944. }
  945. sql := fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? %s`, cond)
  946. err = global.DmSQL["rddp"].Exec(sql, newState, oldState).Error
  947. return
  948. }
  949. // UpdateReportsStateBySecondIds 批量更新二级分类报告状态
  950. func UpdateReportsStateBySecondIds(oldState, newState int, secondIds []int) (err error) {
  951. if len(secondIds) <= 0 {
  952. return
  953. }
  954. // (有审批流的)未发布->待提交
  955. sql := fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? AND classify_id_second IN (%s)`, utils.GetOrmInReplace(len(secondIds)))
  956. err = global.DmSQL["rddp"].Exec(sql, newState, oldState, secondIds).Error
  957. if err != nil {
  958. return
  959. }
  960. // (无审批流的)待提交->未发布
  961. sql = fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? AND classify_id_second NOT IN (%s)`, utils.GetOrmInReplace(len(secondIds)))
  962. err = global.DmSQL["rddp"].Exec(sql, oldState, newState, secondIds).Error
  963. return
  964. }
  965. // GetReportPdfUrlReq 获取报告pdf地址请求体
  966. type GetReportPdfUrlReq struct {
  967. ReportUrl string `description:"报告Url"`
  968. ReportCode string `description:"报告Code"`
  969. Type int `description:"类型 1-pdf 2-图片"`
  970. }
  971. func ModifyReportPdfUrl(reportId int, detailPdfUrl string) (err error) {
  972. sql := `UPDATE report SET detail_pdf_url=? WHERE id=? `
  973. err = global.DmSQL["rddp"].Exec(sql, detailPdfUrl, reportId).Error
  974. return
  975. }
  976. func ModifyReportImgUrl(reportId int, detailImgUrl string) (err error) {
  977. sql := `UPDATE report SET detail_img_url=? WHERE id=? `
  978. err = global.DmSQL["rddp"].Exec(sql, detailImgUrl, reportId).Error
  979. return
  980. }
  981. // UpdatePdfUrlReportById 清空pdf相关字段
  982. func UpdatePdfUrlReportById(reportId int) (err error) {
  983. sql := `UPDATE report SET detail_img_url = '',detail_pdf_url='',modify_time=NOW() WHERE id = ? `
  984. err = global.DmSQL["rddp"].Exec(sql, reportId).Error
  985. return
  986. }
  987. // InsertMultiReport
  988. // @Description: 批量新增报告
  989. // @author: Roc
  990. // @datetime 2024-06-27 15:55:25
  991. // @param items []*Report
  992. // @return err error
  993. func InsertMultiReport(items []*Report) (err error) {
  994. err = global.DmSQL["rddp"].CreateInBatches(items, utils.MultiAddNum).Error
  995. return
  996. }
  997. // ReportLayout
  998. // @Description: 报告布局
  999. type ReportLayout struct {
  1000. Id int `gorm:"column:id;primaryKey"`
  1001. ReportLayout int8 `gorm:"column:report_layout"` //`description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  1002. }
  1003. // GetReportLayoutByReportId
  1004. // @Description: 根据报告id获取报告的布局
  1005. // @author: Roc
  1006. // @datetime 2024-07-15 15:27:05
  1007. // @param reportId int
  1008. // @return item ReportLayout
  1009. // @return err error
  1010. func GetReportLayoutByReportId(reportId int) (item ReportLayout, err error) {
  1011. sql := `SELECT id, report_layout FROM report WHERE id = ? `
  1012. err = global.DmSQL["rddp"].Raw(sql, reportId).First(&item).Error
  1013. return
  1014. }
  1015. func GetReportFieldsByIds(ids []int, fields []string) (items []*Report, err error) {
  1016. if len(ids) == 0 {
  1017. return
  1018. }
  1019. field := " * "
  1020. if len(fields) > 0 {
  1021. field = fmt.Sprintf(" %s ", strings.Join(fields, ","))
  1022. }
  1023. sql := fmt.Sprintf(`SELECT %s FROM report WHERE id IN (%s)`, field, utils.GetOrmInReplace(len(ids)))
  1024. err = global.DmSQL["rddp"].Raw(sql, ids).Find(&items).Error
  1025. return
  1026. }
  1027. func (m *Report) GetCountByCondition(condition string, pars []interface{}) (count int, err error) {
  1028. sql := fmt.Sprintf(`SELECT COUNT(1) FROM report WHERE 1=1 %s`, condition)
  1029. err = global.DmSQL["rddp"].Raw(sql, pars...).Scan(&count).Error
  1030. return
  1031. }
  1032. func (m *Report) GetItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string) (items []*Report, err error) {
  1033. fields := strings.Join(fieldArr, ",")
  1034. if len(fieldArr) == 0 {
  1035. fields = `*`
  1036. }
  1037. order := `ORDER BY create_time DESC`
  1038. if orderRule != "" {
  1039. order = ` ORDER BY ` + orderRule
  1040. }
  1041. sql := fmt.Sprintf(`SELECT %s FROM report WHERE 1=1 %s %s`, fields, condition, order)
  1042. err = global.DmSQL["rddp"].Raw(sql, pars...).Find(&items).Error
  1043. return
  1044. }