report.go 63 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691
  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. Author string `description:"作者"`
  921. ClassifyIdFirst int `description:"一级分类ID"`
  922. ClassifyNameFirst string `description:"一级分类名称"`
  923. ClassifyIdSecond int `description:"二级分类ID"`
  924. ClassifyNameSecond string `description:"二级分类名称"`
  925. ClassifyId int `description:"最小单元的分类ID"`
  926. ClassifyName string `description:"最小单元的分类名称"`
  927. Categories string `description:"关联的品种名称(包括品种别名)"`
  928. StageStr string `description:"报告期数"`
  929. }
  930. // GetLastPublishDayWeekReport 获取上一篇已发布的晨周报
  931. //func GetLastPublishDayWeekReport(chapterType string) (item *Report, err error) {
  932. // o := global.DbMap[utils.DbNameReport]
  933. // sql := ` SELECT * FROM report WHERE has_chapter = 1 AND chapter_type = ? AND state = 2 ORDER BY publish_time DESC LIMIT 1 `
  934. // err = o.Raw(sql, chapterType).First(&item).Error
  935. //
  936. // return
  937. //}
  938. // GetNewReportExist
  939. //func GetNewReportExist(oldReportId int) (item *Report, err error) {
  940. // o := global.DbMap[utils.DbNameReport]
  941. // sql := ` SELECT id FROM report WHERE old_report_id = ? LIMIT 1 `
  942. // err = o.Raw(sql, oldReportId).First(&item).Error
  943. // return
  944. //}
  945. // PublishReportAndChapter 发布报告及章节
  946. func PublishReportAndChapter(reportInfo *Report, isPublishReport bool, cols []string) (err error) {
  947. to := global.DbMap[utils.DbNameReport].Begin()
  948. defer func() {
  949. if err != nil {
  950. _ = to.Rollback()
  951. } else {
  952. _ = to.Commit()
  953. }
  954. }()
  955. // 更新报告
  956. if isPublishReport {
  957. err = to.Select(cols).Updates(reportInfo).Error
  958. if err != nil {
  959. return
  960. }
  961. }
  962. // 发布该报告的所有章节
  963. sql := ` UPDATE report_chapter SET publish_state = 2, publish_time = ? WHERE report_id = ? `
  964. err = to.Exec(sql, reportInfo.PublishTime, reportInfo.Id).Error
  965. // 发布章节
  966. //if len(publishIds) > 0 {
  967. // sql := ` UPDATE report_chapter SET publish_state = 2, publish_time = ? WHERE report_id = ? AND report_chapter_id IN (` + utils.GetOrmInReplace(len(publishIds)) + `) `
  968. // err = to.Raw(sql, reportInfo.PublishTime, reportInfo.Id, publishIds).Error
  969. //}
  970. //if len(unPublishIds) > 0 {
  971. // 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)) + `) `
  972. // err = to.Raw(sql, reportInfo.Id, unPublishIds).Error
  973. //}
  974. return
  975. }
  976. //func GetSyncEmptyVideoReport() (list []*Report, err error) {
  977. // o := global.DbMap[utils.DbNameReport]
  978. // sql := ` SELECT id FROM report WHERE old_report_id > 0 AND state = 2 AND chapter_type = "" AND (video_size = "" OR video_play_seconds = "")
  979. //UNION ALL
  980. //SELECT DISTINCT report_id FROM report_chapter WHERE publish_state = 2 AND (video_size = "" OR video_play_seconds = "") `
  981. // err = o.Raw(sql).Find(&list).Error
  982. // return
  983. //}
  984. // PublishReportById 发布报告
  985. func PublishReportById(reportId int, publishTime time.Time, lastModifyAdminId int, lastModifyAdminName string) (err error) {
  986. o := global.DbMap[utils.DbNameReport]
  987. 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 = ? `
  988. err = o.Exec(sql, publishTime, lastModifyAdminId, lastModifyAdminName, reportId).Error
  989. return
  990. }
  991. // ResetReportById 重置报告状态
  992. func ResetReportById(reportId, state int, lastModifyAdminId int, lastModifyAdminName string) (err error) {
  993. o := global.DbMap[utils.DbNameReport]
  994. 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 = ?`
  995. err = o.Exec(sql, state, lastModifyAdminId, lastModifyAdminName, reportId).Error
  996. return
  997. }
  998. // GetCommentReportByReportId 查询有留言的报告列表
  999. //func GetCommentReportByReportId(condition string, pars []interface{}, startSize, pageSize int) (list []*Report, err error) {
  1000. // o := global.DbMap[utils.DbNameReport]
  1001. // sql := `SELECT
  1002. // id,
  1003. // create_time,
  1004. // title,
  1005. // classify_name_first,
  1006. // classify_id_first,
  1007. // classify_name_second,
  1008. // classify_id_second,
  1009. // state,
  1010. //IF
  1011. // ( publish_time, publish_time, create_time ) AS publish_time
  1012. //FROM
  1013. // report
  1014. //WHERE
  1015. // 1=1
  1016. // `
  1017. // if condition != "" {
  1018. // sql += condition
  1019. // }
  1020. // sql += ` ORDER BY publish_time DESC , title ASC LIMIT ?,?`
  1021. // pars = append(pars, startSize, pageSize)
  1022. // err = o.Raw(sql, pars...).Find(&list).Error
  1023. // return
  1024. //}
  1025. // GetCommentReportByReportIdOrderBy 查询有留言的报告列表(指定排序)
  1026. //func GetCommentReportByReportIdOrderBy(condition string, pars []interface{}, startSize, pageSize int, orderBy string) (list []*Report, err error) {
  1027. // o := global.DbMap[utils.DbNameReport]
  1028. // sql := `SELECT
  1029. // id,
  1030. // create_time,
  1031. // title,
  1032. // classify_name_first,
  1033. // classify_id_first,
  1034. // classify_name_second,
  1035. // classify_id_second,
  1036. // state,
  1037. //IF
  1038. // ( publish_time, publish_time, create_time ) AS publish_time
  1039. //FROM
  1040. // report
  1041. //WHERE
  1042. // 1=1
  1043. // `
  1044. // if condition != "" {
  1045. // sql += condition
  1046. // }
  1047. // if orderBy == `` {
  1048. // sql += ` ORDER BY publish_time DESC , title ASC `
  1049. // } else {
  1050. // sql += orderBy
  1051. // }
  1052. // sql += ` LIMIT ?,? `
  1053. // pars = append(pars, startSize, pageSize)
  1054. // err = o.Raw(sql, pars...).Find(&list).Error
  1055. // return
  1056. //}
  1057. // GetCommentReportTotalByReportId 查询有留言的报告列表总数
  1058. //func GetCommentReportTotalByReportId(condition string, pars []interface{}) (total int64, err error) {
  1059. // o := global.DbMap[utils.DbNameReport]
  1060. // sql := `SELECT count(*)
  1061. // FROM report WHERE 1=1`
  1062. // if condition != "" {
  1063. // sql += condition
  1064. // }
  1065. // err = o.Raw(sql, pars...).QueryRow(&total)
  1066. // return
  1067. //}
  1068. // LikeReportItem 点赞相关的报告列表
  1069. type LikeReportItem struct {
  1070. ReportId int `description:"报告Id"`
  1071. ReportChapterId int `description:"报告章节Id"`
  1072. ClassifyIdFirst int `description:"一级分类id"`
  1073. ClassifyNameFirst string `description:"一级分类名称"`
  1074. ClassifyIdSecond int `description:"二级分类id"`
  1075. ClassifyNameSecond string `description:"二级分类名称"`
  1076. ReportChapterTypeId int `description:"章节类型"`
  1077. ReportChapterTypeName string `description:"品种名称"`
  1078. PublishTime time.Time `description:"发布时间" `
  1079. Title string `description:"标题"`
  1080. }
  1081. // GetLikeReportByReportIdReportChapterId 获取有被点赞的报告列表
  1082. //func GetLikeReportByReportIdReportChapterId(reportIds string, chapterIds string, orderStr string, startSize, pageSize int) (list []*LikeReportItem, err error) {
  1083. // o := global.DbMap[utils.DbNameReport]
  1084. // sql := `( SELECT
  1085. //id AS report_id,
  1086. //0 AS report_chapter_id,
  1087. //classify_id_first,
  1088. //classify_id_second,
  1089. //classify_name_first,
  1090. //classify_name_second,
  1091. //0 as report_chapter_type_id,
  1092. //"" as report_chapter_type_name,
  1093. //publish_time,
  1094. //title
  1095. //FROM
  1096. // report
  1097. //WHERE
  1098. // classify_name_first != "晨报"
  1099. // AND classify_name_first != "周报"
  1100. // AND id in (` + reportIds + `)
  1101. // )
  1102. //UNION
  1103. //
  1104. //( SELECT
  1105. //report_id,
  1106. //report_chapter_id,
  1107. //classify_id_first,
  1108. //0 as classify_id_second,
  1109. //classify_name_first,
  1110. //null as classify_name_second,
  1111. //type_id as report_chapter_type_id,
  1112. //type_name as report_chapter_type_name,
  1113. //publish_time,
  1114. //title
  1115. //FROM
  1116. // report_chapter
  1117. //WHERE
  1118. // report_chapter_id in (` + chapterIds + `)
  1119. // )`
  1120. // if orderStr != "" {
  1121. // sql += ` ORDER BY FIELD(CONCAT(report_id, "-",report_chapter_id),` + orderStr + `)`
  1122. // } else {
  1123. // sql += ` ORDER BY publish_time DESC, report_id Desc`
  1124. // }
  1125. // sql += ` LIMIT ?,?`
  1126. // err = o.Raw(sql, startSize, pageSize).QueryRows(&list)
  1127. // return
  1128. //}
  1129. // GetLikeReportTotalByReportIdReportChapterId 获取有被点赞的报告列表总数
  1130. //func GetLikeReportTotalByReportIdReportChapterId(reportIds string, chapterIds string) (total int64, err error) {
  1131. // o := global.DbMap[utils.DbNameReport]
  1132. // sql := `select count(*) from (( SELECT
  1133. //id AS report_id,
  1134. //0 AS report_chapter_id,
  1135. //classify_id_first,
  1136. //classify_id_second,
  1137. //classify_name_first,
  1138. //classify_name_second,
  1139. //0 as report_chapter_type_id,
  1140. //publish_time,
  1141. //title
  1142. //FROM
  1143. // report
  1144. //WHERE
  1145. // classify_name_first != "晨报"
  1146. // AND classify_name_first != "周报"
  1147. // AND id in (` + reportIds + `)
  1148. // )
  1149. //UNION
  1150. //
  1151. //( SELECT
  1152. //report_id,
  1153. //report_chapter_id,
  1154. //classify_id_first,
  1155. //0 as classify_id_second,
  1156. //classify_name_first,
  1157. //null as classify_name_second,
  1158. //type_id as report_chapter_type_id,
  1159. //publish_time,
  1160. //title
  1161. //FROM
  1162. // report_chapter
  1163. //WHERE
  1164. //report_chapter_id in (` + chapterIds + `)
  1165. // )) r`
  1166. // err = o.Raw(sql).QueryRow(&total)
  1167. // return
  1168. //}
  1169. // GetPageReportList 分页获取报告列表
  1170. //func GetPageReportList(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*ReportList, err error) {
  1171. // o := global.DbMap[utils.DbNameReport]
  1172. // sql := `SELECT * FROM report WHERE 1=1 `
  1173. // sql += condition
  1174. // sql += ` ORDER BY modify_time DESC`
  1175. // totalSql := `SELECT COUNT(1) total FROM (` + sql + `) z `
  1176. // err = o.Raw(totalSql, pars...).QueryRow(&total)
  1177. // if err != nil {
  1178. // return
  1179. // }
  1180. // sql += ` LIMIT ?,? `
  1181. // err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  1182. // return
  1183. //}
  1184. // SunCodeReq 获取太阳码请求体
  1185. type SunCodeReq struct {
  1186. CodePage string `json:"CodePage" description:"太阳码page"`
  1187. CodeScene string `json:"CodeScene" description:"太阳码scene"`
  1188. }
  1189. // YbPcSuncode 活动海报表
  1190. type YbPcSuncode struct {
  1191. SuncodeID uint32 `gorm:"column:suncode_id;primaryKey;autoIncrement"`
  1192. Scene string `gorm:"column:scene;type:varchar(255);not null;default:0" json:"scene"` // 微信scene
  1193. SceneMd5 string `gorm:"column:scene_md5;type:varchar(255);not null" json:"sceneMd5"`
  1194. CodePage string `gorm:"column:code_page;type:varchar(255);not null;default:''" json:"codePage"` // 路径
  1195. SuncodeUrl string `gorm:"column:suncode_url;type:varchar(255);not null;default:''" json:"suncodeUrl"` // 太阳码储存地址
  1196. CreateTime time.Time `gorm:"column:create_time;type:timestamp;default:CURRENT_TIMESTAMP" json:"createTime"`
  1197. }
  1198. // GetYbPcSunCode 获取太阳码
  1199. func GetYbPcSunCode(scene, page string) (item *YbPcSuncode, err error) {
  1200. o := global.DbMap[utils.DbNameWeekly]
  1201. sql := `SELECT * FROM yb_pc_suncode WHERE scene = ? AND code_page = ? `
  1202. err = o.Raw(sql, scene, page).First(&item).Error
  1203. return
  1204. }
  1205. func AddYbPcSunCode(item *YbPcSuncode) (err error) {
  1206. o := global.DbMap[utils.DbNameWeekly]
  1207. err = o.Create(item).Error
  1208. return
  1209. }
  1210. // YbSuncodePars 小程序太阳码scene参数
  1211. type YbSuncodePars struct {
  1212. ID uint32 `gorm:"column:id;primaryKey;autoIncrement"`
  1213. Scene string `gorm:"column:scene;type:varchar(255);not null;default:''" json:"scene"` // scene参数
  1214. SceneKey string `gorm:"column:scene_key;type:varchar(32);not null;default:''" json:"scene_key"` // MD5值
  1215. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:CURRENT_TIMESTAMP" json:"createTime"`
  1216. }
  1217. func AddYbSuncodePars(item *YbSuncodePars) (err error) {
  1218. o := global.DbMap[utils.DbNameWeekly]
  1219. err = o.Create(item).Error
  1220. return
  1221. }
  1222. // UpdateReportSecondClassifyNameByClassifyId 更新报告分类名称字段
  1223. func UpdateReportSecondClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  1224. o := global.DbMap[utils.DbNameReport]
  1225. sql := " UPDATE report SET classify_name_second = ? WHERE classify_id_second = ? "
  1226. err = o.Exec(sql, classifyName, classifyId).Error
  1227. return
  1228. }
  1229. // UpdateReportFirstClassifyNameByClassifyId 更新报告分类一级名称字段
  1230. func UpdateReportFirstClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  1231. o := global.DbMap[utils.DbNameReport]
  1232. sql := " UPDATE report SET classify_name_first = ? WHERE classify_id_first = ? "
  1233. err = o.Exec(sql, classifyName, classifyId).Error
  1234. return
  1235. }
  1236. // UpdateReportThirdClassifyNameByClassifyId 更新报告的三级分类名称字段
  1237. func UpdateReportThirdClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
  1238. o := global.DbMap[utils.DbNameReport]
  1239. sql := " UPDATE report SET classify_name_third = ? WHERE classify_id_third = ? "
  1240. err = o.Exec(sql, classifyName, classifyId).Error
  1241. return
  1242. }
  1243. // UpdateReportSecondClassifyFirstNameByClassifyId 更新报告二级分类的一级分类名称和id
  1244. //func UpdateReportSecondClassifyFirstNameByClassifyId(classifyId, newClassifyId int, classifyName string) (err error) {
  1245. // o := global.DbMap[utils.DbNameReport]
  1246. // sql := " UPDATE report SET classify_name_first = ?, classify_id_first = ? WHERE classify_id_second = ? "
  1247. // err = o.Exec(sql, classifyName, newClassifyId, classifyId).Error
  1248. // return
  1249. //}
  1250. // GetEmptyContentSubPPTReport 获取前两章为空的PPT报告
  1251. //func GetEmptyContentSubPPTReport() (list []*Report, err error) {
  1252. // sql := `SELECT
  1253. // r.id,
  1254. // r.content,
  1255. // r.content_sub
  1256. // FROM
  1257. // report AS r
  1258. // JOIN ppt_v2 AS p ON r.id = p.report_id
  1259. // WHERE
  1260. // p.report_id > 0 AND r.content_sub = ""`
  1261. // err = orm.NewOrmUsingDB("rddp").Raw(sql).QueryRows(&list)
  1262. // return
  1263. //}
  1264. // ModifyReportAuthor 更改报告作者
  1265. func ModifyReportAuthor(condition string, pars []interface{}, authorName string) (count int, err error) {
  1266. sql := `UPDATE english_report set author = ? WHERE 1=1 `
  1267. if condition != "" {
  1268. sql += condition
  1269. }
  1270. res := global.DbMap[utils.DbNameReport].Exec(sql, utils.ForwardPars(pars, authorName)...)
  1271. if res.Error != nil {
  1272. err = res.Error
  1273. return
  1274. }
  1275. count = int(res.RowsAffected)
  1276. return
  1277. }
  1278. func UpdateReportPublishTime(reportId int, videoNameDate string) (err error) {
  1279. o := global.DbMap[utils.DbNameReport]
  1280. sql1 := ` UPDATE report SET publish_time = NOW() WHERE id = ? `
  1281. err = o.Exec(sql1, reportId).Error
  1282. if err != nil {
  1283. return
  1284. }
  1285. if utils.DbDriverName == utils.DbDriverByDm {
  1286. //修改音频标题
  1287. sql2 := ` UPDATE report SET video_name=CONCAT(
  1288. CASE WHEN INSTR(video_name, '(') = 0 THEN video_name
  1289. ELSE SUBSTR(video_name, 1, INSTR(video_name, '(') - 1) END,
  1290. "` + videoNameDate + `") WHERE id = ? and (video_name !='' and video_name is not null)`
  1291. err = o.Exec(sql2, reportId).Error
  1292. } else {
  1293. //修改音频标题
  1294. sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !="" and video_name is not null)`
  1295. err = o.Exec(sql2, reportId).Error
  1296. }
  1297. return
  1298. }
  1299. func UpdateReportChapterPublishTime(reportId int, videoNameDate string) (err error) {
  1300. o := global.DbMap[utils.DbNameReport]
  1301. sql1 := ` UPDATE report_chapter SET publish_time = NOW() WHERE report_id = ? `
  1302. err = o.Exec(sql1, reportId).Error
  1303. if err != nil {
  1304. return
  1305. }
  1306. //修改音频标题
  1307. 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)`
  1308. err = o.Exec(sql2, reportId).Error
  1309. return
  1310. }
  1311. // MarkEditReport 标记编辑英文研报的请求数据
  1312. type MarkEditReport struct {
  1313. ReportId int `description:"研报id"`
  1314. ReportChapterId int `description:"研报章节id"`
  1315. Status int `description:"标记状态,1:编辑中,2:查询状态,3:编辑完成"`
  1316. }
  1317. type MarkReportResp struct {
  1318. Status int `description:"状态:0:无人编辑, 1:当前有人在编辑"`
  1319. Msg string `description:"提示信息"`
  1320. Editor string `description:"编辑者姓名"`
  1321. }
  1322. type MarkReportItem struct {
  1323. AdminId int `description:"编辑者ID"`
  1324. Editor string `description:"编辑者姓名"`
  1325. ReportClassifyNameFirst string
  1326. }
  1327. // GetReportByCondition 获取报告
  1328. func GetReportByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, isPage bool, startSize, pageSize int) (items []*Report, err error) {
  1329. o := global.DbMap[utils.DbNameReport]
  1330. fields := `*`
  1331. if len(fieldArr) > 0 {
  1332. fields = strings.Join(fieldArr, ",")
  1333. }
  1334. sql := `SELECT ` + fields + ` FROM report WHERE 1=1 `
  1335. sql += condition
  1336. order := ` ORDER BY modify_time DESC`
  1337. if orderRule != `` {
  1338. order = orderRule
  1339. }
  1340. sql += order
  1341. if isPage {
  1342. sql += ` LIMIT ?,?`
  1343. pars = append(pars, startSize, pageSize)
  1344. err = o.Raw(sql, pars...).Find(&items).Error
  1345. } else {
  1346. err = o.Raw(sql, pars...).Find(&items).Error
  1347. }
  1348. return
  1349. }
  1350. // ModifyReportMsgIsSendV2 更新报告消息状态
  1351. func ModifyReportMsgIsSendV2(reportId int) (err error) {
  1352. o := global.DbMap[utils.DbNameReport]
  1353. sql := `UPDATE report SET msg_is_send = 1, ths_msg_is_send = 1, msg_send_time = NOW() WHERE id = ? LIMIT 1`
  1354. err = o.Exec(sql, reportId).Error
  1355. return
  1356. }
  1357. // SetPrePublishReportById 设置定时发布
  1358. func SetPrePublishReportById(reportId int, prePublishTime string, preMsgSend int) (err error) {
  1359. o := global.DbMap[utils.DbNameReport]
  1360. sql := `UPDATE report SET pre_publish_time=?, pre_msg_send=? WHERE id = ? and state = 1 `
  1361. err = o.Exec(sql, prePublishTime, preMsgSend, reportId).Error
  1362. return
  1363. }
  1364. // ReportSubmitApproveReq 提交审批请求体
  1365. type ReportSubmitApproveReq struct {
  1366. ReportId int `description:"报告ID"`
  1367. }
  1368. // ReportCancelApproveReq 撤回审批请求体
  1369. type ReportCancelApproveReq struct {
  1370. ReportId int `description:"报告ID"`
  1371. }
  1372. func (m *Report) GetItemById(id int) (item *Report, err error) {
  1373. o := global.DbMap[utils.DbNameReport]
  1374. sql := `SELECT * FROM report WHERE id = ? LIMIT 1`
  1375. err = o.Raw(sql, id).First(&item).Error
  1376. if err != nil {
  1377. return
  1378. }
  1379. item.ConvertTimeStr()
  1380. return
  1381. }
  1382. // GetReportStateCount 获取指定状态的报告数量
  1383. func GetReportStateCount(state int) (count int, err error) {
  1384. o := global.DbMap[utils.DbNameReport]
  1385. sql := `SELECT COUNT(1) AS count FROM report WHERE state = ?`
  1386. var countNull sql2.NullInt64
  1387. err = o.Raw(sql, state).Scan(&countNull).Error
  1388. if err != nil {
  1389. return
  1390. }
  1391. if countNull.Valid {
  1392. count = int(countNull.Int64)
  1393. }
  1394. return
  1395. }
  1396. // UpdateReportsStateByCond 批量更新报告状态
  1397. func UpdateReportsStateByCond(classifyFirstId, classifySecondId, classifyThirdId, oldState, newState int) (err error) {
  1398. o := global.DbMap[utils.DbNameReport]
  1399. cond := ``
  1400. if classifyFirstId > 0 {
  1401. cond += fmt.Sprintf(` AND classify_id_first = %d`, classifyFirstId)
  1402. }
  1403. if classifySecondId > 0 {
  1404. cond += fmt.Sprintf(` AND classify_id_second = %d`, classifySecondId)
  1405. }
  1406. if classifyThirdId > 0 {
  1407. cond += fmt.Sprintf(` AND classify_id_third = %d`, classifyThirdId)
  1408. }
  1409. sql := fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? %s`, cond)
  1410. err = o.Exec(sql, newState, oldState).Error
  1411. return
  1412. }
  1413. // UpdateReportsStateBySecondIds 批量更新二级分类报告状态
  1414. func UpdateReportsStateBySecondIds(oldState, newState int, secondIds []int) (err error) {
  1415. if len(secondIds) <= 0 {
  1416. return
  1417. }
  1418. o := global.DbMap[utils.DbNameReport]
  1419. // (有审批流的)未发布->待提交
  1420. sql := fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? AND classify_id_second IN (%s)`, utils.GetOrmInReplace(len(secondIds)))
  1421. err = o.Exec(sql, newState, oldState, secondIds).Error
  1422. if err != nil {
  1423. return
  1424. }
  1425. // (无审批流的)待提交->未发布
  1426. sql = fmt.Sprintf(`UPDATE report SET state = ?, pre_publish_time = NULL WHERE state = ? AND classify_id_second NOT IN (%s)`, utils.GetOrmInReplace(len(secondIds)))
  1427. err = o.Exec(sql, oldState, newState, secondIds).Error
  1428. return
  1429. }
  1430. // GetReportPdfUrlReq 获取报告pdf地址请求体
  1431. type GetReportPdfUrlReq struct {
  1432. ReportUrl string `description:"报告Url"`
  1433. ReportCode string `description:"报告Code"`
  1434. Type int `description:"类型 1-pdf 2-图片"`
  1435. }
  1436. func ModifyReportPdfUrl(reportId int, detailPdfUrl string) (err error) {
  1437. o := global.DbMap[utils.DbNameReport]
  1438. sql := `UPDATE report SET detail_pdf_url=? WHERE id=? `
  1439. err = o.Exec(sql, detailPdfUrl, reportId).Error
  1440. return
  1441. }
  1442. func ModifyReportImgUrl(reportId int, detailImgUrl string) (err error) {
  1443. o := global.DbMap[utils.DbNameReport]
  1444. sql := `UPDATE report SET detail_img_url=? WHERE id=? `
  1445. err = o.Exec(sql, detailImgUrl, reportId).Error
  1446. return
  1447. }
  1448. func ModifyReportPdfUrlMobile(reportId int, detailPdfUrlMobile string) (err error) {
  1449. o := global.DbMap[utils.DbNameReport]
  1450. sql := `UPDATE report SET detail_pdf_url_mobile=? WHERE id=? `
  1451. err = o.Exec(sql, detailPdfUrlMobile, reportId).Error
  1452. return
  1453. }
  1454. func ModifyReportImgUrlMobile(reportId int, detailImgUrlMobile string) (err error) {
  1455. o := global.DbMap[utils.DbNameReport]
  1456. sql := `UPDATE report SET detail_img_url_mobile=? WHERE id=? `
  1457. err = o.Exec(sql, detailImgUrlMobile, reportId).Error
  1458. return
  1459. }
  1460. // UpdatePdfUrlReportById 清空pdf相关字段
  1461. func UpdatePdfUrlReportById(reportId int) (err error) {
  1462. o := global.DbMap[utils.DbNameReport]
  1463. sql := `UPDATE report SET detail_img_url = '',detail_pdf_url='',modify_time=NOW() WHERE id = ? `
  1464. err = o.Exec(sql, reportId).Error
  1465. return
  1466. }
  1467. // InsertMultiReport
  1468. // @Description: 批量新增报告
  1469. // @author: Roc
  1470. // @datetime 2024-06-27 15:55:25
  1471. // @param items []*Report
  1472. // @return err error
  1473. func InsertMultiReport(items []*Report) (err error) {
  1474. o := global.DbMap[utils.DbNameReport]
  1475. err = o.CreateInBatches(items, utils.MultiAddNum).Error
  1476. return
  1477. }
  1478. // ReportLayout
  1479. // @Description: 报告布局
  1480. type ReportLayout struct {
  1481. Id int
  1482. ReportLayout int8 `description:"报告布局,1:常规布局,2:智能布局。默认:1"`
  1483. }
  1484. // GetReportLayoutByReportId
  1485. // @Description: 根据报告id获取报告的布局
  1486. // @author: Roc
  1487. // @datetime 2024-07-15 15:27:05
  1488. // @param reportId int
  1489. // @return item ReportLayout
  1490. // @return err error
  1491. func GetReportLayoutByReportId(reportId int) (item ReportLayout, err error) {
  1492. o := global.DbMap[utils.DbNameReport]
  1493. sql := `SELECT id, report_layout FROM report WHERE id = ? `
  1494. err = o.Raw(sql, reportId).First(&item).Error
  1495. return
  1496. }
  1497. func GetReportFieldsByIds(ids []int, fields []string) (items []*Report, err error) {
  1498. if len(ids) == 0 {
  1499. return
  1500. }
  1501. o := global.DbMap[utils.DbNameReport]
  1502. field := " * "
  1503. if len(fields) > 0 {
  1504. field = fmt.Sprintf(" %s ", strings.Join(fields, ","))
  1505. }
  1506. sql := fmt.Sprintf(`SELECT %s FROM report WHERE id IN (%s)`, field, utils.GetOrmInReplace(len(ids)))
  1507. err = o.Raw(sql, ids).Find(&items).Error
  1508. return
  1509. }
  1510. // GetReportListByClassifyId 根据分类id 获取报告列表
  1511. func GetReportListByClassifyId(classifyId int) (items []*Report, err error) {
  1512. o := global.DbMap[utils.DbNameReport]
  1513. sql := `SELECT * FROM report WHERE classify_id_first = ? or classify_id_second = ? or classify_id_third = ?`
  1514. err = o.Raw(sql, classifyId, classifyId, classifyId).Find(&items).Error
  1515. return items, err
  1516. }
  1517. func GetExistReportClassifyIdByClassifyIds(classifyIds []int) (existClassifyIds []*Report, err error) {
  1518. if len(classifyIds) == 0 {
  1519. return
  1520. }
  1521. o := global.DbMap[utils.DbNameReport]
  1522. sql := `SELECT classify_id_first, classify_id_second, classify_id_third FROM report WHERE 1=1 `
  1523. 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)))
  1524. err = o.Raw(sql, classifyIds, classifyIds, classifyIds).Find(&existClassifyIds).Error
  1525. return
  1526. }
  1527. // UpdateReportInfo 修改报告
  1528. func UpdateReportInfo(reports *Report) (err error) {
  1529. //o := global.DbMap[utils.DbNameReport]
  1530. //err = o.Update(reports)
  1531. //if err != nil {
  1532. // return err
  1533. //}
  1534. err = global.DbMap[utils.DbNameReport].Updates(reports).Error
  1535. return
  1536. }
  1537. func FindReportListByCondition(condition string, pars []interface{}) (items []*Report, err error) {
  1538. o := global.DbMap[utils.DbNameReport]
  1539. sql := `SELECT * FROM report WHERE 1=1 `
  1540. if condition != "" {
  1541. sql += condition
  1542. }
  1543. err = o.Raw(sql, pars...).Find(&items).Error
  1544. return
  1545. }
  1546. type ReportShartUrlReq struct {
  1547. Url string `description:"分享链接"`
  1548. ReportId int `description:"报告ID"`
  1549. }
  1550. type ReportShartUrlResp struct {
  1551. UrlToken string `description:"分享链接token"`
  1552. }