report.go 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "hongze/hongze_cygx/models"
  7. "hongze/hongze_cygx/services"
  8. "hongze/hongze_cygx/utils"
  9. "html"
  10. "strconv"
  11. "strings"
  12. "time"
  13. )
  14. //报告
  15. type ReportController struct {
  16. BaseAuthController
  17. }
  18. type ReportCommonController struct {
  19. BaseCommonController
  20. }
  21. // @Title 行业报告分类列表接口
  22. // @Description 获取行业报告分类列表接口
  23. // @Param ChartPermissionId query int true "分类ID"
  24. // @Success 200 {object} models.IndustrialManagementList
  25. // @router /home/tradeList [get]
  26. func (this *ReportController) TradeList() {
  27. br := new(models.BaseResponse).Init()
  28. defer func() {
  29. this.Data["json"] = br
  30. this.ServeJSON()
  31. }()
  32. user := this.User
  33. if user == nil {
  34. br.Msg = "请重新登录"
  35. br.Ret = 408
  36. return
  37. }
  38. uid := user.UserId
  39. ChartPermissionId, _ := this.GetInt("ChartPermissionId")
  40. if ChartPermissionId < 1 {
  41. br.Msg = "请输入分类ID"
  42. return
  43. }
  44. list, err := models.GetTradeAll(ChartPermissionId)
  45. if err != nil {
  46. br.Msg = "获取信息失败"
  47. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  48. return
  49. }
  50. for k, v := range list {
  51. list[k].UpdateTime = utils.TimeRemoveHms(v.UpdateTime)
  52. count, err := models.CheckThisCategoryNewArticleIsRead(uid, v.CategoryId)
  53. if err != nil {
  54. br.Msg = "获取信息失败"
  55. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  56. return
  57. }
  58. if count == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.UpdateTime)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.UpdateTime)) {
  59. list[k].IsRed = true
  60. }
  61. }
  62. resp := new(models.TradeReportMappingResp)
  63. resp.List = list
  64. br.Ret = 200
  65. br.Success = true
  66. br.Msg = "获取成功"
  67. br.Data = resp
  68. }
  69. // @Title 产业报告分类列表接口
  70. // @Description 获取产业报告分类列表接口
  71. // @Param ChartPermissionId query int true "分类ID"
  72. // @Param IsNewLabel query string true "是否属于新标签,1是,0否"
  73. // @Param IsDeepLabel query string true "是否属于深标签,1是,0否"
  74. // @Param KeyWord query string true "搜索关键词"
  75. // @Param OrderColumn query int true "排序字段 ,NewTime 最近更新 ,Recommend弘则推荐"
  76. // @Param DeepCover query int false "深度覆盖:0-否;1-是"
  77. // @Param RecommendFocus query int false "推荐关注:0-否;1-是"
  78. // @Param PageSize query int true "每页数据条数"
  79. // @Param CurrentIndex query int true "当前页页码,从1开始"
  80. // @Success 200 {object} models.IndustrialManagementList
  81. // @router /home/industryList [get]
  82. func (this *ReportController) IndustryList() {
  83. br := new(models.BaseResponse).Init()
  84. defer func() {
  85. this.Data["json"] = br
  86. this.ServeJSON()
  87. }()
  88. user := this.User
  89. if user == nil {
  90. br.Msg = "请重新登录"
  91. br.Ret = 408
  92. return
  93. }
  94. uid := user.UserId
  95. fmt.Println(uid)
  96. ChartPermissionId, _ := this.GetInt("ChartPermissionId")
  97. orderColumn := this.GetString("OrderColumn")
  98. orderColumnNew := this.GetString("OrderColumn")
  99. isNewLabel := this.GetString("IsNewLabel")
  100. isDeepLabel := this.GetString("IsDeepLabel")
  101. keyWord := this.GetString("KeyWord")
  102. pageSize, _ := this.GetInt("PageSize")
  103. currentIndex, _ := this.GetInt("CurrentIndex")
  104. deepCover, _ := this.GetInt("DeepCover")
  105. recommendFocus, _ := this.GetInt("RecommendFocus")
  106. var orderSrt string
  107. var condition string
  108. var startSize int
  109. resp := new(models.IndustrialManagementList)
  110. if pageSize <= 0 {
  111. pageSize = utils.PageSize20
  112. }
  113. if currentIndex <= 0 {
  114. currentIndex = 1
  115. }
  116. startSize = paging.StartIndex(currentIndex, pageSize)
  117. if isNewLabel == "1" {
  118. condition += ` AND is_new_label = ` + isNewLabel
  119. }
  120. if isDeepLabel == "1" {
  121. condition += ` AND is_deep_label = ` + isDeepLabel
  122. }
  123. if keyWord != "" {
  124. //keyWordArr, err := services.GetIndustryMapNameSliceV2(keyWord)
  125. //if err != nil {
  126. // br.Msg = "获取信息失败"
  127. // br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  128. // return
  129. //}
  130. //var conditionkeyWord string
  131. //conditionkeyWord += ` subject_names LIKE '%` + keyWord + `%'`
  132. //keyWordArr = services.RemoveDuplicatesAndEmpty(keyWordArr)
  133. //keyWordLen := len(keyWordArr)
  134. //if keyWordLen <= 0 {
  135. // keyWordArr = append(keyWordArr, keyWord)
  136. // keyWordLen = len(keyWordArr)
  137. //}
  138. //for _, v := range keyWordArr {
  139. // conditionkeyWord += ` OR subject_names LIKE '%` + v + `%'`
  140. //}
  141. //industrialManagementIds, err := models.GetIndustrialManagementIdsBykeyWord(conditionkeyWord)
  142. //if err != nil {
  143. // br.Msg = "获取信息失败"
  144. // br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  145. // return
  146. //}
  147. //if industrialManagementIds == "" {
  148. // br.Ret = 200
  149. // br.Success = true
  150. // br.Msg = "获取成功"
  151. // br.Data = resp
  152. // return
  153. //}
  154. //condition += ` AND man.industrial_management_id IN (` + industrialManagementIds + `)`
  155. condition += ` AND subject_names LIKE '%` + keyWord + `%'`
  156. }
  157. var sqlChartPermissionId string
  158. if ChartPermissionId > 0 {
  159. sqlChartPermissionId += ` AND man_g.industrial_management_id IN ( SELECT industrial_management_id FROM cygx_industrial_management WHERE chart_permission_id = ` + strconv.Itoa(ChartPermissionId) + ` ) `
  160. condition += ` AND man.chart_permission_id IN (` + strconv.Itoa(ChartPermissionId) + `)`
  161. }
  162. // 深度覆盖
  163. if deepCover == 1 {
  164. // 查询深标签产业报告数
  165. var deepCondition string
  166. var deepPars []interface{}
  167. deepCondition += ` AND man.is_deep_label = 1`
  168. if ChartPermissionId > 0 {
  169. deepCondition += ` AND man.chart_permission_id = ?`
  170. deepPars = append(deepPars, ChartPermissionId)
  171. }
  172. industryCountList, e := models.GetIndustryArtCountByCondition(deepCondition, deepPars)
  173. if e != nil {
  174. br.Msg = "获取信息失败"
  175. br.ErrMsg = "获取深标签产业报告数失败, Err: " + e.Error()
  176. return
  177. }
  178. deepIdArr := make([]string, 0)
  179. for i := range industryCountList {
  180. if industryCountList[i].ArtNum > 10 {
  181. deepIdArr = append(deepIdArr, strconv.Itoa(industryCountList[i].IndustrialManagementId))
  182. }
  183. }
  184. deepIds := strings.Join(deepIdArr, ",")
  185. if deepIds != "" {
  186. condition = `AND man.industrial_management_id IN (` + deepIds + `)`
  187. }
  188. }
  189. // 推荐关注
  190. if recommendFocus == 1 {
  191. condition += ` AND man.recommended_index >= 50`
  192. }
  193. // 列表总数据量
  194. var list []*models.IndustrialManagement
  195. total, err := models.GetIndustrialManagementAllCount(condition)
  196. if err != nil {
  197. br.Msg = "获取信息失败"
  198. br.ErrMsg = "获取数量失败,Err:" + err.Error()
  199. return
  200. }
  201. page := paging.GetPaging(currentIndex, pageSize, total)
  202. if orderColumn == "" {
  203. orderColumn = "NewTime"
  204. }
  205. if orderColumn == "NewTime" {
  206. orderSrt = "update_time DESC"
  207. } else {
  208. orderSrt = "man.recommended_index DESC,update_time DESC"
  209. }
  210. if ChartPermissionId == 0 {
  211. ChartPermissionId = 20
  212. }
  213. // 阅读第三的产业详情
  214. //detailHot3, err := models.GetIndustrialManagementHot3(ChartPermissionId)
  215. //if err != nil {
  216. // br.Msg = "获取信息失败"
  217. // br.ErrMsg = "获取信息失败,Err:" + err.Error()
  218. // return
  219. //}
  220. list, err = models.GetIndustrialManagementAll(uid, condition, orderSrt, startSize, pageSize)
  221. if err != nil {
  222. br.Msg = "获取信息失败"
  223. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  224. return
  225. }
  226. // 获取近一个月产业报告阅读次数最多的产业
  227. var topCond string
  228. var topPars []interface{}
  229. topReadIndustryId := 0
  230. if ChartPermissionId > 0 {
  231. topCond += ` AND chart_permission_id = ?`
  232. topPars = append(topPars, ChartPermissionId)
  233. }
  234. topReadIndustry, e := models.GetTopOneMonthArtReadNumIndustry(topCond, topPars)
  235. if e != nil && e.Error() != utils.ErrNoRow() {
  236. br.Msg = "获取信息失败"
  237. br.ErrMsg = "获取近一个月报告阅读次数最多的产业失败, Err: " + e.Error()
  238. return
  239. }
  240. if topReadIndustry != nil {
  241. topReadIndustryId = topReadIndustry.IndustrialManagementId
  242. }
  243. nowTime := time.Now().Local()
  244. threeMonBefore := nowTime.AddDate(0, -3, 0)
  245. for k, v := range list {
  246. industrialSubjectList, err := models.GetIndustrialSubjectAll(v.IndustrialManagementId)
  247. if err != nil {
  248. br.Msg = "获取信息失败"
  249. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  250. return
  251. }
  252. list[k].IndustrialSubjectList = industrialSubjectList
  253. list[k].LayoutTime = utils.TimeRemoveHms(v.LayoutTime)
  254. newArtinfo, err := models.GetIndustrialNewArticleDetail(v.IndustrialManagementId)
  255. if err != nil {
  256. br.Msg = "获取信息失败"
  257. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  258. return
  259. }
  260. list[k].UpdateTime = utils.TimeRemoveHms(newArtinfo.PublishDate)
  261. recordCount, err := models.GetUserToArticleCount(uid, newArtinfo.ArticleId)
  262. if err != nil && err.Error() != utils.ErrNoRow() {
  263. br.Msg = "获取信息失败"
  264. br.ErrMsg = "获取信息失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(newArtinfo.ArticleId)
  265. return
  266. }
  267. if recordCount == 0 && user.CreatedTime.Before(utils.StrTimeToTime(newArtinfo.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(newArtinfo.PublishDate)) {
  268. list[k].IsRed = true
  269. }
  270. // 原:关联的报告阅读量大于等于阅读第三的产业,则标记热门
  271. //if v.ArticleReadNum >= detailHot3.ArticleReadNum {
  272. // list[k].IsHot = true
  273. //}
  274. // 近一个月报告阅读次数最多的产业标记Hot
  275. if topReadIndustryId > 0 && list[k].IndustrialManagementId == topReadIndustryId {
  276. list[k].IsHot = true
  277. }
  278. // 关联报告发布时间均在3个月内则标记New
  279. if v.MinReportTime != "" {
  280. t, e := time.Parse(utils.FormatDateTime, v.MinReportTime)
  281. if e != nil {
  282. br.Msg = "获取信息失败"
  283. br.ErrMsg = "报告最早发布时间有误, Err: " + e.Error()
  284. return
  285. }
  286. if t.After(threeMonBefore) {
  287. list[k].IsNew = true
  288. }
  289. }
  290. }
  291. //记录用户搜索的筛选条件
  292. if orderColumnNew != "" {
  293. item := new(models.CygxReportIndustrialSeaarchHistory)
  294. item.UserId = user.UserId
  295. item.Mobile = user.Mobile
  296. item.CompanyId = user.CompanyId
  297. item.CompanyName = user.CompanyName
  298. item.CreateTime = time.Now()
  299. item.IsDeepLabel = isDeepLabel
  300. item.IsNewLabel = isNewLabel
  301. item.ChartPermissionId = ChartPermissionId
  302. if orderColumnNew == "NewTime" {
  303. item.OrderColumn = "0"
  304. } else {
  305. item.OrderColumn = "1"
  306. }
  307. go models.AddCygxReportIndustrialSeaarchHistory(item)
  308. }
  309. resp.List = list
  310. resp.Paging = page
  311. br.Ret = 200
  312. br.Success = true
  313. br.Msg = "获取成功"
  314. br.Data = resp
  315. }
  316. // @Title 产业下所关联的文章分类列表
  317. // @Description 产业下所关联的文章分类列表接口
  318. // @Param IndustrialManagementId query int true "产业ID"
  319. // @Success 200 {object} models.IndustrialToArticleCategoryListRep
  320. // @router /toArticleCategoryList [get]
  321. func (this *ReportController) ArticleCategoryList() {
  322. br := new(models.BaseResponse).Init()
  323. defer func() {
  324. this.Data["json"] = br
  325. this.ServeJSON()
  326. }()
  327. user := this.User
  328. if user == nil {
  329. br.Msg = "请重新登录"
  330. br.Ret = 408
  331. return
  332. }
  333. uid := user.UserId
  334. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  335. if industrialManagementId < 1 {
  336. br.Msg = "请输入分类ID"
  337. return
  338. }
  339. detail, err := models.GetIndustrialManagementDetail(industrialManagementId)
  340. if err != nil {
  341. br.Msg = "获取信息失败"
  342. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  343. return
  344. }
  345. list, err := models.IndustrialToArticleCategory(industrialManagementId, detail.ChartPermissionId)
  346. if err != nil {
  347. br.Msg = "获取信息失败"
  348. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  349. return
  350. }
  351. for k, v := range list {
  352. recordCount, err := models.IndustrialUserRecordArticleCount(uid, industrialManagementId, v.CategoryId)
  353. if err != nil && err.Error() != utils.ErrNoRow() {
  354. br.Msg = "获取信息失败"
  355. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  356. return
  357. }
  358. Newdetail, err := models.GetNewIndustrialUserRecordArticle(industrialManagementId, v.CategoryId)
  359. if err != nil {
  360. br.Msg = "获取信息失败"
  361. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  362. return
  363. }
  364. if recordCount == 0 && user.CreatedTime.Before(utils.StrTimeToTime(Newdetail.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(Newdetail.PublishDate)) {
  365. list[k].IsRed = true
  366. }
  367. }
  368. //detail, err := models.GetIndustrialManagementDetail(industrialManagementId)
  369. //if err != nil {
  370. // br.Msg = "获取信息失败"
  371. // br.ErrMsg = "获取信息失败,Err:" + err.Error()
  372. // return
  373. //}
  374. resp := new(models.IndustrialToArticleCategoryListRep)
  375. resp.List = list
  376. resp.LayoutTime = utils.TimeRemoveHms(detail.LayoutTime)
  377. resp.IndustryName = detail.IndustryName
  378. resp.IndustrialManagementId = industrialManagementId
  379. br.Ret = 200
  380. br.Success = true
  381. br.Msg = "获取成功"
  382. br.Data = resp
  383. }
  384. // @Title 产业文章列表接口
  385. // @Description 获取产业文章列表接口
  386. // @Param PageSize query int true "每页数据条数"
  387. // @Param CurrentIndex query int true "当前页页码,从1开始"
  388. // @Param CategoryId query int true "分类ID"
  389. // @Param IndustrialManagementId query int true "产业ID"
  390. // @Success 200 {object} models.TacticsListResp
  391. // @router /industry/ArticleList [get]
  392. func (this *ReportController) List() {
  393. br := new(models.BaseResponse).Init()
  394. defer func() {
  395. this.Data["json"] = br
  396. this.ServeJSON()
  397. }()
  398. user := this.User
  399. if user == nil {
  400. br.Msg = "请重新登录"
  401. br.Ret = 408
  402. return
  403. }
  404. uid := user.UserId
  405. pageSize, _ := this.GetInt("PageSize")
  406. currentIndex, _ := this.GetInt("CurrentIndex")
  407. categoryId, _ := this.GetInt("CategoryId")
  408. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  409. var startSize int
  410. if pageSize <= 0 {
  411. pageSize = utils.PageSize20
  412. }
  413. if currentIndex <= 0 {
  414. currentIndex = 1
  415. }
  416. startSize = paging.StartIndex(currentIndex, pageSize)
  417. var pars []interface{}
  418. var total int
  419. resp := new(models.TacticsListResp)
  420. page := paging.GetPaging(currentIndex, pageSize, total)
  421. if categoryId < 1 {
  422. br.Msg = "请输入分类ID"
  423. return
  424. }
  425. if industrialManagementId < 1 {
  426. br.Msg = "请输入产业ID"
  427. return
  428. }
  429. //获取该产业下所对应的行业图片
  430. detail, errCategory := models.GetdetailByCategoryIdOne(categoryId)
  431. if errCategory != nil {
  432. br.Msg = "获取信息失败"
  433. br.ErrMsg = "获取信息失败,Err:" + errCategory.Error() + "categoryID 不存在:" + strconv.Itoa(categoryId)
  434. return
  435. }
  436. //对应行业的图片
  437. detailChartPermissionUrl, err := models.GetConfigByCode("category_chart_permissionimg_url")
  438. if err != nil {
  439. br.Msg = "获取数据失败"
  440. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  441. return
  442. }
  443. chartPermissionUrlList := strings.Split(detailChartPermissionUrl.ConfigValue, "{|}")
  444. mapChartPermission := make(map[string]string)
  445. var permissionName string
  446. var imgUrlChartPermission string
  447. for _, v := range chartPermissionUrlList {
  448. vslice := strings.Split(v, "_")
  449. permissionName = vslice[0]
  450. imgUrlChartPermission = vslice[len(vslice)-1]
  451. mapChartPermission[permissionName] = imgUrlChartPermission
  452. }
  453. total, err = models.GetReportIndustrialCount(categoryId, industrialManagementId)
  454. if err != nil {
  455. br.Msg = "获取信息失败"
  456. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  457. return
  458. }
  459. page = paging.GetPaging(currentIndex, pageSize, total)
  460. list, err := models.GetReportIndustrialList(pars, categoryId, industrialManagementId, uid, startSize, pageSize)
  461. if err != nil {
  462. br.Msg = "获取信息失败"
  463. br.ErrMsg = "获取帖子数据失败,Err:" + err.Error()
  464. return
  465. }
  466. //对应分类的所图片
  467. detailCategoryUrl, err := models.GetConfigByCode("category_map_img_url")
  468. if err != nil {
  469. br.Msg = "获取数据失败"
  470. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  471. return
  472. }
  473. categoryUrlList := strings.Split(detailCategoryUrl.ConfigValue, "{|}")
  474. mapCategoryUrl := make(map[string]string)
  475. var categoryIdStr string
  476. var imgUrlChart string
  477. for _, v := range categoryUrlList {
  478. vslice := strings.Split(v, "_")
  479. categoryIdStr = vslice[0]
  480. imgUrlChart = vslice[len(vslice)-1]
  481. mapCategoryUrl[categoryIdStr] = imgUrlChart
  482. }
  483. lenList := len(list)
  484. for i := 0; i < lenList; i++ {
  485. item := list[i]
  486. list[i].Body, _ = services.GetReportContentTextSub(item.Body)
  487. //list[i].Abstract = html.UnescapeString(item.Abstract)
  488. list[i].Abstract, _ = services.GetReportContentTextSub(item.Abstract)
  489. //list[i].Annotation = services.GetAnnotationTextSub(item.Annotation)
  490. }
  491. for k, v := range list {
  492. if v.Readnum == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishDate)) {
  493. list[k].IsRed = true
  494. }
  495. if v.VideoUrl != "" {
  496. list[k].IsHaveVideo = true
  497. }
  498. list[k].ImgUrlPc = mapCategoryUrl[v.CategoryId]
  499. if mapCategoryUrl[v.CategoryId] == "" {
  500. if detail.ChartPermissionId == utils.YI_YAO_ID {
  501. list[k].ImgUrlPc = utils.YI_YAO_QI_TA
  502. }
  503. }
  504. }
  505. resp.CategoryImgUrlPc = mapChartPermission[detail.ChartPermissionName]
  506. resp.List = list
  507. resp.Paging = page
  508. br.Ret = 200
  509. br.Success = true
  510. br.Msg = "获取成功"
  511. br.Data = resp
  512. }
  513. // @Title 置顶/取消置顶
  514. // @Description 置顶
  515. // @Param request body models.CygxIndustryTopRep true "type json string"
  516. // @Success 200
  517. // @router /top [post]
  518. func (this *ReportController) ArticleCollect() {
  519. br := new(models.BaseResponse).Init()
  520. defer func() {
  521. this.Data["json"] = br
  522. this.ServeJSON()
  523. }()
  524. user := this.User
  525. if user == nil {
  526. br.Msg = "请重新登录"
  527. br.Ret = 408
  528. return
  529. }
  530. uid := user.UserId
  531. var req models.CygxIndustryTopRep
  532. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  533. if err != nil {
  534. br.Msg = "参数解析异常!"
  535. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  536. return
  537. }
  538. industrialManagementId := req.IndustrialManagementId
  539. countIndustrial, err := models.GetIndustrialManagementCount(industrialManagementId)
  540. if err != nil {
  541. br.Msg = "获取数据失败!"
  542. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  543. return
  544. }
  545. if countIndustrial == 0 {
  546. br.Msg = "产业不存在!"
  547. br.ErrMsg = "产业ID不存在:" + strconv.Itoa(industrialManagementId)
  548. return
  549. }
  550. count, err := models.GetCygxIndustryTop(uid, industrialManagementId)
  551. if err != nil {
  552. br.Msg = "获取数据失败!"
  553. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  554. return
  555. }
  556. resp := new(models.ArticleCollectResp)
  557. if count <= 0 {
  558. item := new(models.CygxIndustryTop)
  559. item.IndustrialManagementId = req.IndustrialManagementId
  560. item.UserId = uid
  561. item.CreateTime = time.Now()
  562. _, err = models.AddCygxIndustryTop(item)
  563. if err != nil {
  564. br.Msg = "置顶失败"
  565. br.ErrMsg = "置顶失败,Err:" + err.Error()
  566. return
  567. }
  568. br.Msg = "置顶成功"
  569. resp.Status = 1
  570. } else {
  571. err = models.RemoveCygxIndustryTop(uid, industrialManagementId)
  572. if err != nil {
  573. br.Msg = "取消置顶失败"
  574. br.ErrMsg = "取消置顶失败,Err:" + err.Error()
  575. return
  576. }
  577. br.Msg = "已取消置顶"
  578. resp.Status = 2
  579. }
  580. br.Ret = 200
  581. br.Success = true
  582. br.Data = resp
  583. }
  584. // @Title 关注/取消关注产业
  585. // @Description 关注/取消关注 接口
  586. // @Param request body models.CygxIndustryFllowRep true "type json string"
  587. // @Success 200
  588. // @router /fllow [post]
  589. func (this *ReportController) Fllow() {
  590. br := new(models.BaseResponse).Init()
  591. defer func() {
  592. this.Data["json"] = br
  593. this.ServeJSON()
  594. }()
  595. user := this.User
  596. if user == nil {
  597. br.Msg = "请重新登录"
  598. br.Ret = 408
  599. return
  600. }
  601. uid := user.UserId
  602. var req models.CygxIndustryFllowRep
  603. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  604. if err != nil {
  605. br.Msg = "参数解析异常!"
  606. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  607. return
  608. }
  609. industrialManagementId := req.IndustrialManagementId
  610. var condition string
  611. countIndustrial, err := models.GetIndustrialManagementCount(industrialManagementId)
  612. if err != nil {
  613. br.Msg = "获取数据失败!"
  614. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  615. return
  616. }
  617. if countIndustrial == 0 {
  618. br.Msg = "产业不存在!"
  619. br.ErrMsg = "产业ID不存在:" + strconv.Itoa(industrialManagementId)
  620. return
  621. }
  622. count, err := models.GetCountCygxIndustryFllow(uid, industrialManagementId, condition)
  623. if err != nil {
  624. br.Msg = "获取数据失败!"
  625. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  626. return
  627. }
  628. resp := new(models.CygxIndustryFllowResp)
  629. countUser, err := models.GetCountCygxIndustryFllowByUid(uid)
  630. if countUser == 0 {
  631. resp.GoFollow = true
  632. }
  633. if count == 0 {
  634. item := new(models.CygxIndustryFllow)
  635. item.IndustrialManagementId = industrialManagementId
  636. item.UserId = uid
  637. item.Email = user.Email
  638. item.Mobile = user.Mobile
  639. item.RealName = user.RealName
  640. item.CompanyId = user.CompanyId
  641. item.CompanyName = user.CompanyName
  642. item.Type = 1
  643. item.CreateTime = time.Now()
  644. item.ModifyTime = time.Now()
  645. _, err = models.AddCygxIndustryFllow(item)
  646. if err != nil {
  647. br.Msg = "操作失败"
  648. br.ErrMsg = "操作失败,Err:" + err.Error()
  649. return
  650. }
  651. resp.Status = 1
  652. } else {
  653. err = models.RemoveCygxIndustryFllow(uid, industrialManagementId)
  654. if err != nil {
  655. br.Msg = "操作失败"
  656. br.ErrMsg = "取消关注失败,Err:" + err.Error()
  657. return
  658. }
  659. }
  660. //处理是否关注全部赛道字段
  661. go services.IndustryFllowWithTrack(industrialManagementId, count, uid)
  662. br.Msg = "操作成功"
  663. br.Ret = 200
  664. br.Success = true
  665. br.Data = resp
  666. }
  667. // @Title 产业报告分类关联作者列表接口
  668. // @Description 获取产业报告分类关联作者列表接口
  669. // @Param ChartPermissionId query int true "分类ID"
  670. // @Param PageSize query int true "每页数据条数"
  671. // @Param CurrentIndex query int true "当前页页码,从1开始"
  672. // @Success 200 {object} models.CygxArticleDepartmentList
  673. // @router /industryListByDepartment [get]
  674. func (this *ReportController) IndustryListByDepartment() {
  675. br := new(models.BaseResponse).Init()
  676. defer func() {
  677. this.Data["json"] = br
  678. this.ServeJSON()
  679. }()
  680. user := this.User
  681. if user == nil {
  682. br.Msg = "请重新登录"
  683. br.Ret = 408
  684. return
  685. }
  686. uid := user.UserId
  687. pageSize, _ := this.GetInt("PageSize")
  688. currentIndex, _ := this.GetInt("CurrentIndex")
  689. //chartPermissionId, _ := this.GetInt("ChartPermissionId")
  690. var startSize int
  691. var condition string
  692. //condition = ` AND a.publish_status=1 AND m.chart_permission_id =` + strconv.Itoa(chartPermissionId)
  693. condition = ` AND a.publish_status=1 `
  694. if pageSize <= 0 {
  695. pageSize = utils.PageSize20
  696. }
  697. if currentIndex <= 0 {
  698. currentIndex = 1
  699. }
  700. startSize = paging.StartIndex(currentIndex, pageSize)
  701. total, err := models.GetArticleDepartmentCount(condition)
  702. page := paging.GetPaging(currentIndex, pageSize, total)
  703. resp := new(models.CygxArticleDepartmentList)
  704. userType, _, err := services.GetUserType(user.CompanyId)
  705. if err != nil {
  706. br.Msg = "获取信息失败"
  707. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  708. return
  709. }
  710. if userType == 1 {
  711. resp.Paging = page
  712. br.Ret = 200
  713. br.Success = true
  714. br.Msg = "获取成功"
  715. br.Data = resp
  716. return
  717. }
  718. resp.HaveResearch = true
  719. //获取作者信息,并排序
  720. list, err := models.GetCygxArticleDepartmentList(startSize, pageSize, condition, uid)
  721. if err != nil {
  722. br.Msg = "获取信息失败"
  723. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  724. return
  725. }
  726. for k, v := range list {
  727. artList, err := models.GetArticleByDepartmentId(v.DepartmentId)
  728. if err != nil {
  729. br.Msg = "获取信息失败"
  730. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  731. return
  732. }
  733. for k2, v2 := range artList {
  734. subjectNames, err := models.GetSubjectNames(v2.ArticleId)
  735. if err != nil {
  736. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  737. br.ErrMsg = "获取失败,Err:" + err.Error()
  738. return
  739. }
  740. var subjectNamesNew string
  741. if len(subjectNames) > 0 {
  742. slice := strings.Split(subjectNames, "/")
  743. for k3, v3 := range slice {
  744. if k3 < 4 {
  745. subjectNamesNew += v3 + "/"
  746. }
  747. }
  748. }
  749. industryName, err := models.GetIndustrialNames(v2.ArticleId)
  750. if err != nil && err.Error() != utils.ErrNoRow() {
  751. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  752. br.ErrMsg = "获取失败,Err:" + err.Error()
  753. return
  754. }
  755. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  756. artList[k2].SubjectName = subjectNamesNew
  757. artList[k2].DepartmentId = v.DepartmentId
  758. if subjectNamesNew == "" {
  759. artList[k2].IndustryName = industryName
  760. } else {
  761. artList[k2].IndustryName = industryName + "-" + subjectNamesNew
  762. }
  763. if artList[k2].IsReport == "1" {
  764. artList[k2].IndustryName = "【观点】" + artList[k2].IndustryName
  765. } else {
  766. artList[k2].IndustryName = "【纪要】" + artList[k2].IndustryName
  767. }
  768. }
  769. list[k].List = artList
  770. if v.FollowNum > 0 {
  771. list[k].IsMyFollow = true
  772. }
  773. }
  774. listnNew, err := models.GetIndustrialSubjectByDepartmentNew()
  775. if err != nil {
  776. br.Msg = "获取信息失败"
  777. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  778. return
  779. }
  780. if len(listnNew) > 0 {
  781. for _, v := range listnNew {
  782. firstStr := strings.Index(v.IndustrialAndSubjectIds, "—")
  783. Management := new(models.IndustrialManagementIdInt)
  784. if firstStr == 0 {
  785. Management.IndustryName = v.IndustryName
  786. } else {
  787. listSub, err := models.GetIndustrialManagementSubjectList(v.ArticleId)
  788. if err != nil {
  789. br.Msg = "获取信息失败"
  790. br.ErrMsg = "获取关联标的列表失败,Err:" + err.Error()
  791. return
  792. }
  793. var subjectNamesNew string
  794. for _, v1 := range listSub {
  795. subjectNamesNew += v1.SubjectName + "/"
  796. }
  797. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  798. Management.IndustryName = subjectNamesNew
  799. }
  800. Management.IndustrialManagementId = v.IndustrialManagementId
  801. Management.ArticleId = v.ArticleId
  802. resp.ListnNew = append(resp.ListnNew, Management)
  803. }
  804. }
  805. resp.List = list
  806. resp.Paging = page
  807. br.Ret = 200
  808. br.Success = true
  809. br.Msg = "获取成功"
  810. br.Data = resp
  811. }
  812. // @Title 关注作者/取消关注作者
  813. // @Description 关注作者/取消关注作者 接口
  814. // @Param request body models.CygxArticleDepartmentId true "type json string"
  815. // @Success 200
  816. // @router /fllowDepartment [post]
  817. func (this *ReportController) FllowDepartment() {
  818. br := new(models.BaseResponse).Init()
  819. defer func() {
  820. this.Data["json"] = br
  821. this.ServeJSON()
  822. }()
  823. user := this.User
  824. if user == nil {
  825. br.Msg = "请重新登录"
  826. br.Ret = 408
  827. return
  828. }
  829. uid := user.UserId
  830. var req models.CygxArticleDepartmentId
  831. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  832. if err != nil {
  833. br.Msg = "参数解析异常!"
  834. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  835. return
  836. }
  837. departmentId := req.DepartmentId
  838. var condition string
  839. countDepartment, err := models.GetDepartmentCount(departmentId)
  840. if err != nil {
  841. br.Msg = "获取数据失败!"
  842. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  843. return
  844. }
  845. if countDepartment == 0 {
  846. br.Msg = "作者不存在!"
  847. br.ErrMsg = "作者ID不存在:" + strconv.Itoa(departmentId)
  848. return
  849. }
  850. countUser, err := models.GetArticleDepartmentFollowByUid(uid)
  851. count, err := models.GetArticleDepartmentFollow(uid, departmentId, condition)
  852. if err != nil {
  853. br.Msg = "获取数据失败!"
  854. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  855. return
  856. }
  857. resp := new(models.CygxArticleDepartmentFollowResp)
  858. if countUser == 0 {
  859. resp.GoFollow = true
  860. }
  861. if count == 0 {
  862. item := new(models.CygxArticleDepartmentFollow)
  863. item.DepartmentId = departmentId
  864. item.UserId = uid
  865. item.Email = user.Email
  866. item.Mobile = user.Mobile
  867. item.RealName = user.RealName
  868. item.CompanyId = user.CompanyId
  869. item.CompanyName = user.CompanyName
  870. item.Type = 1
  871. item.CreateTime = time.Now()
  872. item.ModifyTime = time.Now()
  873. _, err = models.AddArticleDepartmentFollow(item)
  874. if err != nil {
  875. br.Msg = "操作失败"
  876. br.ErrMsg = "操作失败,Err:" + err.Error()
  877. return
  878. }
  879. resp.Status = 1
  880. } else {
  881. var doType int
  882. condition = ` AND type = 1`
  883. count, err = models.GetArticleDepartmentFollow(uid, departmentId, condition)
  884. if err != nil {
  885. br.Msg = "操作失败!"
  886. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  887. return
  888. }
  889. if count == 1 {
  890. resp.Status = 2
  891. doType = 2
  892. } else {
  893. resp.Status = 1
  894. doType = 1
  895. }
  896. err = models.RemoveArticleDepartmentFollow(uid, departmentId, doType)
  897. if err != nil {
  898. br.Msg = "操作失败"
  899. br.ErrMsg = "取消关注失败,Err:" + err.Error()
  900. return
  901. }
  902. }
  903. br.Msg = "操作成功"
  904. br.Ret = 200
  905. br.Success = true
  906. br.Data = resp
  907. }
  908. // @Title 研选文章列表接口
  909. // @Description 获取研选文章列表接口
  910. // @Param PageSize query int true "每页数据条数"
  911. // @Param CurrentIndex query int true "当前页页码,从1开始"
  912. // @Param ArticleId query int true "文章id"
  913. // @Param DepartmentId query int true "作者ID"
  914. // @Param IndustrialManagementId query int true "产业ID"
  915. // @Success 200 {object} models.ReportArticleWhichIndustrialRepList
  916. // @router /industry/reportList [get]
  917. func (this *ReportController) ReportList() {
  918. br := new(models.BaseResponse).Init()
  919. defer func() {
  920. this.Data["json"] = br
  921. this.ServeJSON()
  922. }()
  923. user := this.User
  924. if user == nil {
  925. br.Msg = "请重新登录"
  926. br.Ret = 408
  927. return
  928. }
  929. uid := user.UserId
  930. pageSize, _ := this.GetInt("PageSize")
  931. currentIndex, _ := this.GetInt("CurrentIndex")
  932. departmentId, _ := this.GetInt("DepartmentId")
  933. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  934. articleId, _ := this.GetInt("ArticleId")
  935. var condition string
  936. var startSize int
  937. if pageSize <= 0 {
  938. pageSize = utils.PageSize20
  939. }
  940. if currentIndex <= 0 {
  941. currentIndex = 1
  942. }
  943. startSize = paging.StartIndex(currentIndex, pageSize)
  944. var pars []interface{}
  945. var total int
  946. resp := new(models.ReportArticleWhichIndustrialRepList)
  947. page := paging.GetPaging(currentIndex, pageSize, total)
  948. userType, _, err := services.GetUserType(user.CompanyId)
  949. if err != nil {
  950. br.Msg = "获取信息失败"
  951. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  952. return
  953. }
  954. if userType == 1 {
  955. resp.Paging = page
  956. br.Ret = 200
  957. br.Success = true
  958. br.Msg = "获取成功"
  959. br.Data = resp
  960. return
  961. }
  962. resp.HaveResearch = true
  963. if departmentId > 0 {
  964. condition += ` AND art.department_id = ` + strconv.Itoa(departmentId)
  965. detail, err := models.GetArticleDepartmentDateilById(departmentId)
  966. if err != nil {
  967. br.Msg = "获取信息失败"
  968. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  969. return
  970. }
  971. resp.NickName = detail.NickName
  972. }
  973. if industrialManagementId > 0 {
  974. condition += ` AND m.industrial_management_id = ` + strconv.Itoa(industrialManagementId)
  975. }
  976. if articleId > 0 {
  977. detail, err := models.GetArticleDetailById(articleId)
  978. if err != nil {
  979. br.Msg = "获取信息失败"
  980. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  981. return
  982. }
  983. condition += ` AND art.subject_ids = '` + detail.SubjectIds + `'`
  984. }
  985. total, err = models.GetWhichDepartmentCount(condition)
  986. if err != nil {
  987. br.Msg = "获取信息失败"
  988. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  989. return
  990. }
  991. page = paging.GetPaging(currentIndex, pageSize, total)
  992. condition += ` GROUP BY art.article_id ORDER BY art.publish_date DESC`
  993. list, err := models.IndustrialToArticleWhichDepartment(condition, pars, uid, startSize, pageSize)
  994. if err != nil {
  995. br.Msg = "获取失败"
  996. br.ErrMsg = "获取失败,Err:" + err.Error()
  997. return
  998. }
  999. for k, v := range list {
  1000. if v.Readnum == 0 {
  1001. list[k].IsRed = true
  1002. }
  1003. list[k].IsResearch = true
  1004. subjectNames, err := models.GetSubjectNames(v.ArticleId)
  1005. if err != nil {
  1006. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1007. br.ErrMsg = "获取失败,Err:" + err.Error()
  1008. return
  1009. }
  1010. var subjectNamesNew string
  1011. if len(subjectNames) > 0 {
  1012. slice := strings.Split(subjectNames, "/")
  1013. for k3, v3 := range slice {
  1014. if k3 < 4 {
  1015. subjectNamesNew += v3 + "/"
  1016. }
  1017. }
  1018. }
  1019. industryName, err := models.GetIndustrialNames(v.ArticleId)
  1020. if err != nil && err.Error() != utils.ErrNoRow() {
  1021. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1022. br.ErrMsg = "获取失败,Err:" + err.Error()
  1023. return
  1024. }
  1025. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  1026. list[k].SubjectName = subjectNamesNew
  1027. if subjectNamesNew != "" {
  1028. list[k].IndustryName = industryName + "-" + subjectNamesNew
  1029. } else {
  1030. list[k].IndustryName = industryName
  1031. }
  1032. resp.IndustryName = industryName
  1033. list[k].ImgUrlPc = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202112/20211206/UvMadc63MLZY6rnQZQgGZAFXkqwf.png"
  1034. }
  1035. resp.List = list
  1036. resp.Paging = page
  1037. br.Ret = 200
  1038. br.Success = true
  1039. br.Msg = "获取成功"
  1040. br.Data = resp
  1041. }
  1042. // @Title 研选最新主题关键词文章列表接口
  1043. // @Description 获取研选最新主题关键词文章列表接口
  1044. // @Param PageSize query int true "每页数据条数"
  1045. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1046. // @Param ArticleId query int true "文章id"
  1047. // @Success 200 {object} models.ReportArticleWhichIndustrialRepList
  1048. // @router /industry/reportListNew [get]
  1049. func (this *ReportController) ReportListNew() {
  1050. br := new(models.BaseResponse).Init()
  1051. defer func() {
  1052. this.Data["json"] = br
  1053. this.ServeJSON()
  1054. }()
  1055. user := this.User
  1056. if user == nil {
  1057. br.Msg = "请重新登录"
  1058. br.Ret = 408
  1059. return
  1060. }
  1061. uid := user.UserId
  1062. pageSize, _ := this.GetInt("PageSize")
  1063. currentIndex, _ := this.GetInt("CurrentIndex")
  1064. articleId, _ := this.GetInt("ArticleId")
  1065. var condition string
  1066. var startSize int
  1067. if pageSize <= 0 {
  1068. pageSize = utils.PageSize20
  1069. }
  1070. if currentIndex <= 0 {
  1071. currentIndex = 1
  1072. }
  1073. startSize = paging.StartIndex(currentIndex, pageSize)
  1074. var pars []interface{}
  1075. var total int
  1076. resp := new(models.ReportArticleWhichIndustrialRepList)
  1077. page := paging.GetPaging(currentIndex, pageSize, total)
  1078. userType, _, err := services.GetUserType(user.CompanyId)
  1079. if err != nil {
  1080. br.Msg = "获取信息失败"
  1081. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  1082. return
  1083. }
  1084. if userType == 1 {
  1085. resp.Paging = page
  1086. br.Ret = 200
  1087. br.Success = true
  1088. br.Msg = "获取成功"
  1089. br.Data = resp
  1090. return
  1091. }
  1092. resp.HaveResearch = true
  1093. if articleId > 0 {
  1094. detail, err := models.GetArticleDetailById(articleId)
  1095. if err != nil {
  1096. br.Msg = "获取信息失败"
  1097. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1098. return
  1099. }
  1100. firstStr := strings.Index(detail.IndustrialAndSubjectIds, "—")
  1101. if firstStr == 0 {
  1102. condition += ` AND art.industrial_management_id = '` + strconv.Itoa(detail.IndustrialManagementId) + `'`
  1103. } else {
  1104. condition += ` AND art.industrial_and_subject_ids = '` + detail.IndustrialAndSubjectIds + `'`
  1105. }
  1106. }
  1107. total, err = models.GetWhichDepartmentCount(condition)
  1108. if err != nil {
  1109. br.Msg = "获取信息失败"
  1110. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  1111. return
  1112. }
  1113. page = paging.GetPaging(currentIndex, pageSize, total)
  1114. condition += ` GROUP BY art.article_id ORDER BY art.publish_date DESC`
  1115. list, err := models.IndustrialToArticleWhichDepartment(condition, pars, uid, startSize, pageSize)
  1116. if err != nil {
  1117. br.Msg = "获取失败"
  1118. br.ErrMsg = "获取失败,Err:" + err.Error()
  1119. return
  1120. }
  1121. for k, v := range list {
  1122. if v.Readnum == 0 {
  1123. list[k].IsRed = true
  1124. }
  1125. list[k].IsResearch = true
  1126. list[k].ImgUrlPc = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202112/20211206/UvMadc63MLZY6rnQZQgGZAFXkqwf.png"
  1127. subjectNames, err := models.GetSubjectNames(v.ArticleId)
  1128. if err != nil {
  1129. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1130. br.ErrMsg = "获取失败,Err:" + err.Error()
  1131. return
  1132. }
  1133. var subjectNamesNew string
  1134. if len(subjectNames) > 0 {
  1135. slice := strings.Split(subjectNames, "/")
  1136. for k3, v3 := range slice {
  1137. if k3 < 4 {
  1138. subjectNamesNew += v3 + "/"
  1139. }
  1140. }
  1141. }
  1142. industryName, err := models.GetIndustrialNames(v.ArticleId)
  1143. if err != nil && err.Error() != utils.ErrNoRow() {
  1144. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1145. br.ErrMsg = "获取失败,Err:" + err.Error()
  1146. return
  1147. }
  1148. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  1149. list[k].SubjectName = subjectNamesNew
  1150. if subjectNamesNew != "" {
  1151. list[k].IndustryName = industryName + "-" + subjectNamesNew
  1152. } else {
  1153. list[k].IndustryName = industryName
  1154. }
  1155. resp.IndustryName = industryName
  1156. }
  1157. resp.List = list
  1158. resp.Paging = page
  1159. br.Ret = 200
  1160. br.Success = true
  1161. br.Msg = "获取成功"
  1162. br.Data = resp
  1163. }
  1164. // @Title 是否展示绝密内参
  1165. // @Description 获取是否展示绝密内参接口
  1166. // @Param request body models.IsShow true "type json string"
  1167. // @Success 200
  1168. // @router /isShow [get]
  1169. func (this *ReportController) IsShow() {
  1170. br := new(models.BaseResponse).Init()
  1171. defer func() {
  1172. this.Data["json"] = br
  1173. this.ServeJSON()
  1174. }()
  1175. user := this.User
  1176. if user == nil {
  1177. br.Msg = "请重新登录"
  1178. br.Ret = 408
  1179. return
  1180. }
  1181. var resp models.IsShow
  1182. resp.IsShowChart = true
  1183. resp.IsShowResearch = true
  1184. resp.LinkWxExplain = utils.LINK_WX_EXPLAIN
  1185. resp.YanXuan_Explain = true
  1186. mobile := user.Mobile
  1187. if mobile == "" {
  1188. br.Ret = 200
  1189. br.Success = true
  1190. br.Data = resp
  1191. return
  1192. }
  1193. total, _ := models.GetUserIsAdminCount(mobile)
  1194. if total > 0 {
  1195. resp.IsShowList = true
  1196. }
  1197. resp.IsShow = true
  1198. br.Ret = 200
  1199. br.Success = true
  1200. br.Data = resp
  1201. }
  1202. // @Title 报告精选、本周研究汇总、上周纪要汇总列表
  1203. // @Description 获取报告精选、本周研究汇总、上周纪要汇总列表接口
  1204. // @Param PageSize query int true "每页数据条数"
  1205. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1206. // @Param ReportType string query true "报告类型 ,1报告精选、2本周研究汇总、3上周纪要汇总"
  1207. // @Success 200 {object} models.CygxReportSelectionListPublicRep
  1208. // @router /reportList/byType [get]
  1209. func (this *ReportController) ReportListByType() {
  1210. br := new(models.BaseResponse).Init()
  1211. defer func() {
  1212. this.Data["json"] = br
  1213. this.ServeJSON()
  1214. }()
  1215. user := this.User
  1216. if user == nil {
  1217. br.Msg = "请重新登录"
  1218. br.Ret = 408
  1219. return
  1220. }
  1221. uid := user.UserId
  1222. pageSize, _ := this.GetInt("PageSize")
  1223. currentIndex, _ := this.GetInt("CurrentIndex")
  1224. reportType := this.GetString("ReportType")
  1225. var condition string
  1226. var startSize int
  1227. if pageSize <= 0 {
  1228. pageSize = utils.PageSize20
  1229. }
  1230. if currentIndex <= 0 {
  1231. currentIndex = 1
  1232. }
  1233. startSize = paging.StartIndex(currentIndex, pageSize)
  1234. var pars []interface{}
  1235. var total int
  1236. resp := new(models.CygxReportSelectionListPublicRep)
  1237. page := paging.GetPaging(currentIndex, pageSize, total)
  1238. var tbdb string
  1239. var readSql string
  1240. var reportTypeStr string
  1241. if reportType == "1" {
  1242. tbdb = "cygx_report_selection"
  1243. reportTypeStr = "bgjx"
  1244. } else if reportType == "2" {
  1245. tbdb = "cygx_research_summary"
  1246. reportTypeStr = "bzyjhz"
  1247. } else if reportType == "3" {
  1248. tbdb = "cygx_minutes_summary"
  1249. reportTypeStr = "szjyhz"
  1250. } else {
  1251. br.Msg = "请选择报告类型"
  1252. return
  1253. }
  1254. fmt.Println(tbdb)
  1255. condition = ` AND publish_status = 1 `
  1256. total, err := models.GetCygxReportSelectionPublic(condition, tbdb, pars)
  1257. if err != nil {
  1258. br.Msg = "获取信息失败"
  1259. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  1260. return
  1261. }
  1262. //研究汇总--报告精选 只显示最新一期,往期都隐藏
  1263. if reportType == "1" {
  1264. startSize = 0
  1265. pageSize = 1
  1266. total = 1
  1267. }
  1268. readSql = ` (SELECT COUNT(1) AS count FROM cygx_report_history_record AS h WHERE h.article_id = art.article_id AND report_type ='` + reportTypeStr + `' AND h.user_id = ` + strconv.Itoa(uid) + `) as read_num`
  1269. page = paging.GetPaging(currentIndex, pageSize, total)
  1270. list, err := models.GetReportSelectionListPublic(condition, readSql, tbdb, pars, startSize, pageSize)
  1271. if err != nil {
  1272. br.Msg = "获取失败"
  1273. br.ErrMsg = "获取失败,Err:" + err.Error()
  1274. return
  1275. }
  1276. for k, v := range list {
  1277. if reportType == "1" {
  1278. list[k].Abstract = v.UpdateDescription
  1279. }
  1280. list[k].PublishDate = utils.StrTimeToTime(v.PublishDate).Format("2006-01-02")
  1281. if v.ReadNum == 0 {
  1282. list[k].IsRed = true
  1283. }
  1284. }
  1285. resp.List = list
  1286. resp.Paging = page
  1287. br.Ret = 200
  1288. br.Success = true
  1289. br.Msg = "获取成功"
  1290. br.Data = resp
  1291. }
  1292. // @Title 获取报告精选详情
  1293. // @Description 获取报告精选详情接口
  1294. // @Param ArticleId query int true "报告ID"
  1295. // @Success 200 {object} models.ReportSelectionLetailResp
  1296. // @router /reportSelection/detail [get]
  1297. func (this *ReportController) Detail() {
  1298. br := new(models.BaseResponse).Init()
  1299. defer func() {
  1300. this.Data["json"] = br
  1301. this.ServeJSON()
  1302. }()
  1303. user := this.User
  1304. if user == nil {
  1305. br.Msg = "请重新登录"
  1306. br.Ret = 408
  1307. return
  1308. }
  1309. uid := user.UserId
  1310. articleId, _ := this.GetInt("ArticleId")
  1311. if articleId < 0 {
  1312. br.Msg = "参数错误"
  1313. br.ErrMsg = "参数错误"
  1314. return
  1315. }
  1316. resp := new(models.ReportSelectionLetailResp)
  1317. //判断用户权限
  1318. hasPermission, err := services.GetUserhasPermission(user)
  1319. if err != nil {
  1320. br.Msg = "获取信息失败"
  1321. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1322. }
  1323. resp.HasPermission = hasPermission
  1324. if hasPermission != 1 {
  1325. br.Ret = 200
  1326. br.Success = true
  1327. br.Msg = "获取成功"
  1328. br.Data = resp
  1329. return
  1330. }
  1331. detail, err := models.GetCygxReportSelectionInfoById(articleId)
  1332. if err != nil {
  1333. br.Msg = "获取信息失败"
  1334. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1335. return
  1336. }
  1337. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  1338. existMap := make(map[int]int)
  1339. var items []*models.ReportSelectionChartPermission
  1340. listLog, err := models.GetReportSelectionlogListAll(articleId)
  1341. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1342. if err != nil {
  1343. br.Msg = "获取失败"
  1344. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1345. return
  1346. }
  1347. //var itemLogs []*models.CygxReportSelectionLogDetail
  1348. for _, v := range listLog {
  1349. item := new(models.ReportSelectionChartPermission)
  1350. if existMap[v.ChartPermissionId] == 0 {
  1351. item.PermissionName = v.PermissionName + "领域深度报告和调研"
  1352. item.IcoLink = v.IcoLink
  1353. listSonLog, err := models.GetReportSelectionlogSonListAll(articleId, v.ChartPermissionId)
  1354. if err != nil && err.Error() != utils.ErrNoRow() {
  1355. br.Msg = "获取信息失败"
  1356. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1357. return
  1358. }
  1359. for k2, v2 := range listSonLog {
  1360. if v2.IndustrialManagementId != "" {
  1361. listIndustrial, err := models.GetIndustrialByIds(v2.IndustrialManagementId)
  1362. if err != nil && err.Error() != utils.ErrNoRow() {
  1363. br.Msg = "获取信息失败"
  1364. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1365. return
  1366. }
  1367. listSonLog[k2].List = listIndustrial
  1368. }
  1369. }
  1370. item.List = listSonLog
  1371. items = append(items, item)
  1372. //itemLogs = make([]*models.CygxReportSelectionLogDetail, 0)
  1373. }
  1374. existMap[v.ChartPermissionId] = v.ChartPermissionId
  1375. }
  1376. historyRecord := new(models.CygxReportHistoryRecord)
  1377. historyRecord.UserId = uid
  1378. historyRecord.ArticleId = articleId
  1379. historyRecord.CreateTime = time.Now()
  1380. historyRecord.Mobile = user.Mobile
  1381. historyRecord.Email = user.Email
  1382. historyRecord.CompanyId = user.CompanyId
  1383. historyRecord.CompanyName = user.CompanyName
  1384. historyRecord.ReportType = "bgjx"
  1385. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1386. if err != nil && err.Error() != utils.ErrNoRow() {
  1387. br.Msg = "获取信息失败"
  1388. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1389. return
  1390. }
  1391. historyRecord.RealName = user.RealName
  1392. if sellerItem != nil {
  1393. historyRecord.SellerName = sellerItem.RealName
  1394. }
  1395. go models.AddCygxReportHistoryRecord(historyRecord)
  1396. resp.List = items
  1397. resp.Detail = detail
  1398. br.Ret = 200
  1399. br.Success = true
  1400. br.Msg = "获取成功"
  1401. br.Data = resp
  1402. }
  1403. // @Title 获取本周研究汇总详情
  1404. // @Description 获取本周研究汇总详情接口
  1405. // @Param ArticleId query int true "报告ID"
  1406. // @Success 200 {object} models.ResearchSummaryLetailResp
  1407. // @router /researchSummary/detail [get]
  1408. func (this *ReportController) ResearchDetail() {
  1409. br := new(models.BaseResponse).Init()
  1410. defer func() {
  1411. this.Data["json"] = br
  1412. this.ServeJSON()
  1413. }()
  1414. user := this.User
  1415. if user == nil {
  1416. br.Msg = "请重新登录"
  1417. br.Ret = 408
  1418. return
  1419. }
  1420. uid := user.UserId
  1421. articleId, _ := this.GetInt("ArticleId")
  1422. if articleId < 0 {
  1423. br.Msg = "参数错误"
  1424. br.ErrMsg = "参数错误"
  1425. return
  1426. }
  1427. resp := new(models.ResearchSummaryLetailResp)
  1428. //判断用户权限
  1429. hasPermission, err := services.GetUserhasPermission(user)
  1430. if err != nil {
  1431. br.Msg = "获取信息失败"
  1432. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1433. }
  1434. resp.HasPermission = hasPermission
  1435. if hasPermission != 1 {
  1436. br.Ret = 200
  1437. br.Success = true
  1438. br.Msg = "获取成功"
  1439. br.Data = resp
  1440. return
  1441. }
  1442. detail, err := models.GetCygxResearchSummaryInfoById(articleId)
  1443. if err != nil {
  1444. br.Msg = "获取信息失败"
  1445. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1446. return
  1447. }
  1448. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format(utils.FormatDate)
  1449. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1450. listFirst, err := models.GetResearchSummarylogListFirst(articleId)
  1451. if err != nil {
  1452. br.Msg = "获取失败"
  1453. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1454. return
  1455. }
  1456. listArticleType, err := models.GetCygxArticleTypeList()
  1457. if err != nil {
  1458. br.Msg = "获取失败"
  1459. br.ErrMsg = "获取文章类型数据失败,Err:" + err.Error()
  1460. return
  1461. }
  1462. for k, v := range listFirst {
  1463. listSecond, err := models.GetResearchSummarylogSonListSecond(articleId, v.Type)
  1464. if err != nil && err.Error() != utils.ErrNoRow() {
  1465. br.Msg = "获取信息失败"
  1466. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1467. return
  1468. }
  1469. for k2, v2 := range listSecond {
  1470. listThird, err := models.GetResearchSummarylogSonListThird(articleId, v2.ChartPermissionId, v.Type)
  1471. if err != nil && err.Error() != utils.ErrNoRow() {
  1472. br.Msg = "获取信息失败"
  1473. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1474. return
  1475. }
  1476. for _, vType := range listArticleType {
  1477. if v2.ChartPermissionId == vType.YanxPermissionId {
  1478. listSecond[k2].IcoLink = vType.IcoLinkM
  1479. listSecond[k2].PermissionName = vType.YanxPermissionName
  1480. }
  1481. }
  1482. //if v2.ChartPermissionId == utils.YanxSummaryPermissionId {
  1483. // listSecond[k2].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1484. // listSecond[k2].PermissionName = "买方研选纪要"
  1485. //} else if v2.ChartPermissionId == utils.YanxViewpointPermissionId {
  1486. // listSecond[k2].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1487. // listSecond[k2].PermissionName = "买方研选观点"
  1488. //}
  1489. if len(listThird) > 0 {
  1490. for k3, v3 := range listThird {
  1491. if v3.VideoUrl != "" {
  1492. listThird[k3].IsHaveVideo = true
  1493. }
  1494. if v3.ReportLink == "0" {
  1495. listThird[k3].ReportLink = ""
  1496. }
  1497. }
  1498. listSecond[k2].List = listThird
  1499. }
  1500. }
  1501. if len(listSecond) > 0 {
  1502. listFirst[k].List = listSecond
  1503. }
  1504. //`description:"类型'SDBG深度报告片篇,’CYDYJY:产业调研纪要’,’SJDP事件点评,’BZCHJH:本周晨会精华’"`
  1505. if v.Type == "SDBG" {
  1506. listFirst[k].ListName = "深度报告"
  1507. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211027/le8AcRjDz0MhA72bVDiaf3d5ALSe.png"
  1508. } else if v.Type == "BZCHJH" {
  1509. listFirst[k].ListName = "本周晨会精华"
  1510. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/DCfekcxaIKGePBsNVu1ULfmNcJBY.png"
  1511. } else if v.Type == "CYDYJY" {
  1512. listFirst[k].ListName = "产业调研纪要"
  1513. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/UPAdozy96z9ypzY04vi0Y3Ogqzji.png"
  1514. } else if v.Type == "SSGS" {
  1515. listFirst[k].ListName = "上市公司调研纪要篇"
  1516. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211101/ujHXB48I8ay9T0XoPRI7lorz7OkL.png"
  1517. } else if v.Type == "SJDP" {
  1518. listFirst[k].ListName = "事件点评"
  1519. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/2a5cXafO3Iws4QcFp1bd5WPdYikV.png"
  1520. } else if v.Type == "YANX" {
  1521. listFirst[k].ListName = "买方研选"
  1522. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1523. }
  1524. }
  1525. historyRecord := new(models.CygxReportHistoryRecord)
  1526. historyRecord.UserId = uid
  1527. historyRecord.ArticleId = articleId
  1528. historyRecord.CreateTime = time.Now()
  1529. historyRecord.Mobile = user.Mobile
  1530. historyRecord.Email = user.Email
  1531. historyRecord.CompanyId = user.CompanyId
  1532. historyRecord.CompanyName = user.CompanyName
  1533. historyRecord.ReportType = "bzyjhz"
  1534. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1535. if err != nil && err.Error() != utils.ErrNoRow() {
  1536. br.Msg = "获取信息失败"
  1537. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1538. return
  1539. }
  1540. historyRecord.RealName = user.RealName
  1541. if sellerItem != nil {
  1542. historyRecord.SellerName = sellerItem.RealName
  1543. }
  1544. go models.AddCygxReportHistoryRecord(historyRecord)
  1545. resp.List = listFirst
  1546. resp.Detail = detail
  1547. br.Ret = 200
  1548. br.Success = true
  1549. br.Msg = "获取成功"
  1550. br.Data = resp
  1551. }
  1552. // @Title 上周纪要汇总内容详情
  1553. // @Description 获取上周纪要汇总内容详情接口
  1554. // @Param ArticleId query int true "报告ID"
  1555. // @Success 200 {object} models.MinutesSummaryLetailResp
  1556. // @router /minutesSummary/detailv4 [get]
  1557. func (this *ReportController) MinutesDetailV4() {
  1558. br := new(models.BaseResponse).Init()
  1559. defer func() {
  1560. this.Data["json"] = br
  1561. this.ServeJSON()
  1562. }()
  1563. user := this.User
  1564. if user == nil {
  1565. br.Msg = "请重新登录"
  1566. br.Ret = 408
  1567. return
  1568. }
  1569. uid := user.UserId
  1570. articleId, _ := this.GetInt("ArticleId")
  1571. if articleId < 0 {
  1572. br.Msg = "参数错误"
  1573. br.ErrMsg = "参数错误"
  1574. return
  1575. }
  1576. resp := new(models.MinutesSummaryLetailRespV4)
  1577. //判断用户权限
  1578. hasPermission, err := services.GetUserhasPermission(user)
  1579. if err != nil {
  1580. br.Msg = "获取信息失败"
  1581. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1582. }
  1583. resp.HasPermission = hasPermission
  1584. if hasPermission != 1 {
  1585. br.Ret = 200
  1586. br.Success = true
  1587. br.Msg = "获取成功"
  1588. br.Data = resp
  1589. return
  1590. }
  1591. detail, err := models.GetCygxMinutesSummaryInfoById(articleId)
  1592. if err != nil {
  1593. br.Msg = "获取信息失败"
  1594. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1595. return
  1596. }
  1597. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format(utils.FormatDate)
  1598. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1599. listFirst, err := models.GetMinutesSummarylogListAllV4(articleId)
  1600. if err != nil {
  1601. br.Msg = "获取失败"
  1602. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1603. return
  1604. }
  1605. for k, v := range listFirst {
  1606. listSecond, err := models.GetMinutesSummarylogSonListSecond(articleId, v.Type)
  1607. if err != nil && err.Error() != utils.ErrNoRow() {
  1608. br.Msg = "获取信息失败"
  1609. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1610. return
  1611. }
  1612. for k2, v2 := range listSecond {
  1613. listThird, err := models.GetMinutesSummarylogListThird(articleId, v2.ChartPermissionId, v.Type)
  1614. if err != nil && err.Error() != utils.ErrNoRow() {
  1615. br.Msg = "获取信息失败"
  1616. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1617. return
  1618. }
  1619. if len(listThird) > 0 {
  1620. for k3, v3 := range listThird {
  1621. if v3.VideoUrl != "" {
  1622. listThird[k3].IsHaveVideo = true
  1623. }
  1624. if v3.ReportLink == "0" {
  1625. listThird[k3].ReportLink = ""
  1626. }
  1627. }
  1628. listSecond[k2].List = listThird
  1629. }
  1630. }
  1631. if len(listSecond) > 0 {
  1632. listFirst[k].List = listSecond
  1633. }
  1634. //`description:"类型'SDBG深度报告片篇,’CYDYJY:产业调研纪要’,’SJDP事件点评,’BZCHJH:本周晨会精华’"`
  1635. if v.Type == "CYDYJY" {
  1636. listFirst[k].ListName = "产业调研纪要"
  1637. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/UPAdozy96z9ypzY04vi0Y3Ogqzji.png"
  1638. } else if v.Type == "SSGS" {
  1639. listFirst[k].ListName = "上市公司调研纪要篇"
  1640. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211101/ujHXB48I8ay9T0XoPRI7lorz7OkL.png"
  1641. } else if v.Type == "YANX" {
  1642. listFirst[k].ListName = "买方研选纪要"
  1643. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1644. }
  1645. }
  1646. historyRecord := new(models.CygxReportHistoryRecord)
  1647. historyRecord.UserId = uid
  1648. historyRecord.ArticleId = articleId
  1649. historyRecord.CreateTime = time.Now()
  1650. historyRecord.Mobile = user.Mobile
  1651. historyRecord.Email = user.Email
  1652. historyRecord.CompanyId = user.CompanyId
  1653. historyRecord.CompanyName = user.CompanyName
  1654. historyRecord.ReportType = "szjyhz"
  1655. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1656. if err != nil && err.Error() != utils.ErrNoRow() {
  1657. br.Msg = "获取信息失败"
  1658. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1659. return
  1660. }
  1661. historyRecord.RealName = user.RealName
  1662. if sellerItem != nil {
  1663. historyRecord.SellerName = sellerItem.RealName
  1664. }
  1665. go models.AddCygxReportHistoryRecord(historyRecord)
  1666. resp.List = listFirst
  1667. resp.Detail = detail
  1668. br.Ret = 200
  1669. br.Success = true
  1670. br.Msg = "获取成功"
  1671. br.Data = resp
  1672. }
  1673. // @Title 上周纪要汇总内容详情
  1674. // @Description 获取上周纪要汇总内容详情接口
  1675. // @Param ArticleId query int true "报告ID"
  1676. // @Success 200 {object} models.MinutesSummaryLetailResp
  1677. // @router /minutesSummary/detail [get]
  1678. func (this *ReportController) MinutesDetail() {
  1679. br := new(models.BaseResponse).Init()
  1680. defer func() {
  1681. this.Data["json"] = br
  1682. this.ServeJSON()
  1683. }()
  1684. user := this.User
  1685. if user == nil {
  1686. br.Msg = "请重新登录"
  1687. br.Ret = 408
  1688. return
  1689. }
  1690. uid := user.UserId
  1691. articleId, _ := this.GetInt("ArticleId")
  1692. if articleId < 0 {
  1693. br.Msg = "参数错误"
  1694. br.ErrMsg = "参数错误"
  1695. return
  1696. }
  1697. resp := new(models.MinutesSummaryLetailResp)
  1698. //判断用户权限
  1699. hasPermission, err := services.GetUserhasPermission(user)
  1700. if err != nil {
  1701. br.Msg = "获取信息失败"
  1702. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1703. }
  1704. resp.HasPermission = hasPermission
  1705. if hasPermission != 1 {
  1706. br.Ret = 200
  1707. br.Success = true
  1708. br.Msg = "获取成功"
  1709. br.Data = resp
  1710. return
  1711. }
  1712. detail, err := models.GetCygxMinutesSummaryInfoById(articleId)
  1713. if err != nil {
  1714. br.Msg = "获取信息失败"
  1715. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1716. return
  1717. }
  1718. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  1719. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1720. listLog, err := models.GetMinutesSummarylogListAll(articleId)
  1721. if err != nil {
  1722. br.Msg = "获取失败"
  1723. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1724. return
  1725. }
  1726. for k, v := range listLog {
  1727. listSonLog, err := models.GetMinutesSummarylogSonListAll(articleId, v.ChartPermissionId)
  1728. if err != nil && err.Error() != utils.ErrNoRow() {
  1729. br.Msg = "获取信息失败"
  1730. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1731. return
  1732. }
  1733. if len(listSonLog) > 0 {
  1734. listLog[k].List = listSonLog
  1735. for k2, v2 := range listSonLog {
  1736. if v2.ReportLink == "0" {
  1737. listSonLog[k2].ReportLink = ""
  1738. }
  1739. }
  1740. }
  1741. }
  1742. historyRecord := new(models.CygxReportHistoryRecord)
  1743. historyRecord.UserId = uid
  1744. historyRecord.ArticleId = articleId
  1745. historyRecord.CreateTime = time.Now()
  1746. historyRecord.Mobile = user.Mobile
  1747. historyRecord.Email = user.Email
  1748. historyRecord.CompanyId = user.CompanyId
  1749. historyRecord.CompanyName = user.CompanyName
  1750. historyRecord.ReportType = "szjyhz"
  1751. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1752. if err != nil && err.Error() != utils.ErrNoRow() {
  1753. br.Msg = "获取信息失败"
  1754. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1755. return
  1756. }
  1757. historyRecord.RealName = user.RealName
  1758. if sellerItem != nil {
  1759. historyRecord.SellerName = sellerItem.RealName
  1760. }
  1761. go models.AddCygxReportHistoryRecord(historyRecord)
  1762. resp.List = listLog
  1763. resp.Detail = detail
  1764. br.Ret = 200
  1765. br.Success = true
  1766. br.Msg = "获取成功"
  1767. br.Data = resp
  1768. }
  1769. // @Title 获取路演精华详情
  1770. // @Description 获取路演精华详情接口
  1771. // @Param ArticleId query int true "报告ID"
  1772. // @Success 200 {object} models.RoadshowDetailResp
  1773. // @router /roadshowEssence/detail [get]
  1774. func (this *ReportController) RoadshowDetail() {
  1775. br := new(models.BaseResponse).Init()
  1776. defer func() {
  1777. this.Data["json"] = br
  1778. this.ServeJSON()
  1779. }()
  1780. user := this.User
  1781. if user == nil {
  1782. br.Msg = "请登录"
  1783. br.ErrMsg = "请登录,用户信息为空"
  1784. br.Ret = 408
  1785. return
  1786. }
  1787. uid := user.UserId
  1788. articleId, err := this.GetInt("ArticleId")
  1789. if articleId <= 0 {
  1790. br.Msg = "文章不存在"
  1791. br.ErrMsg = "文章不存在,文章ID错误"
  1792. return
  1793. }
  1794. detail := new(models.ReportDetailRoadshow)
  1795. hasPermission := 0
  1796. hasFree := 0
  1797. //判断是否已经申请过
  1798. applyCount, err := models.GetApplyRecordCount(uid)
  1799. if err != nil && err.Error() != utils.ErrNoRow() {
  1800. br.Msg = "获取信息失败"
  1801. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  1802. return
  1803. }
  1804. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  1805. if user.CompanyId > 1 {
  1806. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  1807. if err != nil {
  1808. br.Msg = "获取信息失败"
  1809. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  1810. return
  1811. }
  1812. detail, err = models.GetReportRoadshowDetailById(articleId)
  1813. if err != nil {
  1814. br.Msg = "获取信息失败"
  1815. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1816. return
  1817. }
  1818. detail.Body = html.UnescapeString(detail.Body)
  1819. detail.Abstract, _ = services.GetReportContentTextSubNew(detail.Abstract)
  1820. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  1821. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1822. if detail.ReportLink == "0" {
  1823. detail.ReportLink = ""
  1824. }
  1825. if companyPermission == "" {
  1826. if applyCount > 0 {
  1827. hasPermission = 5
  1828. } else {
  1829. hasPermission = 2
  1830. }
  1831. hasFree = 2
  1832. goto Loop
  1833. } else {
  1834. hasFree = 1
  1835. var articlePermissionPermissionName string
  1836. articlePermissionPermissionName = detail.CategoryName
  1837. var hasPersion bool
  1838. slice := strings.Split(articlePermissionPermissionName, ",")
  1839. for _, v := range slice {
  1840. if strings.Contains(companyPermission, v) {
  1841. hasPersion = true
  1842. }
  1843. }
  1844. if hasPersion {
  1845. hasPermission = 1
  1846. historyRecord := new(models.CygxArticleHistoryRecord)
  1847. historyRecord.UserId = uid
  1848. historyRecord.ArticleId = articleId
  1849. historyRecord.CreateTime = time.Now()
  1850. historyRecord.Mobile = user.Mobile
  1851. historyRecord.Email = user.Email
  1852. historyRecord.CompanyId = user.CompanyId
  1853. historyRecord.CompanyName = user.CompanyName
  1854. go models.AddCygxArticleHistoryRecord(historyRecord)
  1855. } else { //无该行业权限
  1856. hasPermission = 3
  1857. }
  1858. if hasPermission == 1 {
  1859. key := "CYGX_ARTICLE_" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  1860. if !utils.Rc.IsExist(key) {
  1861. //新增浏览记录
  1862. record := new(models.CygxArticleViewRecord)
  1863. record.UserId = uid
  1864. record.ArticleId = articleId
  1865. record.CreateTime = time.Now()
  1866. record.Mobile = user.Mobile
  1867. record.Email = user.Email
  1868. record.CompanyId = user.CompanyId
  1869. record.CompanyName = user.CompanyName
  1870. go models.AddCygxArticleViewRecord(record)
  1871. utils.Rc.Put(key, 1, 5*time.Second)
  1872. models.ModifyReportLastViewTime(uid)
  1873. }
  1874. }
  1875. }
  1876. } else { //潜在客户
  1877. if applyCount > 0 {
  1878. hasPermission = 5
  1879. } else {
  1880. hasPermission = 4
  1881. }
  1882. }
  1883. Loop:
  1884. if hasPermission != 1 {
  1885. detail.Body = ""
  1886. detail.Abstract = ""
  1887. }
  1888. resp := new(models.RoadshowDetailResp)
  1889. resp.HasPermission = hasPermission
  1890. resp.HasFree = hasFree
  1891. resp.Detail = detail
  1892. br.Ret = 200
  1893. br.Success = true
  1894. br.Msg = "获取成功"
  1895. br.Data = resp
  1896. }
  1897. // @Title 产业文章列表接口
  1898. // @Description 获取产业文章列表接口
  1899. // @Param KeyWord query string true "搜索关键词"
  1900. // @Success 200 {object} models.CygxIndustrySearchList
  1901. // @router /industryAndArticle/list [get]
  1902. func (this *ReportController) IndustryAndArticleList() {
  1903. br := new(models.BaseResponse).Init()
  1904. defer func() {
  1905. this.Data["json"] = br
  1906. this.ServeJSON()
  1907. }()
  1908. user := this.User
  1909. if user == nil {
  1910. br.Msg = "请重新登录"
  1911. br.Ret = 408
  1912. return
  1913. }
  1914. uid := user.UserId
  1915. keyWord := this.GetString("KeyWord")
  1916. orderSrt := "update_time DESC"
  1917. condition := ` AND subject_names LIKE '%` + keyWord + `%'`
  1918. list, err := models.GetIndustrialManagementAll(uid, condition, orderSrt, 0, 100)
  1919. if err != nil {
  1920. br.Msg = "获取信息失败"
  1921. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  1922. return
  1923. }
  1924. for k, v := range list {
  1925. industrialSubjectList, err := models.GetIndustrialSubjectAll(v.IndustrialManagementId)
  1926. if err != nil {
  1927. br.Msg = "获取信息失败"
  1928. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  1929. return
  1930. }
  1931. list[k].IndustrialSubjectList = industrialSubjectList
  1932. //list[k].LayoutTime = utils.TimeRemoveHms(v.LayoutTime)
  1933. newArtinfo, err := models.GetIndustrialNewArticleDetail(v.IndustrialManagementId)
  1934. if err != nil {
  1935. br.Msg = "获取信息失败"
  1936. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  1937. return
  1938. }
  1939. list[k].UpdateTime = utils.TimeRemoveHms(newArtinfo.PublishDate)
  1940. }
  1941. artList, err := models.GetCygxIndustryAndArticleList(keyWord)
  1942. if err != nil {
  1943. br.Msg = "获取失败"
  1944. br.ErrMsg = "获取失败,Err:" + err.Error()
  1945. return
  1946. }
  1947. for k2, v2 := range artList {
  1948. subjectNames, err := models.GetSubjectNames(v2.ArticleId)
  1949. if err != nil {
  1950. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  1951. br.ErrMsg = "获取失败,Err:" + err.Error()
  1952. return
  1953. }
  1954. var subjectNamesNew string
  1955. if len(subjectNames) > 0 {
  1956. slice := strings.Split(subjectNames, "/")
  1957. for k3, v3 := range slice {
  1958. if k3 < 4 {
  1959. subjectNamesNew += v3 + "/"
  1960. }
  1961. }
  1962. }
  1963. industryName, err := models.GetIndustrialNames(v2.ArticleId)
  1964. if err != nil && err.Error() != utils.ErrNoRow() {
  1965. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  1966. br.ErrMsg = "获取失败,Err:" + err.Error()
  1967. return
  1968. }
  1969. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  1970. artList[k2].SubjectName = subjectNamesNew
  1971. if subjectNamesNew == "" {
  1972. artList[k2].IndustryName = industryName
  1973. } else {
  1974. artList[k2].IndustryName = industryName + "-" + subjectNamesNew
  1975. }
  1976. }
  1977. if keyWord != "" {
  1978. keyWordItem := new(models.CygxUserSearchKeyWord)
  1979. keyWordItem.UserId = user.UserId
  1980. keyWordItem.KeyWord = keyWord
  1981. keyWordItem.PageType = "ReortSearch"
  1982. keyWordItem.CreateTime = time.Now()
  1983. go models.AddUserSearchKeyWord(keyWordItem)
  1984. }
  1985. resp := new(models.CygxIndustrySearchList)
  1986. resp.ArtList = artList
  1987. resp.IndList = list
  1988. br.Ret = 200
  1989. br.Success = true
  1990. br.Msg = "获取成功"
  1991. br.Data = resp
  1992. }
  1993. // @Title 产业报告分类关联作者列表接口Pc端
  1994. // @Description 获取产业报告分类关联作者列表接口Pc端
  1995. // @Param ChartPermissionId query int true "分类ID"
  1996. // @Param KeyWord query string true "搜索关键词"
  1997. // @Param PageSize query int true "每页数据条数"
  1998. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1999. // @Success 200 {object} models.CygxArticleDepartmentListPc
  2000. // @router /industryListByDepartmentPc [get]
  2001. func (this *ReportController) IndustryListByDepartmentPc() {
  2002. br := new(models.BaseResponse).Init()
  2003. defer func() {
  2004. this.Data["json"] = br
  2005. this.ServeJSON()
  2006. }()
  2007. user := this.User
  2008. if user == nil {
  2009. br.Msg = "请重新登录"
  2010. br.Ret = 408
  2011. return
  2012. }
  2013. uid := user.UserId
  2014. pageSize, _ := this.GetInt("PageSize")
  2015. currentIndex, _ := this.GetInt("CurrentIndex")
  2016. chartPermissionId, _ := this.GetInt("ChartPermissionId")
  2017. keyWord := this.GetString("KeyWord")
  2018. var startSize int
  2019. var condition string
  2020. condition = ` AND a.publish_status=1 AND m.chart_permission_id =` + strconv.Itoa(chartPermissionId)
  2021. if pageSize <= 0 {
  2022. pageSize = utils.PageSize20
  2023. }
  2024. if currentIndex <= 0 {
  2025. currentIndex = 1
  2026. }
  2027. var articleIdGroup string
  2028. if keyWord != "" {
  2029. //获取标的关联的文章ID
  2030. articleIdSub, err := models.GetArticleIdSubjectGroup(keyWord)
  2031. if err != nil {
  2032. br.Msg = "获取信息失败"
  2033. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2034. return
  2035. }
  2036. //获取产业关联的标的
  2037. articleIdInd, err := models.GetArticleIndustrialIdGroup(keyWord)
  2038. if err != nil {
  2039. br.Msg = "获取信息失败"
  2040. br.ErrMsg = "获取产业信息失败,Err:" + err.Error()
  2041. return
  2042. }
  2043. if articleIdSub != "" && articleIdInd != "" {
  2044. articleIdGroup = articleIdSub + "," + articleIdInd
  2045. } else if articleIdSub != "" && articleIdInd == "" {
  2046. articleIdGroup = articleIdSub
  2047. } else if articleIdSub == "" && articleIdInd != "" {
  2048. articleIdGroup = articleIdInd
  2049. }
  2050. slice := strings.Split(keyWord, "/")
  2051. if len(slice) > 1 {
  2052. var subjectIds string
  2053. for _, v := range slice {
  2054. subjectId, err := models.GetcygxIndustrialSubjectByName(v)
  2055. if err != nil && err.Error() != utils.ErrNoRow() {
  2056. br.Msg = "获取信息失败"
  2057. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  2058. return
  2059. }
  2060. if subjectId != "" {
  2061. subjectIds += subjectId + ","
  2062. }
  2063. }
  2064. subjectIds = strings.TrimRight(subjectIds, ",")
  2065. if len(subjectIds) > 0 {
  2066. articleBySub, err := models.GetArticleIdsBySubId(subjectIds)
  2067. if err != nil {
  2068. br.Msg = "获取信息失败"
  2069. br.ErrMsg = "获取文章关联的标的失败,Err:" + err.Error()
  2070. return
  2071. }
  2072. if articleIdGroup != "" {
  2073. if articleBySub != "" {
  2074. articleIdGroup += "," + articleBySub
  2075. }
  2076. } else {
  2077. articleIdGroup = articleBySub
  2078. }
  2079. }
  2080. }
  2081. }
  2082. if articleIdGroup != "" {
  2083. condition += ` AND a.article_id IN (` + articleIdGroup + `)`
  2084. }
  2085. startSize = paging.StartIndex(currentIndex, pageSize)
  2086. total, err := models.GetArticleDepartmentCount(condition)
  2087. page := paging.GetPaging(currentIndex, pageSize, total)
  2088. resp := new(models.CygxArticleDepartmentListPc)
  2089. userType, _, err := services.GetUserType(user.CompanyId)
  2090. if err != nil {
  2091. br.Msg = "获取信息失败"
  2092. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  2093. return
  2094. }
  2095. if userType == 1 {
  2096. resp.Paging = page
  2097. br.Ret = 200
  2098. br.Success = true
  2099. br.Msg = "获取成功"
  2100. br.Data = resp
  2101. return
  2102. }
  2103. resp.HaveResearch = true
  2104. //获取作者信息,并排序
  2105. list, err := models.GetCygxArticleDepartmentListPc(startSize, pageSize, condition, uid)
  2106. if err != nil {
  2107. br.Msg = "获取信息失败"
  2108. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2109. return
  2110. }
  2111. for k, v := range list {
  2112. artList, err := models.GetArticleByDepartmentIdPc(v.DepartmentId, articleIdGroup)
  2113. if err != nil {
  2114. br.Msg = "获取信息失败"
  2115. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  2116. return
  2117. }
  2118. for k2, v2 := range artList {
  2119. if artList[k2].IsReport == "1" {
  2120. artList[k2].Title = v2.Title
  2121. } else {
  2122. artList[k2].Title = v2.Title
  2123. }
  2124. artList[k2].IndustryName = strings.Replace(artList[k2].IndustryName, " ", "", -1)
  2125. }
  2126. list[k].List = artList
  2127. if v.FollowNum > 0 {
  2128. list[k].IsMyFollow = true
  2129. }
  2130. }
  2131. listnNew, err := models.GetIndustrialSubjectByDepartmentNew()
  2132. if err != nil {
  2133. br.Msg = "获取信息失败"
  2134. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2135. return
  2136. }
  2137. if len(listnNew) > 0 {
  2138. for _, v := range listnNew {
  2139. firstStr := strings.Index(v.IndustrialAndSubjectIds, "—")
  2140. Management := new(models.IndustrialManagementIdInt)
  2141. if firstStr == 0 {
  2142. Management.IndustryName = v.IndustryName
  2143. } else {
  2144. listSub, err := models.GetIndustrialManagementSubjectList(v.ArticleId)
  2145. if err != nil {
  2146. br.Msg = "获取信息失败"
  2147. br.ErrMsg = "获取关联标的列表失败,Err:" + err.Error()
  2148. return
  2149. }
  2150. var subjectNamesNew string
  2151. for _, v1 := range listSub {
  2152. subjectNamesNew += v1.SubjectName + "/"
  2153. }
  2154. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  2155. Management.IndustryName = subjectNamesNew
  2156. }
  2157. Management.IndustrialManagementId = v.IndustrialManagementId
  2158. Management.ArticleId = v.ArticleId
  2159. resp.ListnNew = append(resp.ListnNew, Management)
  2160. }
  2161. }
  2162. resp.List = list
  2163. resp.Paging = page
  2164. br.Ret = 200
  2165. br.Success = true
  2166. br.Msg = "获取成功"
  2167. br.Data = resp
  2168. }
  2169. // @Title 产业文章列表接口Pc端
  2170. // @Description 获取产业文章列表接口Pc端
  2171. // @Param KeyWord query string true "搜索关键词"
  2172. // @Success 200 {object} models.CygxIndustrySearchListPc
  2173. // @router /industryAndArticle/listPc [get]
  2174. func (this *ReportController) IndustryAndArticleListPc() {
  2175. br := new(models.BaseResponse).Init()
  2176. defer func() {
  2177. this.Data["json"] = br
  2178. this.ServeJSON()
  2179. }()
  2180. user := this.User
  2181. if user == nil {
  2182. br.Msg = "请重新登录"
  2183. br.Ret = 408
  2184. return
  2185. }
  2186. uid := user.UserId
  2187. keyWord := this.GetString("KeyWord")
  2188. resp := new(models.CygxIndustrySearchListPc)
  2189. orderSrt := "update_time DESC"
  2190. condition := ` AND subject_names LIKE '%` + keyWord + `%'`
  2191. list, err := models.GetIndustrialManagementAll(uid, condition, orderSrt, 0, 100)
  2192. if err != nil {
  2193. br.Msg = "获取信息失败"
  2194. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2195. return
  2196. }
  2197. for k, v := range list {
  2198. industrialSubjectList, err := models.GetIndustrialSubjectAll(v.IndustrialManagementId)
  2199. if err != nil {
  2200. br.Msg = "获取信息失败"
  2201. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2202. return
  2203. }
  2204. list[k].IndustrialSubjectList = industrialSubjectList
  2205. //list[k].LayoutTime = utils.TimeRemoveHms(v.LayoutTime)
  2206. newArtinfo, err := models.GetIndustrialNewArticleDetail(v.IndustrialManagementId)
  2207. if err != nil {
  2208. br.Msg = "获取信息失败"
  2209. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2210. return
  2211. }
  2212. list[k].UpdateTime = utils.TimeRemoveHms(newArtinfo.PublishDate)
  2213. }
  2214. artList, err := models.GetCygxIndustryAndArticleList(keyWord)
  2215. if err != nil {
  2216. br.Msg = "获取失败"
  2217. br.ErrMsg = "获取失败,Err:" + err.Error()
  2218. return
  2219. }
  2220. if len(artList) > 0 {
  2221. var articleIds string
  2222. for _, v := range artList {
  2223. articleIds += strconv.Itoa(v.ArticleId) + ","
  2224. }
  2225. articleIds = strings.TrimRight(articleIds, ",")
  2226. if articleIds != "" {
  2227. condition = ` AND a.article_id IN (` + articleIds + `)`
  2228. DepartmentList, err := models.GetCygxArticleDepartmentListPc(0, 20, condition, uid)
  2229. if err != nil {
  2230. br.Msg = "获取信息失败"
  2231. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2232. return
  2233. }
  2234. for k, v := range DepartmentList {
  2235. artList, err := models.GetArticleByDepartmentIdPc(v.DepartmentId, articleIds)
  2236. if err != nil {
  2237. br.Msg = "获取信息失败"
  2238. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  2239. return
  2240. }
  2241. for k2, v2 := range artList {
  2242. if artList[k2].IsReport == "1" {
  2243. artList[k2].Title = v2.Title
  2244. } else {
  2245. artList[k2].Title = v2.Title
  2246. }
  2247. artList[k2].IndustryName = strings.Replace(artList[k2].IndustryName, " ", "", -1)
  2248. }
  2249. DepartmentList[k].List = artList
  2250. if v.FollowNum > 0 {
  2251. DepartmentList[k].IsMyFollow = true
  2252. }
  2253. }
  2254. resp.DepartmentList = DepartmentList
  2255. }
  2256. }
  2257. if keyWord != "" {
  2258. keyWordItem := new(models.CygxUserSearchKeyWord)
  2259. keyWordItem.UserId = user.UserId
  2260. keyWordItem.KeyWord = keyWord
  2261. keyWordItem.PageType = "ReortSearch"
  2262. keyWordItem.CreateTime = time.Now()
  2263. go models.AddUserSearchKeyWord(keyWordItem)
  2264. }
  2265. resp.IndList = list
  2266. br.Ret = 200
  2267. br.Success = true
  2268. br.Msg = "获取成功"
  2269. br.Data = resp
  2270. }
  2271. // @Title 报告搜索
  2272. // @Description 报告搜索接口
  2273. // @Param KeyWord query string true "搜索关键词"
  2274. // @Success 200 {object} models.ReoprtSearchResp
  2275. // @router /searchReport [get]
  2276. func (this *ReportController) SearchReport() {
  2277. br := new(models.BaseResponse).Init()
  2278. defer func() {
  2279. this.Data["json"] = br
  2280. this.ServeJSON()
  2281. }()
  2282. user := this.User
  2283. if user == nil {
  2284. br.Msg = "请重新登录"
  2285. br.Ret = 408
  2286. return
  2287. }
  2288. keyWord := this.GetString("KeyWord")
  2289. var condition string
  2290. var sqlGroup string
  2291. //匹配报告标题、
  2292. condition = `AND ( a.title LIKE '%` + keyWord + `%' OR a.body LIKE '%` + keyWord + `%' OR a.annotation LIKE '%` + keyWord + `%' OR a.abstract LIKE '%` + keyWord + `%') AND a.publish_status = 1 `
  2293. sqlGroup = ` GROUP BY a.article_id ORDER BY a.publish_date DESC `
  2294. //对应产业名称、标的名称。
  2295. listYx, err := models.GetArticleCollectionList(` AND a.article_id >= 1000000 `+condition+sqlGroup, user.UserId)
  2296. if err != nil {
  2297. br.Msg = "获取信息失败"
  2298. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2299. return
  2300. }
  2301. for k, v := range listYx {
  2302. listYx[k].Source = 2
  2303. if v.MyCollectNum > 0 {
  2304. listYx[k].IsCollect = true
  2305. }
  2306. }
  2307. listHz, err := models.GetReoprtSearchList(` AND a.article_id < 1000000 `+condition+` OR ( article_type = 'lyjh' `+condition+` ) `+sqlGroup, user.UserId)
  2308. if err != nil {
  2309. br.Msg = "获取信息失败"
  2310. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2311. return
  2312. }
  2313. for k, v := range listHz {
  2314. listHz[k].Source = 1
  2315. if v.MyCollectNum > 0 {
  2316. listHz[k].IsCollect = true
  2317. }
  2318. }
  2319. if keyWord != "" {
  2320. keyWordItem := new(models.CygxUserSearchKeyWord)
  2321. keyWordItem.UserId = user.UserId
  2322. keyWordItem.KeyWord = keyWord
  2323. keyWordItem.PageType = "ReortSearch"
  2324. keyWordItem.CreateTime = time.Now()
  2325. go models.AddUserSearchKeyWord(keyWordItem)
  2326. go services.AddUserSearchLog(user, keyWord, 5)
  2327. }
  2328. if len(listYx) == 0 {
  2329. listYx = make([]*models.ArticleCollectionResp, 0)
  2330. }
  2331. if len(listHz) == 0 {
  2332. listHz = make([]*models.ArticleCollectionResp, 0)
  2333. }
  2334. resp := new(models.ReoprtSearchResp)
  2335. resp.ListYx = listYx
  2336. resp.ListHz = listHz
  2337. br.Ret = 200
  2338. br.Success = true
  2339. br.Msg = "获取成功"
  2340. br.Data = resp
  2341. }
  2342. // @Title 资源包搜索
  2343. // @Description 资源包搜索接口
  2344. // @Param KeyWord query string true "搜索关键词"
  2345. // @Success 200 {object} models.SearchResourceResp
  2346. // @router /searchResource [get]
  2347. func (this *ReportController) SearchResource() {
  2348. br := new(models.BaseResponse).Init()
  2349. defer func() {
  2350. this.Data["json"] = br
  2351. this.ServeJSON()
  2352. }()
  2353. user := this.User
  2354. if user == nil {
  2355. br.Msg = "请重新登录"
  2356. br.Ret = 408
  2357. return
  2358. }
  2359. uid := user.UserId
  2360. fllowList, err := models.GetUserFllowIndustrialList(uid)
  2361. if err != nil {
  2362. br.Msg = "获取失败"
  2363. br.ErrMsg = "获取失败,GetUserFllowIndustrialList Err:" + err.Error()
  2364. return
  2365. }
  2366. fllowMap := make(map[int]int)
  2367. if len(fllowList) > 0 {
  2368. for _, v := range fllowList {
  2369. fllowMap[v.IndustrialManagementId] = v.IndustrialManagementId
  2370. }
  2371. }
  2372. keyWord := this.GetString("KeyWord")
  2373. var condition string
  2374. var conditionOr string
  2375. //conditionOr = ` OR ( a.title LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2376. conditionOr += ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2377. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2378. listHz, err := models.GetSearchResourceList(condition, 0, 0)
  2379. if err != nil {
  2380. br.Msg = "获取信息失败"
  2381. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2382. return
  2383. }
  2384. //conditionOr = ` OR ( a.title LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2385. conditionOr = ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2386. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2387. listYx, err := models.GetSearchResourceList(condition, 0, 0)
  2388. if err != nil {
  2389. br.Msg = "获取信息失败"
  2390. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2391. return
  2392. }
  2393. //合并产业关联的标的
  2394. listSubjcet, err := models.GetThemeHeatSubjectList("")
  2395. if err != nil {
  2396. br.Msg = "获取信息失败"
  2397. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2398. return
  2399. }
  2400. industrialIdArr := make([]int, 0)
  2401. for k, v := range listHz {
  2402. listHz[k].Source = 1
  2403. if fllowMap[v.IndustrialManagementId] > 0 {
  2404. listHz[k].IsFollw = true
  2405. }
  2406. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2407. }
  2408. for k, v := range listYx {
  2409. listYx[k].Source = 2
  2410. if fllowMap[v.IndustrialManagementId] > 0 {
  2411. listYx[k].IsFollw = true
  2412. }
  2413. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2414. }
  2415. if len(industrialIdArr) > 0 {
  2416. //合并产业关联的标的
  2417. listSubjcet, err = models.GetIndustrialSubjectAllByIndustrialId(industrialIdArr)
  2418. if err != nil {
  2419. br.Msg = "获取信息失败"
  2420. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2421. return
  2422. }
  2423. mapIndustrial := make(map[string]int)
  2424. for _, v := range listSubjcet {
  2425. for k2, v2 := range listYx {
  2426. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] == 0 {
  2427. listYx[k2].IndustrialSubjectList = append(listYx[k2].IndustrialSubjectList, v)
  2428. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] = v2.IndustrialManagementId
  2429. }
  2430. }
  2431. for k2, v2 := range listHz {
  2432. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] == 0 {
  2433. listHz[k2].IndustrialSubjectList = append(listHz[k2].IndustrialSubjectList, v)
  2434. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] = v2.IndustrialManagementId
  2435. }
  2436. }
  2437. }
  2438. }
  2439. if keyWord != "" {
  2440. keyWordItem := new(models.CygxUserSearchKeyWord)
  2441. keyWordItem.UserId = user.UserId
  2442. keyWordItem.KeyWord = keyWord
  2443. keyWordItem.PageType = "ReortSearch"
  2444. keyWordItem.CreateTime = time.Now()
  2445. go models.AddUserSearchKeyWord(keyWordItem)
  2446. go services.AddUserSearchLog(user, keyWord, 4)
  2447. }
  2448. resp := new(models.SearchResourceResp)
  2449. if len(listYx) == 0 {
  2450. listYx = make([]*models.IndustrialManagementHotResp, 0)
  2451. }
  2452. if len(listHz) == 0 {
  2453. listHz = make([]*models.IndustrialManagementHotResp, 0)
  2454. }
  2455. resp.ListYx = listYx
  2456. resp.ListHz = listHz
  2457. br.Ret = 200
  2458. br.Success = true
  2459. br.Msg = "获取成功"
  2460. br.Data = resp
  2461. }
  2462. // @Title 报告搜索、资源包搜索接口
  2463. // @Description 报告搜索、资源包搜索接口接口
  2464. // @Param KeyWord query string true "搜索关键词"
  2465. // @Param PageSize query int true "每页数据条数"
  2466. // @Success 200 {object} models.SearchReportAndResourceResp
  2467. // @router /searchReportAndResource [get]
  2468. func (this *ReportController) SearchReportAndResource() {
  2469. br := new(models.BaseResponse).Init()
  2470. defer func() {
  2471. this.Data["json"] = br
  2472. this.ServeJSON()
  2473. }()
  2474. user := this.User
  2475. if user == nil {
  2476. br.Msg = "请重新登录"
  2477. br.Ret = 408
  2478. return
  2479. }
  2480. uid := user.UserId
  2481. keyWord := this.GetString("KeyWord")
  2482. pageSize, _ := this.GetInt("PageSize")
  2483. var condition string
  2484. var sqlGroup string
  2485. //匹配报告标题、
  2486. condition = `AND ( a.title LIKE '%` + keyWord + `%' OR a.body LIKE '%` + keyWord + `%' OR a.annotation LIKE '%` + keyWord + `%' OR a.abstract LIKE '%` + keyWord + `%') AND a.publish_status = 1 `
  2487. sqlGroup = ` GROUP BY a.article_id ORDER BY a.publish_date DESC `
  2488. if pageSize > 0 {
  2489. sqlGroup += ` LIMIT 5 `
  2490. }
  2491. ListYxReport, err := models.GetArticleCollectionList(` AND a.article_id >= 1000000 `+condition+sqlGroup, user.UserId)
  2492. if err != nil {
  2493. br.Msg = "获取信息失败"
  2494. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2495. return
  2496. }
  2497. for k, v := range ListYxReport {
  2498. ListYxReport[k].Source = 2
  2499. if v.MyCollectNum > 0 {
  2500. ListYxReport[k].IsCollect = true
  2501. }
  2502. }
  2503. ListHzReport, err := models.GetReoprtSearchList(` AND a.article_id < 1000000 `+condition+` OR ( article_type = 'lyjh' `+condition+` ) `+sqlGroup, user.UserId)
  2504. if err != nil {
  2505. br.Msg = "获取信息失败"
  2506. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2507. return
  2508. }
  2509. for k, v := range ListHzReport {
  2510. ListHzReport[k].Source = 1
  2511. if v.MyCollectNum > 0 {
  2512. ListHzReport[k].IsCollect = true
  2513. }
  2514. }
  2515. if len(ListYxReport) == 0 {
  2516. ListYxReport = make([]*models.ArticleCollectionResp, 0)
  2517. }
  2518. if len(ListHzReport) == 0 {
  2519. ListHzReport = make([]*models.ArticleCollectionResp, 0)
  2520. }
  2521. fllowList, err := models.GetUserFllowIndustrialList(uid)
  2522. if err != nil {
  2523. br.Msg = "获取失败"
  2524. br.ErrMsg = "获取失败,GetUserFllowIndustrialList Err:" + err.Error()
  2525. return
  2526. }
  2527. fllowMap := make(map[int]int)
  2528. if len(fllowList) > 0 {
  2529. for _, v := range fllowList {
  2530. fllowMap[v.IndustrialManagementId] = v.IndustrialManagementId
  2531. }
  2532. }
  2533. var conditionOr string
  2534. conditionOr += ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2535. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2536. listHzResource, err := models.GetSearchResourceList(condition, 0, pageSize)
  2537. if err != nil {
  2538. br.Msg = "获取信息失败"
  2539. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2540. return
  2541. }
  2542. conditionOr = ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2543. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2544. listYxResource, err := models.GetSearchResourceList(condition, 0, pageSize)
  2545. if err != nil {
  2546. br.Msg = "获取信息失败"
  2547. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2548. return
  2549. }
  2550. //合并产业关联的标的
  2551. listSubjcet, err := models.GetThemeHeatSubjectList("")
  2552. if err != nil {
  2553. br.Msg = "获取信息失败"
  2554. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2555. return
  2556. }
  2557. industrialIdArr := make([]int, 0)
  2558. for k, v := range listHzResource {
  2559. listHzResource[k].Source = 1
  2560. if fllowMap[v.IndustrialManagementId] > 0 {
  2561. listHzResource[k].IsFollw = true
  2562. }
  2563. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2564. }
  2565. for k, v := range listYxResource {
  2566. listYxResource[k].Source = 2
  2567. if fllowMap[v.IndustrialManagementId] > 0 {
  2568. listYxResource[k].IsFollw = true
  2569. }
  2570. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2571. }
  2572. if len(industrialIdArr) > 0 {
  2573. //合并产业关联的标的
  2574. listSubjcet, err = models.GetIndustrialSubjectAllByIndustrialId(industrialIdArr)
  2575. if err != nil {
  2576. br.Msg = "获取信息失败"
  2577. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2578. return
  2579. }
  2580. mapIndustrial := make(map[string]int)
  2581. for _, v := range listSubjcet {
  2582. for k2, v2 := range listYxResource {
  2583. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] == 0 {
  2584. listYxResource[k2].IndustrialSubjectList = append(listYxResource[k2].IndustrialSubjectList, v)
  2585. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] = v2.IndustrialManagementId
  2586. }
  2587. }
  2588. for k2, v2 := range listHzResource {
  2589. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] == 0 {
  2590. listHzResource[k2].IndustrialSubjectList = append(listHzResource[k2].IndustrialSubjectList, v)
  2591. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] = v2.IndustrialManagementId
  2592. }
  2593. }
  2594. }
  2595. }
  2596. resp := new(models.SearchReportAndResourceResp)
  2597. if len(listYxResource) == 0 {
  2598. listYxResource = make([]*models.IndustrialManagementHotResp, 0)
  2599. }
  2600. if len(listHzResource) == 0 {
  2601. listHzResource = make([]*models.IndustrialManagementHotResp, 0)
  2602. }
  2603. if keyWord != "" {
  2604. keyWordItem := new(models.CygxUserSearchKeyWord)
  2605. keyWordItem.UserId = user.UserId
  2606. keyWordItem.KeyWord = keyWord
  2607. keyWordItem.PageType = "ReortSearch"
  2608. keyWordItem.CreateTime = time.Now()
  2609. go models.AddUserSearchKeyWord(keyWordItem)
  2610. go services.AddUserSearchLog(user, keyWord, 5)
  2611. }
  2612. resp.ListHzResource = listHzResource
  2613. resp.ListYxResource = listYxResource
  2614. resp.ListYxReport = ListYxReport
  2615. resp.ListHzReport = ListHzReport
  2616. br.Ret = 200
  2617. br.Success = true
  2618. br.Msg = "获取成功"
  2619. br.Data = resp
  2620. }