report.go 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692
  1. package models
  2. import (
  3. sql2 "database/sql"
  4. "errors"
  5. "eta/eta_api/global"
  6. "eta/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 `orm:"column(id)" description:"报告Id"`
  33. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  34. ClassifyIdFirst int `description:"一级分类id"`
  35. ClassifyNameFirst string `description:"一级分类名称"`
  36. ClassifyIdSecond int `description:"二级分类id"`
  37. ClassifyNameSecond string `description:"二级分类名称"`
  38. Title string `description:"标题"`
  39. Abstract string `description:"摘要"`
  40. Author string `description:"作者"`
  41. Frequency string `description:"频度"`
  42. CreateTime string `description:"创建时间"`
  43. ModifyTime time.Time `description:"修改时间"`
  44. State int `description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
  45. PublishTime time.Time `description:"发布时间"`
  46. Stage int `description:"期数"`
  47. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  48. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  49. Content string `description:"内容"`
  50. VideoUrl string `description:"音频文件URL"`
  51. VideoName string `description:"音频文件名称"`
  52. VideoPlaySeconds string `description:"音频播放时长"`
  53. VideoSize string `description:"音频文件大小,单位M"`
  54. ContentSub string `description:"内容前两个章节"`
  55. ReportCode string `description:"报告唯一编码"`
  56. ReportVersion int `description:"1:旧版,2:新版"`
  57. HasChapter int `description:"是否有章节 0-否 1-是"`
  58. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  59. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  60. MsgSendTime time.Time `description:"模版消息发送时间"`
  61. AdminId int `description:"创建者账号"`
  62. AdminRealName string `description:"创建者姓名"`
  63. ApproveTime time.Time `description:"审批时间"`
  64. ApproveId int `description:"审批ID"`
  65. DetailImgUrl string `description:"报告详情长图地址"`
  66. DetailPdfUrl string `description:"报告详情PDF地址"`
  67. DetailImgUrlMobile string `description:"报告详情长图地址-手机端"`
  68. DetailPdfUrlMobile string `description:"报告详情PDF地址-手机端"`
  69. ContentStruct string `description:"内容组件"`
  70. LastModifyAdminId int `description:"最后更新人ID"`
  71. LastModifyAdminName string `description:"最后更新人姓名"`
  72. ContentModifyTime time.Time `description:"内容更新时间"`
  73. Pv int `description:"pv"`
  74. Uv int `description:"uv"`
  75. HeadImg string `description:"报告头图地址"`
  76. EndImg string `description:"报告尾图地址"`
  77. CanvasColor string `description:"画布颜色"`
  78. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  79. HeadResourceId int `description:"版头资源ID"`
  80. EndResourceId int `description:"版尾资源ID"`
  81. ClassifyIdThird int `description:"三级分类id"`
  82. ClassifyNameThird string `description:"三级分类名称"`
  83. CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  84. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  85. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  86. ReportCreateTime time.Time `description:"报告时间创建时间"`
  87. InheritReportId int `description:"待继承的报告ID"`
  88. VoiceGenerateType int `description:"音频生成方式,0:系统生成,1:人工上传"`
  89. }
  90. func (m *Report) AfterFind(db *gorm.DB) (err error) {
  91. m.CreateTime = utils.GormDateStrToDateTimeStr(m.CreateTime)
  92. return
  93. }
  94. // ConvertTimeStr
  95. // @Description: 转成需要输出的格式
  96. // @receiver m
  97. func (m *Report) ConvertTimeStr() {
  98. m.CreateTime = utils.GormDateStrToDateTimeStr(m.CreateTime)
  99. return
  100. }
  101. type ReportList struct {
  102. Id int `gorm:"column:id;primaryKey;autoIncrement" description:"报告Id"`
  103. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  104. ClassifyIdFirst int `description:"一级分类id"`
  105. ClassifyNameFirst string `description:"一级分类名称"`
  106. ClassifyIdSecond int `description:"二级分类id"`
  107. ClassifyNameSecond string `description:"二级分类名称"`
  108. Title string `description:"标题"`
  109. Abstract string `description:"摘要"`
  110. Author string `description:"作者"`
  111. Frequency string `description:"频度"`
  112. CreateTime string `description:"创建时间"`
  113. ModifyTime string `description:"修改时间"`
  114. State int `description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
  115. PublishTime string `description:"发布时间"`
  116. PrePublishTime string `description:"预发布时间"`
  117. Stage int `description:"期数"`
  118. MsgIsSend int `description:"模板消息是否已发送,0:否,1:是"`
  119. Content string `description:"内容"`
  120. VideoUrl string `description:"音频文件URL"`
  121. VideoName string `description:"音频文件名称"`
  122. VideoPlaySeconds string `description:"音频播放时长"`
  123. ContentSub string `description:"内容前两个章节"`
  124. Pv int `description:"Pv"`
  125. Uv int `description:"Uv"`
  126. ReportCode string `description:"报告唯一编码"`
  127. ReportVersion int `description:"1:旧版,2:新版"`
  128. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  129. NeedThsMsg int `description:"是否需要推送客群消息 0-否 1-是"`
  130. HasChapter int `description:"是否有章节 0-否 1-是"`
  131. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  132. ChapterVideoList []*ReportChapterVideoList `gorm:"-" description:"章节音频列表"`
  133. OldReportId int `description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
  134. MsgSendTime string `description:"模版消息发送时间"`
  135. CanEdit bool `description:"是否可编辑"`
  136. HasAuth bool `description:"是否可操作"`
  137. Editor string `description:"编辑人"`
  138. AdminId int `description:"创建者账号"`
  139. AdminRealName string `description:"创建者姓名"`
  140. ApproveTime string `description:"审批时间"`
  141. DetailImgUrl string `description:"报告详情长图地址"`
  142. DetailPdfUrl string `description:"报告详情PDF地址"`
  143. DetailImgUrlMobile string `description:"报告详情长图地址-手机端"`
  144. DetailPdfUrlMobile string `description:"报告详情PDF地址-手机端"`
  145. CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  146. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  147. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  148. ReportCreateTime time.Time `description:"报告时间创建时间"`
  149. ContentStruct string `description:"内容组件"`
  150. LastModifyAdminId int `description:"最后更新人ID"`
  151. LastModifyAdminName string `description:"最后更新人姓名"`
  152. ContentModifyTime time.Time `description:"内容更新时间"`
  153. HeadImg string `description:"报告头图地址"`
  154. EndImg string `description:"报告尾图地址"`
  155. CanvasColor string `description:"画布颜色"`
  156. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  157. HeadResourceId int `description:"版头资源ID"`
  158. EndResourceId int `description:"版尾资源ID"`
  159. ClassifyIdThird int `description:"三级分类id"`
  160. ClassifyNameThird string `description:"三级分类名称"`
  161. InheritReportId int `description:"待继承的报告ID"`
  162. }
  163. func (m *ReportList) AfterFind(db *gorm.DB) (err error) {
  164. m.ModifyTime = utils.GormDateStrToDateTimeStr(m.ModifyTime)
  165. m.PublishTime = utils.GormDateStrToDateTimeStr(m.PublishTime)
  166. m.CreateTime = utils.GormDateStrToDateTimeStr(m.CreateTime)
  167. m.ApproveTime = utils.GormDateStrToDateTimeStr(m.ApproveTime)
  168. m.MsgSendTime = utils.GormDateStrToDateTimeStr(m.MsgSendTime)
  169. m.PrePublishTime = utils.GormDateStrToDateTimeStr(m.PrePublishTime)
  170. return
  171. }
  172. type ReportListResp struct {
  173. List []*ReportList
  174. Paging *paging.PagingItem `description:"分页数据"`
  175. }
  176. // GetReportListCountV1
  177. // @Description: 获取普通报告列表的报告数量
  178. // @author: Roc
  179. // @datetime 2024-05-30 15:14:43
  180. // @param condition string
  181. // @param pars []interface{}
  182. // @return count int
  183. // @return err error
  184. func GetReportListCountV1(condition string, pars []interface{}) (count int, err error) {
  185. o := global.DbMap[utils.DbNameReport]
  186. sql := `SELECT COUNT(DISTINCT a.id) AS count FROM report as a WHERE 1=1 `
  187. if condition != "" {
  188. sql += condition
  189. }
  190. var countNull sql2.NullInt64
  191. err = o.Raw(sql, pars...).Scan(&countNull).Error
  192. if err != nil {
  193. return
  194. }
  195. if countNull.Valid {
  196. count = int(countNull.Int64)
  197. }
  198. return
  199. }
  200. // GetReportListV1
  201. // @Description: 获取普通报告列表的数据
  202. // @author: Roc
  203. // @datetime 2024-05-30 15:14:25
  204. // @param condition string
  205. // @param pars []interface{}
  206. // @param startSize int
  207. // @param pageSize int
  208. // @return items []*ReportList
  209. // @return err error
  210. func GetReportListV1(condition string, pars []interface{}, startSize, pageSize int) (items []*ReportList, err error) {
  211. o := global.DbMap[utils.DbNameReport]
  212. sql := `SELECT * FROM report as a WHERE 1=1 `
  213. if condition != "" {
  214. sql += condition
  215. }
  216. // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
  217. sql += ` ORDER BY FIELD(state,3,1,4,5,6,2), modify_time DESC LIMIT ?,?`
  218. pars = append(pars, startSize, pageSize)
  219. err = o.Raw(sql, pars...).Find(&items).Error
  220. return
  221. }
  222. // GetReportListByCondition 获取报告列表
  223. func GetReportListByCondition(condition string, pars []interface{}, startSize, pageSize int) (items []*ReportList, err error) {
  224. o := global.DbMap[utils.DbNameReport]
  225. sql := `SELECT DISTINCT a.id, a.title, a.author, a.modify_time, a.publish_time,a.classify_id_first,
  226. a.classify_name_first,a.classify_id_second,a.classify_name_second,a.classify_id_third,
  227. a.classify_name_third,a.abstract,a.admin_id,a.admin_real_name,a.last_modify_admin_id,a.last_modify_admin_name FROM report as a WHERE 1=1 `
  228. if condition != "" {
  229. sql += condition
  230. }
  231. sql += ` LIMIT ?,?`
  232. pars = append(pars, startSize, pageSize)
  233. err = o.Raw(sql, pars...).Find(&items).Error
  234. return
  235. }
  236. type ReportPvUv struct {
  237. ReportId int
  238. PvTotal int
  239. UvTotal int
  240. }
  241. func GetReportPvUvByReportIdList(reportIdList []int) (items []ReportPvUv, err error) {
  242. num := len(reportIdList)
  243. if num <= 0 {
  244. return
  245. }
  246. o := global.DbMap[utils.DbNameReport]
  247. 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`
  248. err = o.Raw(sql, reportIdList).Find(&items).Error
  249. return
  250. }
  251. // GetReportListCountByGrant
  252. // @Description: 获取共享报告列表的报告数量
  253. // @author: Roc
  254. // @datetime 2024-05-30 15:14:01
  255. // @param condition string
  256. // @param pars []interface{}
  257. // @return count int
  258. // @return err error
  259. func GetReportListCountByGrant(condition string, pars []interface{}) (count int, err error) {
  260. o := global.DbMap[utils.DbNameReport]
  261. sql := `SELECT a.id FROM report as a
  262. JOIN report_grant b on a.id=b.report_id
  263. WHERE 1=1 `
  264. if condition != "" {
  265. sql += condition
  266. }
  267. sql += " GROUP BY a.id "
  268. sql = `SELECT COUNT(1) AS count FROM (` + sql + `) d`
  269. var countNull sql2.NullInt64
  270. err = o.Raw(sql, pars...).Scan(&countNull).Error
  271. if err != nil {
  272. return
  273. }
  274. if countNull.Valid {
  275. count = int(countNull.Int64)
  276. }
  277. return
  278. }
  279. // GetReportListByGrant
  280. // @Description: 获取共享报告列表的数据
  281. // @author: Roc
  282. // @datetime 2024-05-30 15:15:07
  283. // @param condition string
  284. // @param pars []interface{}
  285. // @param startSize int
  286. // @param pageSize int
  287. // @return items []*ReportList
  288. // @return err error
  289. func GetReportListByGrant(condition string, pars []interface{}, startSize, pageSize int) (items []*ReportList, err error) {
  290. o := global.DbMap[utils.DbNameReport]
  291. sql := `SELECT a.* FROM report as a JOIN report_grant b on a.id = b.report_id WHERE 1=1 `
  292. if condition != "" {
  293. sql += condition
  294. }
  295. // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
  296. sql += ` GROUP BY a.id ORDER BY
  297. CASE COALESCE(a.state,0)
  298. WHEN 3 THEN 1
  299. WHEN 1 THEN 2
  300. WHEN 4 THEN 3
  301. WHEN 5 THEN 4
  302. WHEN 6 THEN 5
  303. WHEN 2 THEN 6
  304. ELSE 7
  305. END, a.modify_time DESC LIMIT ?,?`
  306. pars = append(pars, startSize, pageSize)
  307. err = o.Raw(sql, pars...).Find(&items).Error
  308. return
  309. }
  310. func GetReportListCount(condition string, pars []interface{}) (count int, err error) {
  311. o := global.DbMap[utils.DbNameReport]
  312. sql := `SELECT COUNT(1) AS count FROM report WHERE 1=1 `
  313. if condition != "" {
  314. sql += condition
  315. }
  316. var countNull sql2.NullInt64
  317. err = o.Raw(sql, pars...).Scan(&countNull).Error
  318. if err != nil {
  319. return
  320. }
  321. if countNull.Valid {
  322. count = int(countNull.Int64)
  323. }
  324. return
  325. }
  326. //func GetReportList(condition string, pars []interface{}, startSize, pageSize int) (items []*ReportList, err error) {
  327. // o := global.DbMap[utils.DbNameReport]
  328. // sql := `SELECT *,
  329. // (SELECT COUNT(1) FROM report_view_record AS rvr WHERE rvr.report_id=report.id) AS pv,
  330. // (SELECT COUNT(DISTINCT user_id) FROM report_view_record AS rvr WHERE rvr.report_id=report.id) AS uv
  331. // FROM report WHERE 1=1 `
  332. // if condition != "" {
  333. // sql += condition
  334. // }
  335. // // 排序:1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过
  336. // sql += `ORDER BY FIELD(state,3,1,4,5,6,2), modify_time DESC LIMIT ?,?`
  337. // err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  338. // return
  339. //}
  340. // PublishReport 发布报告
  341. //func PublishReport(reportIds []int) (err error) {
  342. // if len(reportIds) == 0 {
  343. // return
  344. // }
  345. // o := global.DbMap[utils.DbNameReport]
  346. // sql := `UPDATE report SET state=2,publish_time=now(),modify_time=NOW() WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  347. // err = o.Raw(sql).Error
  348. // return
  349. //}
  350. // PublishCancelReport 取消发布报告
  351. func PublishCancelReport(reportId, state int, publishTimeNullFlag bool, lastModifyAdminId int, lastModifyAdminName string) (err error) {
  352. o := global.DbMap[utils.DbNameReport]
  353. var sql string
  354. if publishTimeNullFlag {
  355. 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 =?`
  356. } else {
  357. 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 =?`
  358. }
  359. err = o.Exec(sql, state, lastModifyAdminId, lastModifyAdminName, reportId).Error
  360. return
  361. }
  362. // 删除报告
  363. func DeleteReport(reportIds int) (err error) {
  364. o := global.DbMap[utils.DbNameReport]
  365. sql := ` DELETE FROM report WHERE id =? `
  366. err = o.Exec(sql, reportIds).Error
  367. return
  368. }
  369. type ReportDetail struct {
  370. Id int `gorm:"column:id;primaryKey;autoIncrement" description:"报告Id"`
  371. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  372. ClassifyIdFirst int `description:"一级分类id"`
  373. ClassifyNameFirst string `description:"一级分类名称"`
  374. ClassifyIdSecond int `description:"二级分类id"`
  375. ClassifyNameSecond string `description:"二级分类名称"`
  376. Title string `description:"标题"`
  377. Abstract string `description:"摘要"`
  378. Author string `description:"作者"`
  379. Frequency string `description:"频度"`
  380. CreateTime string `description:"创建时间"`
  381. ModifyTime string `description:"修改时间"`
  382. State int `description:"1:未发布,2:已发布"`
  383. PublishTime string `description:"发布时间"`
  384. PrePublishTime string `description:"预发布时间"`
  385. Stage int `description:"期数"`
  386. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  387. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  388. Content string `description:"内容"`
  389. VideoUrl string `description:"音频文件URL"`
  390. VideoName string `description:"音频文件名称"`
  391. VideoPlaySeconds string `description:"音频播放时长"`
  392. ContentSub string `description:"内容前两个章节"`
  393. ThsMsgIsSend int `description:"客户群消息是否已发送,0:否,1:是"`
  394. HasChapter int `description:"是否有章节 0-否 1-是"`
  395. ChapterType string `description:"章节类型 day-晨报 week-周报"`
  396. AdminId int `description:"创建者账号"`
  397. AdminRealName string `description:"创建者姓名"`
  398. ReportCode string `description:"报告唯一编码"`
  399. // eta1.8.3(研报改版)相关内容
  400. ContentStruct string `description:"内容组件"`
  401. LastModifyAdminId int `description:"最后更新人ID"`
  402. LastModifyAdminName string `description:"最后更新人姓名"`
  403. ContentModifyTime time.Time `description:"内容更新时间"`
  404. Pv int `description:"pv"`
  405. Uv int `description:"uv"`
  406. HeadImg string `description:"报告头图地址"`
  407. EndImg string `description:"报告尾图地址"`
  408. HeadStyle string `description:"版头样式"`
  409. EndStyle string `description:"版尾样式"`
  410. CanvasColor string `description:"画布颜色"`
  411. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  412. HeadResourceId int `description:"版头资源ID"`
  413. EndResourceId int `description:"版尾资源ID"`
  414. ClassifyIdThird int `description:"三级分类id"`
  415. ClassifyNameThird string `description:"三级分类名称"`
  416. CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  417. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  418. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  419. ReportCreateTime time.Time `description:"报告时间创建时间"`
  420. }
  421. func (m *ReportDetail) AfterFind(db *gorm.DB) (err error) {
  422. m.CreateTime = utils.GormDateStrToDateTimeStr(m.CreateTime)
  423. m.ModifyTime = utils.GormDateStrToDateTimeStr(m.ModifyTime)
  424. m.PublishTime = utils.GormDateStrToDateTimeStr(m.PublishTime)
  425. m.PrePublishTime = utils.GormDateStrToDateTimeStr(m.PrePublishTime)
  426. return
  427. }
  428. func (m *ReportDetail) ConvertTimeStr() {
  429. m.CreateTime = utils.GormDateStrToDateTimeStr(m.CreateTime)
  430. m.ModifyTime = utils.GormDateStrToDateTimeStr(m.ModifyTime)
  431. m.PublishTime = utils.GormDateStrToDateTimeStr(m.PublishTime)
  432. m.PrePublishTime = utils.GormDateStrToDateTimeStr(m.PrePublishTime)
  433. return
  434. }
  435. func GetReportById(reportId int) (item *ReportDetail, err error) {
  436. o := global.DbMap[utils.DbNameReport]
  437. sql := `SELECT * FROM report WHERE id=?`
  438. err = o.Raw(sql, reportId).First(&item).Error
  439. if err != nil {
  440. return
  441. }
  442. item.ConvertTimeStr()
  443. return
  444. }
  445. func GetReportByIds(reportIds string) (list []*ReportDetail, err error) {
  446. o := global.DbMap[utils.DbNameReport]
  447. sql := `SELECT * FROM report WHERE id in ` + reportIds
  448. err = o.Raw(sql).Find(&list).Error
  449. return
  450. }
  451. // GetSimpleReportByIds 根据报告ID查询报告基本信息
  452. func GetSimpleReportByIds(reportIds []int) (list []*Report, err error) {
  453. if len(reportIds) == 0 {
  454. return
  455. }
  456. o := global.DbMap[utils.DbNameReport]
  457. sql := `SELECT id, title, report_code FROM report WHERE id IN (` + utils.GetOrmInReplace(len(reportIds)) + `)`
  458. err = o.Raw(sql, reportIds).Find(&list).Error
  459. return
  460. }
  461. // GetReportStage
  462. // @Description: 获取报告的最大期数(每一年的最大期数)
  463. // @author: Roc
  464. // @datetime 2024-06-03 17:44:14
  465. // @param classifyIdFirst int
  466. // @param classifyIdSecond int
  467. // @param classifyIdThird int
  468. // @return count int
  469. // @return err error
  470. func GetReportStage(classifyIdFirst, classifyIdSecond, classifyIdThird int) (count int, err error) {
  471. o := global.DbMap[utils.DbNameReport]
  472. classifyId := classifyIdThird
  473. if classifyId <= 0 {
  474. classifyId = classifyIdSecond
  475. }
  476. if classifyId <= 0 {
  477. classifyId = classifyIdFirst
  478. }
  479. if classifyId <= 0 {
  480. err = errors.New("错误的分类id")
  481. return
  482. }
  483. yearStart := time.Date(time.Now().Local().Year(), 1, 1, 0, 0, 0, 0, time.Local)
  484. sql := `SELECT MAX(stage) AS max_stage FROM report WHERE create_time > ? `
  485. if classifyIdThird > 0 {
  486. sql += " AND classify_id_third = ? "
  487. } else if classifyIdSecond > 0 {
  488. sql += " AND classify_id_second = ? "
  489. } else {
  490. sql += " AND classify_id_first = ? "
  491. }
  492. var maxNull sql2.NullInt64
  493. err = o.Raw(sql, yearStart, classifyId).Scan(&maxNull).Error
  494. if err != nil {
  495. return
  496. }
  497. if maxNull.Valid {
  498. count = int(maxNull.Int64)
  499. }
  500. return
  501. }
  502. // GetReportStageEdit
  503. // @Description: 获取报告的最大期数(每一年的最大期数)
  504. // @author: Roc
  505. // @datetime 2024-06-04 13:50:34
  506. // @param classifyIdFirst int
  507. // @param classifyIdSecond int
  508. // @param classifyIdThird int
  509. // @param reportId int
  510. // @return count int
  511. // @return err error
  512. //func GetReportStageEdit(classifyIdFirst, classifyIdSecond, classifyIdThird, reportId int) (count int, err error) {
  513. // classifyId := classifyIdThird
  514. // if classifyId <= 0 {
  515. // classifyId = classifyIdSecond
  516. // }
  517. // if classifyId <= 0 {
  518. // classifyId = classifyIdFirst
  519. // }
  520. // if classifyId <= 0 {
  521. // err = errors.New("错误的分类id")
  522. // return
  523. // }
  524. // yearStart := time.Date(time.Now().Local().Year(), 1, 1, 0, 0, 0, 0, time.Local)
  525. //
  526. // sql := `SELECT MAX(stage) AS max_stage FROM report WHERE create_time > ? AND id<>? `
  527. // if classifyIdThird > 0 {
  528. // sql += " AND classify_id_third = ? "
  529. // } else if classifyIdSecond > 0 {
  530. // sql += " AND classify_id_second = ? "
  531. // } else {
  532. // sql = " AND classify_id_first = ? "
  533. // }
  534. //
  535. // o := global.DbMap[utils.DbNameReport]
  536. // o.Raw(sql, yearStart, reportId, classifyId).QueryRow(&count)
  537. //
  538. // return
  539. //}
  540. type PublishReq struct {
  541. ReportIds string `description:"报告id,多个用英文逗号隔开"`
  542. ReportUrl string `description:"报告Url"`
  543. }
  544. type PublishCancelReq struct {
  545. ReportIds int `description:"报告id"`
  546. }
  547. type DeleteReq struct {
  548. ReportIds int `description:"报告id"`
  549. }
  550. type AddReq struct {
  551. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  552. ClassifyIdFirst int `description:"一级分类id"`
  553. ClassifyNameFirst string `description:"一级分类名称"`
  554. ClassifyIdSecond int `description:"二级分类id"`
  555. ClassifyNameSecond string `description:"二级分类名称"`
  556. ClassifyIdThird int `description:"三级分类id"`
  557. ClassifyNameThird string `description:"三级分类名称"`
  558. Title string `description:"标题"`
  559. Abstract string `description:"摘要"`
  560. Author string `description:"作者"`
  561. Frequency string `description:"频度"`
  562. State int `description:"状态:1:未发布,2:已发布"`
  563. Content string `description:"内容"`
  564. CreateTime string `description:"创建时间"`
  565. ReportVersion int `description:"1:旧版,2:新版"`
  566. ContentStruct string `description:"内容组件"`
  567. HeadImg string `description:"报告头图地址"`
  568. EndImg string `description:"报告尾图地址"`
  569. CanvasColor string `description:"画布颜色"`
  570. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  571. HeadResourceId int `description:"版头资源ID"`
  572. EndResourceId int `description:"版尾资源ID"`
  573. CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  574. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  575. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  576. InheritReportId int `description:"待继承的报告ID"`
  577. GrantAdminIdList []int `description:"授权用户id列表"`
  578. }
  579. type PrePublishReq struct {
  580. ReportId int `description:"报告id"`
  581. PrePublishTime string `description:"预发布时间"`
  582. PreMsgSend int `description:"定时发布成功后是否立即推送模版消息:0否,1是"`
  583. ReportUrl string `description:"报告Url"`
  584. }
  585. type AddResp struct {
  586. ReportId int64 `description:"报告id"`
  587. ReportCode string `description:"报告code"`
  588. }
  589. func AddReport(item *Report) (lastId int64, err error) {
  590. o := global.DbMap[utils.DbNameReport]
  591. err = o.Create(item).Error
  592. if err != nil {
  593. return
  594. }
  595. lastId = int64(item.Id)
  596. return
  597. }
  598. type EditReq struct {
  599. ReportId int64 `description:"报告id"`
  600. ClassifyIdFirst int `description:"一级分类id"`
  601. ClassifyNameFirst string `description:"一级分类名称"`
  602. ClassifyIdSecond int `description:"二级分类id"`
  603. ClassifyNameSecond string `description:"二级分类名称"`
  604. ClassifyIdThird int `description:"三级分类id"`
  605. ClassifyNameThird string `description:"三级分类名称"`
  606. Title string `description:"标题"`
  607. Abstract string `description:"摘要"`
  608. Author string `description:"作者"`
  609. Frequency string `description:"频度"`
  610. State int `description:"状态:1:未发布,2:已发布"`
  611. Content string `description:"内容"`
  612. CreateTime string `description:"创建时间"`
  613. ContentStruct string `description:"内容组件"`
  614. HeadImg string `description:"报告头图地址"`
  615. EndImg string `description:"报告尾图地址"`
  616. CanvasColor string `description:"画布颜色"`
  617. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  618. HeadResourceId int `description:"版头资源ID"`
  619. EndResourceId int `description:"版尾资源ID"`
  620. //CollaborateType int8 `description:"协作方式,1:个人,2:多人协作。默认:1"`
  621. //ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  622. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  623. GrantAdminIdList []int `description:"授权用户id列表"`
  624. }
  625. type EditResp struct {
  626. ReportId int64 `description:"报告id"`
  627. ReportCode string `description:"报告code"`
  628. }
  629. func EditReport(item *Report, reportId int64) (err error) {
  630. o := global.DbMap[utils.DbNameReport]
  631. sql := `UPDATE report
  632. SET
  633. classify_id_first =?,
  634. classify_name_first = ?,
  635. classify_id_second = ?,
  636. classify_name_second = ?,
  637. title = ?,
  638. abstract = ?,
  639. author = ?,
  640. frequency = ?,
  641. state = ?,
  642. content = ?,
  643. content_sub = ?,
  644. stage =?,
  645. create_time = ?,
  646. modify_time = ?
  647. WHERE id = ? `
  648. err = o.Exec(sql, item.ClassifyIdFirst, item.ClassifyNameFirst, item.ClassifyIdSecond, item.ClassifyNameSecond, item.Title,
  649. item.Abstract, item.Author, item.Frequency, item.State, item.Content, item.ContentSub, item.Stage, item.CreateTime, time.Now(), reportId).Error
  650. return
  651. }
  652. func (m *Report) Update(cols []string) (err error) {
  653. o := global.DbMap[utils.DbNameReport]
  654. err = o.Select(cols).Updates(m).Error
  655. return
  656. }
  657. type ReportDetailReq struct {
  658. ReportId int `description:"报告id"`
  659. }
  660. type ClassifyIdDetailReq struct {
  661. ClassifyIdFirst int `description:"报告一级分类id"`
  662. ClassifyIdSecond int `description:"报告二级分类id"`
  663. }
  664. func GetReportDetailByClassifyId(classifyIdFirst, classifyIdSecond int) (item *Report, err error) {
  665. o := global.DbMap[utils.DbNameReport]
  666. sql := ` SELECT * FROM report WHERE 1=1 `
  667. if classifyIdSecond > 0 {
  668. sql = sql + ` AND classify_id_second=? ORDER BY stage DESC LIMIT 1`
  669. err = o.Raw(sql, classifyIdSecond).First(&item).Error
  670. } else {
  671. sql = sql + ` AND classify_id_first=? ORDER BY stage DESC LIMIT 1`
  672. err = o.Raw(sql, classifyIdFirst).First(&item).Error
  673. }
  674. if err != nil {
  675. return
  676. }
  677. item.ConvertTimeStr()
  678. return
  679. }
  680. type SendTemplateMsgReq struct {
  681. ReportId int `description:"报告id"`
  682. }
  683. // SendTemplateMsgResp
  684. // @Description: 报告推送返回结构体
  685. type SendTemplateMsgResp struct {
  686. ReportId int `description:"报告id"`
  687. MsgSendTime string `description:"报告推送时间"`
  688. }
  689. func ModifyReportMsgIsSend(reportId int) (err error) {
  690. o := global.DbMap[utils.DbNameReport]
  691. report, err := GetReportById(reportId)
  692. if err != nil {
  693. return
  694. }
  695. if report.MsgIsSend == 0 {
  696. sql := `UPDATE report SET msg_is_send = 1, msg_send_time=NOW() WHERE id = ? `
  697. err = o.Exec(sql, reportId).Error
  698. }
  699. return
  700. }
  701. func ModifyReportVideo(reportId int, videoUrl, videoName, videoSize string, playSeconds float64) (err error) {
  702. o := global.DbMap[utils.DbNameReport]
  703. sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? `
  704. err = o.Exec(sql, videoUrl, videoName, playSeconds, videoSize, reportId).Error
  705. return
  706. }
  707. // ModifyReportVideoByNoVideo
  708. // @Description: 修改无音频的报告音频信息
  709. // @author: Roc
  710. // @datetime 2024-07-25 18:03:05
  711. // @param reportId int
  712. // @param videoUrl string
  713. // @param videoName string
  714. // @param videoSize string
  715. // @param playSeconds float64
  716. // @return err error
  717. func ModifyReportVideoByNoVideo(reportId int, videoUrl, videoName, videoSize string, playSeconds float64) (err error) {
  718. o := global.DbMap[utils.DbNameReport]
  719. sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? AND video_url=""`
  720. err = o.Exec(sql, videoUrl, videoName, playSeconds, videoSize, reportId).Error
  721. return
  722. }
  723. type ReportItem struct {
  724. Id int `gorm:"column:id;primaryKey;autoIncrement" description:"报告Id"`
  725. AddType int `description:"新增方式:1:新增报告,2:继承报告"`
  726. ClassifyIdFirst int `description:"一级分类id"`
  727. ClassifyNameFirst string `description:"一级分类名称"`
  728. ClassifyIdSecond int `description:"二级分类id"`
  729. ClassifyNameSecond string `description:"二级分类名称"`
  730. Title string `description:"标题"`
  731. Abstract string `description:"摘要"`
  732. Author string `description:"作者"`
  733. Frequency string `description:"频度"`
  734. CreateTime time.Time `description:"创建时间"`
  735. ModifyTime time.Time `description:"修改时间"`
  736. State int `description:"1:未发布,2:已发布"`
  737. PublishTime time.Time `description:"发布时间"`
  738. Stage int `description:"期数"`
  739. MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
  740. Content string `description:"内容"`
  741. VideoUrl string `description:"音频文件URL"`
  742. VideoName string `description:"音频文件名称"`
  743. VideoPlaySeconds string `description:"音频播放时长"`
  744. ContentSub string `description:"内容前两个章节"`
  745. }
  746. //func GetReportItemById(reportId int) (item *ReportItem, err error) {
  747. // o := global.DbMap[utils.DbNameReport]
  748. // sql := `SELECT * FROM report WHERE id=?`
  749. // err = o.Raw(sql, reportId).First(&item).Error
  750. // return
  751. //}
  752. type SaveReportContent struct {
  753. Content string `description:"内容"`
  754. ReportId int `description:"报告id"`
  755. NoChange int `description:"内容是否未改变:1:内容未改变"`
  756. // 以下是智能研报相关
  757. ContentStruct string `description:"内容组件"`
  758. HeadImg string `description:"报告头图地址"`
  759. EndImg string `description:"报告尾图地址"`
  760. CanvasColor string `description:"画布颜色"`
  761. NeedSplice int `description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
  762. HeadResourceId int `description:"版头资源ID"`
  763. EndResourceId int `description:"版尾资源ID"`
  764. }
  765. //func EditReportContent(reportId int, content, contentSub string) (err error) {
  766. // o := global.DbMap[utils.DbNameReport]
  767. // sql := ` UPDATE report SET content=?,content_sub=?,modify_time=NOW() WHERE id=? `
  768. // err = o.Exec(sql, content, contentSub, reportId).Error
  769. // return
  770. //}
  771. func AddReportSaveLog(reportId, adminId int, content, contentSub, contentStruct, canvasColor, adminName string, headResourceId, endResourceId int) (err error) {
  772. o := global.DbMap[utils.DbNameReport]
  773. 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 (?,?,?,?,?,?,?,?,?) `
  774. err = o.Exec(sql, reportId, content, contentSub, contentStruct, canvasColor, headResourceId, endResourceId, adminId, adminName).Error
  775. return
  776. }
  777. func MultiAddReportChaptersSaveLog(items []*ReportChapter, adminId int, adminRealName string) (err error) {
  778. o := global.DbMap[utils.DbNameReport]
  779. sql := `INSERT INTO report_save_log(report_id, report_chapter_id, content, content_sub,content_struct,admin_id, admin_name) VALUES (?,?,?,?,?,?,?)`
  780. for _, v := range items {
  781. err = o.Exec(sql, v.ReportId, v.ReportChapterId, v.Content, v.ContentSub, v.ContentStruct, adminId, adminRealName).Error
  782. if err != nil {
  783. return
  784. }
  785. }
  786. return
  787. }
  788. type SaveReportContentResp struct {
  789. ReportId int `description:"报告id"`
  790. }
  791. func ModifyReportCode(reportId int64, reportCode string) (err error) {
  792. o := global.DbMap[utils.DbNameReport]
  793. sql := `UPDATE report SET report_code=? WHERE id=? `
  794. err = o.Exec(sql, reportCode, reportId).Error
  795. return
  796. }
  797. func ModifyReportThsMsgIsSend(item *ReportDetail) (err error) {
  798. o := global.DbMap[utils.DbNameReport]
  799. if item.ThsMsgIsSend == 0 {
  800. sql := `UPDATE report SET ths_msg_is_send = 1 WHERE id = ? `
  801. err = o.Exec(sql, item.Id).Error
  802. }
  803. return
  804. }
  805. type ThsSendTemplateMsgReq struct {
  806. ReportId []int `description:"报告id"`
  807. }
  808. type PublishDayWeekReportReq struct {
  809. ReportId int `description:"报告ID"`
  810. }
  811. // SaveDayWeekReportReq 新增晨报周报请求体
  812. type SaveDayWeekReportReq struct {
  813. ReportId int `description:"报告ID"`
  814. Title string `description:"标题"`
  815. ReportType string `description:"一级分类ID"`
  816. Author string `description:"作者"`
  817. CreateTime string `description:"创建时间"`
  818. }
  819. // GetDayWeekReportStage 获取晨报周报期数
  820. //func GetDayWeekReportStage(classifyIdFirst int, yearStart time.Time) (count int, err error) {
  821. // o := global.DbMap[utils.DbNameReport]
  822. // sql := " SELECT MAX(stage) AS max_stage FROM report WHERE classify_id_first = ? AND create_time > ? "
  823. // o.Raw(sql, classifyIdFirst, yearStart).QueryRow(&count)
  824. // return
  825. //}
  826. // GetReportByReportId 主键获取报告
  827. func GetReportByReportId(reportId int) (item *Report, err error) {
  828. o := global.DbMap[utils.DbNameReport]
  829. sql := `SELECT * FROM report WHERE id = ?`
  830. err = o.Raw(sql, reportId).First(&item).Error
  831. if err != nil {
  832. return
  833. }
  834. item.ConvertTimeStr()
  835. return
  836. }
  837. // GetReportByOldReportId 根据老报告id主键获取报告
  838. func GetReportByOldReportId(reportId int) (item *Report, err error) {
  839. o := global.DbMap[utils.DbNameReport]
  840. sql := `SELECT * FROM report WHERE old_report_id = ?`
  841. err = o.Raw(sql, reportId).First(&item).Error
  842. if err != nil {
  843. return
  844. }
  845. item.ConvertTimeStr()
  846. return
  847. }
  848. // DeleteDayWeekReportAndChapter 删除晨周报及章节
  849. func DeleteDayWeekReportAndChapter(reportId int) (err error) {
  850. to := global.DbMap[utils.DbNameReport].Begin()
  851. defer func() {
  852. if err != nil {
  853. _ = to.Rollback()
  854. } else {
  855. _ = to.Commit()
  856. }
  857. }()
  858. sql := ` DELETE FROM report WHERE id = ? LIMIT 1 `
  859. if err = to.Exec(sql, reportId).Error; err != nil {
  860. return
  861. }
  862. sql = ` DELETE FROM report_chapter WHERE report_id = ? `
  863. if err = to.Exec(sql, reportId).Error; err != nil {
  864. return
  865. }
  866. return
  867. }
  868. // UpdateReport 更新报告
  869. func (reportInfo *Report) UpdateReport(cols []string) (err error) {
  870. err = global.DbMap[utils.DbNameReport].Select(cols).Updates(reportInfo).Error
  871. return
  872. }
  873. // ReportDetailView
  874. // @Description: 晨周报详情
  875. type ReportDetailView struct {
  876. *ReportDetail
  877. ChapterList []*ReportChapter
  878. GrandAdminList []ReportDetailViewAdmin
  879. PermissionList []ReportDetailViewPermission
  880. }
  881. // ReportDetailViewAdmin
  882. // @Description: 报告里面的授权人
  883. type ReportDetailViewAdmin struct {
  884. AdminId int
  885. AdminName string
  886. }
  887. // ReportDetailViewPermission
  888. // @Description: 报告分类关联的品种权限
  889. type ReportDetailViewPermission struct {
  890. PermissionId int
  891. PermissionName string
  892. }
  893. //func GetUnPublishDayReport(startTime time.Time, endTime time.Time) (item *Report, err error) {
  894. // o := global.DbMap[utils.DbNameReport]
  895. // sql := ` SELECT
  896. // *
  897. // FROM
  898. // report AS a
  899. // WHERE
  900. // a.has_chapter = 1
  901. // AND a.chapter_type = "day"
  902. // AND a.state = 1
  903. // AND (
  904. // a.create_time BETWEEN ? AND ?
  905. // )
  906. // ORDER BY
  907. // a.create_time DESC
  908. // LIMIT 1 `
  909. // err = o.Raw(sql, startTime, endTime).First(&item).Error
  910. // return
  911. //}
  912. type ElasticReportDetail struct {
  913. ReportId int `description:"报告ID"`
  914. ReportChapterId int `description:"报告章节ID"`
  915. Title string `description:"标题"`
  916. Abstract string `description:"摘要"`
  917. BodyContent string `description:"内容"`
  918. PublishTime string `description:"发布时间"`
  919. PublishState int `description:"发布状态 1-未发布 2-已发布"`
  920. IsPublicPublish int8 `description:"是否公开发布,1:是,2:否"`
  921. Author string `description:"作者"`
  922. ClassifyIdFirst int `description:"一级分类ID"`
  923. ClassifyNameFirst string `description:"一级分类名称"`
  924. ClassifyIdSecond int `description:"二级分类ID"`
  925. ClassifyNameSecond string `description:"二级分类名称"`
  926. ClassifyId int `description:"最小单元的分类ID"`
  927. ClassifyName string `description:"最小单元的分类名称"`
  928. Categories string `description:"关联的品种名称(包括品种别名)"`
  929. StageStr string `description:"报告期数"`
  930. }
  931. // GetLastPublishDayWeekReport 获取上一篇已发布的晨周报
  932. //func GetLastPublishDayWeekReport(chapterType string) (item *Report, err error) {
  933. // o := global.DbMap[utils.DbNameReport]
  934. // sql := ` SELECT * FROM report WHERE has_chapter = 1 AND chapter_type = ? AND state = 2 ORDER BY publish_time DESC LIMIT 1 `
  935. // err = o.Raw(sql, chapterType).First(&item).Error
  936. //
  937. // return
  938. //}
  939. // GetNewReportExist
  940. //func GetNewReportExist(oldReportId int) (item *Report, err error) {
  941. // o := global.DbMap[utils.DbNameReport]
  942. // sql := ` SELECT id FROM report WHERE old_report_id = ? LIMIT 1 `
  943. // err = o.Raw(sql, oldReportId).First(&item).Error
  944. // return
  945. //}
  946. // PublishReportAndChapter 发布报告及章节
  947. func PublishReportAndChapter(reportInfo *Report, isPublishReport bool, cols []string) (err error) {
  948. to := global.DbMap[utils.DbNameReport].Begin()
  949. defer func() {
  950. if err != nil {
  951. _ = to.Rollback()
  952. } else {
  953. _ = to.Commit()
  954. }
  955. }()
  956. // 更新报告
  957. if isPublishReport {
  958. err = to.Select(cols).Updates(reportInfo).Error
  959. if err != nil {
  960. return
  961. }
  962. }
  963. // 发布该报告的所有章节
  964. sql := ` UPDATE report_chapter SET publish_state = 2, publish_time = ? WHERE report_id = ? `
  965. err = to.Exec(sql, reportInfo.PublishTime, reportInfo.Id).Error
  966. // 发布章节
  967. //if len(publishIds) > 0 {
  968. // sql := ` UPDATE report_chapter SET publish_state = 2, publish_time = ? WHERE report_id = ? AND report_chapter_id IN (` + utils.GetOrmInReplace(len(publishIds)) + `) `
  969. // err = to.Raw(sql, reportInfo.PublishTime, reportInfo.Id, publishIds).Error
  970. //}
  971. //if len(unPublishIds) > 0 {
  972. // sql := ` UPDATE report_chapter SET publish_state = 1, publish_time = NULL, is_edit = 0 WHERE report_id = ? AND report_chapter_id IN (` + utils.GetOrmInReplace(len(unPublishIds)) + `) `
  973. // err = to.Raw(sql, reportInfo.Id, unPublishIds).Error
  974. //}
  975. return
  976. }
  977. //func GetSyncEmptyVideoReport() (list []*Report, err error) {
  978. // o := global.DbMap[utils.DbNameReport]
  979. // sql := ` SELECT id FROM report WHERE old_report_id > 0 AND state = 2 AND chapter_type = "" AND (video_size = "" OR video_play_seconds = "")
  980. //UNION ALL
  981. //SELECT DISTINCT report_id FROM report_chapter WHERE publish_state = 2 AND (video_size = "" OR video_play_seconds = "") `
  982. // err = o.Raw(sql).Find(&list).Error
  983. // return
  984. //}
  985. // PublishReportById 发布报告
  986. func PublishReportById(reportId int, publishTime time.Time, lastModifyAdminId int, lastModifyAdminName string) (err error) {
  987. o := global.DbMap[utils.DbNameReport]
  988. 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 = ? `
  989. err = o.Exec(sql, publishTime, lastModifyAdminId, lastModifyAdminName, reportId).Error
  990. return
  991. }
  992. // ResetReportById 重置报告状态
  993. func ResetReportById(reportId, state int, lastModifyAdminId int, lastModifyAdminName string) (err error) {
  994. o := global.DbMap[utils.DbNameReport]
  995. 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 = ?`
  996. err = o.Exec(sql, state, lastModifyAdminId, lastModifyAdminName, reportId).Error
  997. return
  998. }
  999. // GetCommentReportByReportId 查询有留言的报告列表
  1000. //func GetCommentReportByReportId(condition string, pars []interface{}, startSize, pageSize int) (list []*Report, err error) {
  1001. // o := global.DbMap[utils.DbNameReport]
  1002. // sql := `SELECT
  1003. // id,
  1004. // create_time,
  1005. // title,
  1006. // classify_name_first,
  1007. // classify_id_first,
  1008. // classify_name_second,
  1009. // classify_id_second,
  1010. // state,
  1011. //IF
  1012. // ( publish_time, publish_time, create_time ) AS publish_time
  1013. //FROM
  1014. // report
  1015. //WHERE
  1016. // 1=1
  1017. // `
  1018. // if condition != "" {
  1019. // sql += condition
  1020. // }
  1021. // sql += ` ORDER BY publish_time DESC , title ASC LIMIT ?,?`
  1022. // pars = append(pars, startSize, pageSize)
  1023. // err = o.Raw(sql, pars...).Find(&list).Error
  1024. // return
  1025. //}
  1026. // GetCommentReportByReportIdOrderBy 查询有留言的报告列表(指定排序)
  1027. //func GetCommentReportByReportIdOrderBy(condition string, pars []interface{}, startSize, pageSize int, orderBy string) (list []*Report, err error) {
  1028. // o := global.DbMap[utils.DbNameReport]
  1029. // sql := `SELECT
  1030. // id,
  1031. // create_time,
  1032. // title,
  1033. // classify_name_first,
  1034. // classify_id_first,
  1035. // classify_name_second,
  1036. // classify_id_second,
  1037. // state,
  1038. //IF
  1039. // ( publish_time, publish_time, create_time ) AS publish_time
  1040. //FROM
  1041. // report
  1042. //WHERE
  1043. // 1=1
  1044. // `
  1045. // if condition != "" {
  1046. // sql += condition
  1047. // }
  1048. // if orderBy == `` {
  1049. // sql += ` ORDER BY publish_time DESC , title ASC `
  1050. // } else {
  1051. // sql += orderBy
  1052. // }
  1053. // sql += ` LIMIT ?,? `
  1054. // pars = append(pars, startSize, pageSize)
  1055. // err = o.Raw(sql, pars...).Find(&list).Error
  1056. // return
  1057. //}
  1058. // GetCommentReportTotalByReportId 查询有留言的报告列表总数
  1059. //func GetCommentReportTotalByReportId(condition string, pars []interface{}) (total int64, err error) {
  1060. // o := global.DbMap[utils.DbNameReport]
  1061. // sql := `SELECT count(*)
  1062. // FROM report WHERE 1=1`
  1063. // if condition != "" {
  1064. // sql += condition
  1065. // }
  1066. // err = o.Raw(sql, pars...).QueryRow(&total)
  1067. // return
  1068. //}
  1069. // LikeReportItem 点赞相关的报告列表
  1070. type LikeReportItem struct {
  1071. ReportId int `description:"报告Id"`
  1072. ReportChapterId int `description:"报告章节Id"`
  1073. ClassifyIdFirst int `description:"一级分类id"`
  1074. ClassifyNameFirst string `description:"一级分类名称"`
  1075. ClassifyIdSecond int `description:"二级分类id"`
  1076. ClassifyNameSecond string `description:"二级分类名称"`
  1077. ReportChapterTypeId int `description:"章节类型"`
  1078. ReportChapterTypeName string `description:"品种名称"`
  1079. PublishTime time.Time `description:"发布时间" `
  1080. Title string `description:"标题"`
  1081. }
  1082. // GetLikeReportByReportIdReportChapterId 获取有被点赞的报告列表
  1083. //func GetLikeReportByReportIdReportChapterId(reportIds string, chapterIds string, orderStr string, startSize, pageSize int) (list []*LikeReportItem, err error) {
  1084. // o := global.DbMap[utils.DbNameReport]
  1085. // sql := `( SELECT
  1086. //id AS report_id,
  1087. //0 AS report_chapter_id,
  1088. //classify_id_first,
  1089. //classify_id_second,
  1090. //classify_name_first,
  1091. //classify_name_second,
  1092. //0 as report_chapter_type_id,
  1093. //"" as report_chapter_type_name,
  1094. //publish_time,
  1095. //title
  1096. //FROM
  1097. // report
  1098. //WHERE
  1099. // classify_name_first != "晨报"
  1100. // AND classify_name_first != "周报"
  1101. // AND id in (` + reportIds + `)
  1102. // )
  1103. //UNION
  1104. //
  1105. //( SELECT
  1106. //report_id,
  1107. //report_chapter_id,
  1108. //classify_id_first,
  1109. //0 as classify_id_second,
  1110. //classify_name_first,
  1111. //null as classify_name_second,
  1112. //type_id as report_chapter_type_id,
  1113. //type_name as report_chapter_type_name,
  1114. //publish_time,
  1115. //title
  1116. //FROM
  1117. // report_chapter
  1118. //WHERE
  1119. // report_chapter_id in (` + chapterIds + `)
  1120. // )`
  1121. // if orderStr != "" {
  1122. // sql += ` ORDER BY FIELD(CONCAT(report_id, "-",report_chapter_id),` + orderStr + `)`
  1123. // } else {
  1124. // sql += ` ORDER BY publish_time DESC, report_id Desc`
  1125. // }
  1126. // sql += ` LIMIT ?,?`
  1127. // err = o.Raw(sql, startSize, pageSize).QueryRows(&list)
  1128. // return
  1129. //}
  1130. // GetLikeReportTotalByReportIdReportChapterId 获取有被点赞的报告列表总数
  1131. //func GetLikeReportTotalByReportIdReportChapterId(reportIds string, chapterIds string) (total int64, err error) {
  1132. // o := global.DbMap[utils.DbNameReport]
  1133. // sql := `select count(*) from (( SELECT
  1134. //id AS report_id,
  1135. //0 AS report_chapter_id,
  1136. //classify_id_first,
  1137. //classify_id_second,
  1138. //classify_name_first,
  1139. //classify_name_second,
  1140. //0 as report_chapter_type_id,
  1141. //publish_time,
  1142. //title
  1143. //FROM
  1144. // report
  1145. //WHERE
  1146. // classify_name_first != "晨报"
  1147. // AND classify_name_first != "周报"
  1148. // AND id in (` + reportIds + `)
  1149. // )
  1150. //UNION
  1151. //
  1152. //( SELECT
  1153. //report_id,
  1154. //report_chapter_id,
  1155. //classify_id_first,
  1156. //0 as classify_id_second,
  1157. //classify_name_first,
  1158. //null as classify_name_second,
  1159. //type_id as report_chapter_type_id,
  1160. //publish_time,
  1161. //title
  1162. //FROM
  1163. // report_chapter
  1164. //WHERE
  1165. //report_chapter_id in (` + chapterIds + `)
  1166. // )) r`
  1167. // err = o.Raw(sql).QueryRow(&total)
  1168. // return
  1169. //}
  1170. // GetPageReportList 分页获取报告列表
  1171. //func GetPageReportList(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*ReportList, err error) {
  1172. // o := global.DbMap[utils.DbNameReport]
  1173. // sql := `SELECT * FROM report WHERE 1=1 `
  1174. // sql += condition
  1175. // sql += ` ORDER BY modify_time DESC`
  1176. // totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  1177. // err = o.Raw(totalSql, pars...).QueryRow(&total)
  1178. // if err != nil {
  1179. // return
  1180. // }
  1181. // sql += ` LIMIT ?,? `
  1182. // err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  1183. // return
  1184. //}
  1185. // SunCodeReq 获取太阳码请求体
  1186. type SunCodeReq struct {
  1187. CodePage string `json:"CodePage" description:"太阳码page"`
  1188. CodeScene string `json:"CodeScene" description:"太阳码scene"`
  1189. }
  1190. // YbPcSuncode 活动海报表
  1191. type YbPcSuncode struct {
  1192. SuncodeID uint32 `gorm:"column:suncode_id;primaryKey;autoIncrement"`
  1193. Scene string `gorm:"column:scene;type:varchar(255);not null;default:0" json:"scene"` // 微信scene
  1194. SceneMd5 string `gorm:"column:scene_md5;type:varchar(255);not null" json:"sceneMd5"`
  1195. CodePage string `gorm:"column:code_page;type:varchar(255);not null;default:''" json:"codePage"` // 路径
  1196. SuncodeUrl string `gorm:"column:suncode_url;type:varchar(255);not null;default:''" json:"suncodeUrl"` // 太阳码储存地址
  1197. CreateTime time.Time `gorm:"column:create_time;type:timestamp;default:CURRENT_TIMESTAMP" json:"createTime"`
  1198. }
  1199. // GetYbPcSunCode 获取太阳码
  1200. func GetYbPcSunCode(scene, page string) (item *YbPcSuncode, err error) {
  1201. o := global.DbMap[utils.DbNameWeekly]
  1202. sql := `SELECT * FROM yb_pc_suncode WHERE scene = ? AND code_page = ? `
  1203. err = o.Raw(sql, scene, page).First(&item).Error
  1204. return
  1205. }
  1206. func AddYbPcSunCode(item *YbPcSuncode) (err error) {
  1207. o := global.DbMap[utils.DbNameWeekly]
  1208. err = o.Create(item).Error
  1209. return
  1210. }
  1211. // YbSuncodePars 小程序太阳码scene参数
  1212. type YbSuncodePars struct {
  1213. ID uint32 `gorm:"column:id;primaryKey;autoIncrement"`
  1214. Scene string `gorm:"column:scene;type:varchar(255);not null;default:''" json:"scene"` // scene参数
  1215. SceneKey string `gorm:"column:scene_key;type:varchar(32);not null;default:''" json:"scene_key"` // MD5值
  1216. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:CURRENT_TIMESTAMP" json:"createTime"`
  1217. }
  1218. func AddYbSuncodePars(item *YbSuncodePars) (err error) {
  1219. o := global.DbMap[utils.DbNameWeekly]
  1220. err = o.Create(item).Error
  1221. return
  1222. }
  1223. // UpdateReportSecondClassifyNameByClassifyId 更新报告分类名称字段
  1224. func UpdateReportSecondClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  1225. o := global.DbMap[utils.DbNameReport]
  1226. sql := " UPDATE report SET classify_name_second = ? WHERE classify_id_second = ? "
  1227. err = o.Exec(sql, classifyName, classifyId).Error
  1228. return
  1229. }
  1230. // UpdateReportFirstClassifyNameByClassifyId 更新报告分类一级名称字段
  1231. func UpdateReportFirstClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  1232. o := global.DbMap[utils.DbNameReport]
  1233. sql := " UPDATE report SET classify_name_first = ? WHERE classify_id_first = ? "
  1234. err = o.Exec(sql, classifyName, classifyId).Error
  1235. return
  1236. }
  1237. // UpdateReportThirdClassifyNameByClassifyId 更新报告的三级分类名称字段
  1238. func UpdateReportThirdClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  1239. o := global.DbMap[utils.DbNameReport]
  1240. sql := " UPDATE report SET classify_name_third = ? WHERE classify_id_third = ? "
  1241. err = o.Exec(sql, classifyName, classifyId).Error
  1242. return
  1243. }
  1244. // UpdateReportSecondClassifyFirstNameByClassifyId 更新报告二级分类的一级分类名称和id
  1245. //func UpdateReportSecondClassifyFirstNameByClassifyId(classifyId, newClassifyId int, classifyName string) (err error) {
  1246. // o := global.DbMap[utils.DbNameReport]
  1247. // sql := " UPDATE report SET classify_name_first = ?, classify_id_first = ? WHERE classify_id_second = ? "
  1248. // err = o.Exec(sql, classifyName, newClassifyId, classifyId).Error
  1249. // return
  1250. //}
  1251. // GetEmptyContentSubPPTReport 获取前两章为空的PPT报告
  1252. //func GetEmptyContentSubPPTReport() (list []*Report, err error) {
  1253. // sql := `SELECT
  1254. // r.id,
  1255. // r.content,
  1256. // r.content_sub
  1257. // FROM
  1258. // report AS r
  1259. // JOIN ppt_v2 AS p ON r.id = p.report_id
  1260. // WHERE
  1261. // p.report_id > 0 AND r.content_sub = ""`
  1262. // err = orm.NewOrmUsingDB("rddp").Raw(sql).QueryRows(&list)
  1263. // return
  1264. //}
  1265. // ModifyReportAuthor 更改报告作者
  1266. func ModifyReportAuthor(condition string, pars []interface{}, authorName string) (count int, err error) {
  1267. sql := `UPDATE english_report set author = ? WHERE 1=1 `
  1268. if condition != "" {
  1269. sql += condition
  1270. }
  1271. res := global.DbMap[utils.DbNameReport].Exec(sql, utils.ForwardPars(pars, authorName)...)
  1272. if res.Error != nil {
  1273. err = res.Error
  1274. return
  1275. }
  1276. count = int(res.RowsAffected)
  1277. return
  1278. }
  1279. func UpdateReportPublishTime(reportId int, videoNameDate string) (err error) {
  1280. o := global.DbMap[utils.DbNameReport]
  1281. sql1 := ` UPDATE report SET publish_time = NOW() WHERE id = ? `
  1282. err = o.Exec(sql1, reportId).Error
  1283. if err != nil {
  1284. return
  1285. }
  1286. if utils.DbDriverName == utils.DbDriverByDm {
  1287. //修改音频标题
  1288. sql2 := ` UPDATE report SET video_name=CONCAT(
  1289. CASE WHEN INSTR(video_name, '(') = 0 THEN video_name
  1290. ELSE SUBSTR(video_name, 1, INSTR(video_name, '(') - 1) END,
  1291. "` + videoNameDate + `") WHERE id = ? and (video_name !='' and video_name is not null)`
  1292. err = o.Exec(sql2, reportId).Error
  1293. } else {
  1294. //修改音频标题
  1295. sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !="" and video_name is not null)`
  1296. err = o.Exec(sql2, reportId).Error
  1297. }
  1298. return
  1299. }
  1300. func UpdateReportChapterPublishTime(reportId int, videoNameDate string) (err error) {
  1301. o := global.DbMap[utils.DbNameReport]
  1302. sql1 := ` UPDATE report_chapter SET publish_time = NOW() WHERE report_id = ? `
  1303. err = o.Exec(sql1, reportId).Error
  1304. if err != nil {
  1305. return
  1306. }
  1307. //修改音频标题
  1308. 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)`
  1309. err = o.Exec(sql2, reportId).Error
  1310. return
  1311. }
  1312. // MarkEditReport 标记编辑英文研报的请求数据
  1313. type MarkEditReport struct {
  1314. ReportId int `description:"研报id"`
  1315. ReportChapterId int `description:"研报章节id"`
  1316. Status int `description:"标记状态,1:编辑中,2:查询状态,3:编辑完成"`
  1317. }
  1318. type MarkReportResp struct {
  1319. Status int `description:"状态:0:无人编辑, 1:当前有人在编辑"`
  1320. Msg string `description:"提示信息"`
  1321. Editor string `description:"编辑者姓名"`
  1322. }
  1323. type MarkReportItem struct {
  1324. AdminId int `description:"编辑者ID"`
  1325. Editor string `description:"编辑者姓名"`
  1326. ReportClassifyNameFirst string
  1327. }
  1328. // GetReportByCondition 获取报告
  1329. func GetReportByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, isPage bool, startSize, pageSize int) (items []*Report, err error) {
  1330. o := global.DbMap[utils.DbNameReport]
  1331. fields := `*`
  1332. if len(fieldArr) > 0 {
  1333. fields = strings.Join(fieldArr, ",")
  1334. }
  1335. sql := `SELECT ` + fields + ` FROM report WHERE 1=1 `
  1336. sql += condition
  1337. order := ` ORDER BY modify_time DESC`
  1338. if orderRule != `` {
  1339. order = orderRule
  1340. }
  1341. sql += order
  1342. if isPage {
  1343. sql += ` LIMIT ?,?`
  1344. pars = append(pars, startSize, pageSize)
  1345. err = o.Raw(sql, pars...).Find(&items).Error
  1346. } else {
  1347. err = o.Raw(sql, pars...).Find(&items).Error
  1348. }
  1349. return
  1350. }
  1351. // ModifyReportMsgIsSendV2 更新报告消息状态
  1352. func ModifyReportMsgIsSendV2(reportId int) (err error) {
  1353. o := global.DbMap[utils.DbNameReport]
  1354. sql := `UPDATE report SET msg_is_send = 1, ths_msg_is_send = 1, msg_send_time = NOW() WHERE id = ? LIMIT 1`
  1355. err = o.Exec(sql, reportId).Error
  1356. return
  1357. }
  1358. // SetPrePublishReportById 设置定时发布
  1359. func SetPrePublishReportById(reportId int, prePublishTime string, preMsgSend int) (err error) {
  1360. o := global.DbMap[utils.DbNameReport]
  1361. sql := `UPDATE report SET pre_publish_time=?, pre_msg_send=? WHERE id = ? and state = 1 `
  1362. err = o.Exec(sql, prePublishTime, preMsgSend, reportId).Error
  1363. return
  1364. }
  1365. // ReportSubmitApproveReq 提交审批请求体
  1366. type ReportSubmitApproveReq struct {
  1367. ReportId int `description:"报告ID"`
  1368. }
  1369. // ReportCancelApproveReq 撤回审批请求体
  1370. type ReportCancelApproveReq struct {
  1371. ReportId int `description:"报告ID"`
  1372. }
  1373. func (m *Report) GetItemById(id int) (item *Report, err error) {
  1374. o := global.DbMap[utils.DbNameReport]
  1375. sql := `SELECT * FROM report WHERE id = ? LIMIT 1`
  1376. err = o.Raw(sql, id).First(&item).Error
  1377. if err != nil {
  1378. return
  1379. }
  1380. item.ConvertTimeStr()
  1381. return
  1382. }
  1383. // GetReportStateCount 获取指定状态的报告数量
  1384. func GetReportStateCount(state int) (count int, err error) {
  1385. o := global.DbMap[utils.DbNameReport]
  1386. sql := `SELECT COUNT(1) AS count FROM report WHERE state = ?`
  1387. var countNull sql2.NullInt64
  1388. err = o.Raw(sql, state).Scan(&countNull).Error
  1389. if err != nil {
  1390. return
  1391. }
  1392. if countNull.Valid {
  1393. count = int(countNull.Int64)
  1394. }
  1395. return
  1396. }
  1397. // UpdateReportsStateByCond 批量更新报告状态
  1398. func UpdateReportsStateByCond(classifyFirstId, classifySecondId, classifyThirdId, oldState, newState int) (err error) {
  1399. o := global.DbMap[utils.DbNameReport]
  1400. cond := ``
  1401. if classifyFirstId > 0 {
  1402. cond += fmt.Sprintf(` AND classify_id_first = %d`, classifyFirstId)
  1403. }
  1404. if classifySecondId > 0 {
  1405. cond += fmt.Sprintf(` AND classify_id_second = %d`, classifySecondId)
  1406. }
  1407. if classifyThirdId > 0 {
  1408. cond += fmt.Sprintf(` AND classify_id_third = %d`, classifyThirdId)
  1409. }
  1410. sql := fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? %s`, cond)
  1411. err = o.Exec(sql, newState, oldState).Error
  1412. return
  1413. }
  1414. // UpdateReportsStateBySecondIds 批量更新二级分类报告状态
  1415. func UpdateReportsStateBySecondIds(oldState, newState int, secondIds []int) (err error) {
  1416. if len(secondIds) <= 0 {
  1417. return
  1418. }
  1419. o := global.DbMap[utils.DbNameReport]
  1420. // (有审批流的)未发布->待提交
  1421. sql := fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? AND classify_id_second IN (%s)`, utils.GetOrmInReplace(len(secondIds)))
  1422. err = o.Exec(sql, newState, oldState, secondIds).Error
  1423. if err != nil {
  1424. return
  1425. }
  1426. // (无审批流的)待提交->未发布
  1427. sql = fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? AND classify_id_second NOT IN (%s)`, utils.GetOrmInReplace(len(secondIds)))
  1428. err = o.Exec(sql, oldState, newState, secondIds).Error
  1429. return
  1430. }
  1431. // GetReportPdfUrlReq 获取报告pdf地址请求体
  1432. type GetReportPdfUrlReq struct {
  1433. ReportUrl string `description:"报告Url"`
  1434. ReportCode string `description:"报告Code"`
  1435. Type int `description:"类型 1-pdf 2-图片"`
  1436. }
  1437. func ModifyReportPdfUrl(reportId int, detailPdfUrl string) (err error) {
  1438. o := global.DbMap[utils.DbNameReport]
  1439. sql := `UPDATE report SET detail_pdf_url=? WHERE id=? `
  1440. err = o.Exec(sql, detailPdfUrl, reportId).Error
  1441. return
  1442. }
  1443. func ModifyReportImgUrl(reportId int, detailImgUrl string) (err error) {
  1444. o := global.DbMap[utils.DbNameReport]
  1445. sql := `UPDATE report SET detail_img_url=? WHERE id=? `
  1446. err = o.Exec(sql, detailImgUrl, reportId).Error
  1447. return
  1448. }
  1449. func ModifyReportPdfUrlMobile(reportId int, detailPdfUrlMobile string) (err error) {
  1450. o := global.DbMap[utils.DbNameReport]
  1451. sql := `UPDATE report SET detail_pdf_url_mobile=? WHERE id=? `
  1452. err = o.Exec(sql, detailPdfUrlMobile, reportId).Error
  1453. return
  1454. }
  1455. func ModifyReportImgUrlMobile(reportId int, detailImgUrlMobile string) (err error) {
  1456. o := global.DbMap[utils.DbNameReport]
  1457. sql := `UPDATE report SET detail_img_url_mobile=? WHERE id=? `
  1458. err = o.Exec(sql, detailImgUrlMobile, reportId).Error
  1459. return
  1460. }
  1461. // UpdatePdfUrlReportById 清空pdf相关字段
  1462. func UpdatePdfUrlReportById(reportId int) (err error) {
  1463. o := global.DbMap[utils.DbNameReport]
  1464. sql := `UPDATE report SET detail_img_url = '',detail_pdf_url='',modify_time=NOW() WHERE id = ? `
  1465. err = o.Exec(sql, reportId).Error
  1466. return
  1467. }
  1468. // InsertMultiReport
  1469. // @Description: 批量新增报告
  1470. // @author: Roc
  1471. // @datetime 2024-06-27 15:55:25
  1472. // @param items []*Report
  1473. // @return err error
  1474. func InsertMultiReport(items []*Report) (err error) {
  1475. o := global.DbMap[utils.DbNameReport]
  1476. err = o.CreateInBatches(items, utils.MultiAddNum).Error
  1477. return
  1478. }
  1479. // ReportLayout
  1480. // @Description: 报告布局
  1481. type ReportLayout struct {
  1482. Id int
  1483. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  1484. }
  1485. // GetReportLayoutByReportId
  1486. // @Description: 根据报告id获取报告的布局
  1487. // @author: Roc
  1488. // @datetime 2024-07-15 15:27:05
  1489. // @param reportId int
  1490. // @return item ReportLayout
  1491. // @return err error
  1492. func GetReportLayoutByReportId(reportId int) (item ReportLayout, err error) {
  1493. o := global.DbMap[utils.DbNameReport]
  1494. sql := `SELECT id, report_layout FROM report WHERE id = ? `
  1495. err = o.Raw(sql, reportId).First(&item).Error
  1496. return
  1497. }
  1498. func GetReportFieldsByIds(ids []int, fields []string) (items []*Report, err error) {
  1499. if len(ids) == 0 {
  1500. return
  1501. }
  1502. o := global.DbMap[utils.DbNameReport]
  1503. field := " * "
  1504. if len(fields) > 0 {
  1505. field = fmt.Sprintf(" %s ", strings.Join(fields, ","))
  1506. }
  1507. sql := fmt.Sprintf(`SELECT %s FROM report WHERE id IN (%s)`, field, utils.GetOrmInReplace(len(ids)))
  1508. err = o.Raw(sql, ids).Find(&items).Error
  1509. return
  1510. }
  1511. // GetReportListByClassifyId 根据分类id 获取报告列表
  1512. func GetReportListByClassifyId(classifyId int) (items []*Report, err error) {
  1513. o := global.DbMap[utils.DbNameReport]
  1514. sql := `SELECT * FROM report WHERE classify_id_first = ? or classify_id_second = ? or classify_id_third = ?`
  1515. err = o.Raw(sql, classifyId, classifyId, classifyId).Find(&items).Error
  1516. return items, err
  1517. }
  1518. func GetExistReportClassifyIdByClassifyIds(classifyIds []int) (existClassifyIds []*Report, err error) {
  1519. if len(classifyIds) == 0 {
  1520. return
  1521. }
  1522. o := global.DbMap[utils.DbNameReport]
  1523. sql := `SELECT classify_id_first, classify_id_second, classify_id_third FROM report WHERE 1=1 `
  1524. sql += fmt.Sprintf(` AND (classify_id_first IN (%s) OR classify_id_second IN (%s) OR classify_id_third IN (%s))`, utils.GetOrmInReplace(len(classifyIds)), utils.GetOrmInReplace(len(classifyIds)), utils.GetOrmInReplace(len(classifyIds)))
  1525. err = o.Raw(sql, classifyIds, classifyIds, classifyIds).Find(&existClassifyIds).Error
  1526. return
  1527. }
  1528. // UpdateReportInfo 修改报告
  1529. func UpdateReportInfo(reports *Report) (err error) {
  1530. //o := global.DbMap[utils.DbNameReport]
  1531. //err = o.Update(reports)
  1532. //if err != nil {
  1533. // return err
  1534. //}
  1535. err = global.DbMap[utils.DbNameReport].Updates(reports).Error
  1536. return
  1537. }
  1538. func FindReportListByCondition(condition string, pars []interface{}) (items []*Report, err error) {
  1539. o := global.DbMap[utils.DbNameReport]
  1540. sql := `SELECT * FROM report WHERE 1=1 `
  1541. if condition != "" {
  1542. sql += condition
  1543. }
  1544. err = o.Raw(sql, pars...).Find(&items).Error
  1545. return
  1546. }
  1547. type ReportShartUrlReq struct {
  1548. Url string `description:"分享链接"`
  1549. ReportId int `description:"报告ID"`
  1550. }
  1551. type ReportShartUrlResp struct {
  1552. UrlToken string `description:"分享链接token"`
  1553. }