report.go 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "github.com/medivhzhan/weapp/v2"
  7. "github.com/rdlucklib/rdluck_tools/paging"
  8. "hongze/hongze_cygx/models"
  9. "hongze/hongze_cygx/services"
  10. "hongze/hongze_cygx/utils"
  11. "html"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. // 报告
  17. type ReportController struct {
  18. BaseAuthController
  19. }
  20. type ReportCommonController struct {
  21. BaseCommonController
  22. }
  23. // @Title 行业报告分类列表接口
  24. // @Description 获取行业报告分类列表接口
  25. // @Param ChartPermissionId query int true "分类ID"
  26. // @Success 200 {object} models.IndustrialManagementList
  27. // @router /home/tradeList [get]
  28. func (this *ReportController) TradeList() {
  29. br := new(models.BaseResponse).Init()
  30. defer func() {
  31. this.Data["json"] = br
  32. this.ServeJSON()
  33. }()
  34. user := this.User
  35. if user == nil {
  36. br.Msg = "请重新登录"
  37. br.Ret = 408
  38. return
  39. }
  40. //uid := user.UserId
  41. ChartPermissionId, _ := this.GetInt("ChartPermissionId")
  42. if ChartPermissionId < 1 {
  43. br.Msg = "请输入分类ID"
  44. return
  45. }
  46. listCategory, err := models.GetTradeArticleAndProductInterior(ChartPermissionId)
  47. if err != nil {
  48. br.Msg = "获取信息失败"
  49. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  50. return
  51. }
  52. var list []*models.TradeReportMapping
  53. categoryMap := make(map[int]int)
  54. for _, v := range listCategory {
  55. if categoryMap[v.CategoryId] > 0 {
  56. continue
  57. }
  58. categoryMap[v.CategoryId] = v.CategoryId
  59. list = append(list, v)
  60. }
  61. //加了一个需求,现有数据结构不支持,手动添加 2023-06-12
  62. //if ChartPermissionId == utils.KE_JI_ID {
  63. // list = append(list, &models.TradeReportMapping{MatchTypeName: "AI前沿", CategoryId: utils.ACTEGORY_ID_AI_QY})
  64. //}
  65. //var condition string
  66. //var pars []interface{}
  67. for k, v := range list {
  68. //if v.PolymerizationId != "" {
  69. // condition = ` AND a.category_id IN(` + v.PolymerizationId + `)`
  70. //} else {
  71. // condition = ` AND a.category_id IN(` + strconv.Itoa(v.CategoryId) + `)`
  72. //}
  73. pageSize := 1
  74. var listArticle []*models.ReportArticle
  75. if v.CategoryId == utils.ACTEGORY_ID_AI_QY {
  76. //加了一个需求,现有数据结构不支持,手动添加 2023-06-12
  77. listArticle, _, err = services.GetAiQianYanArtilceList(0, pageSize)
  78. if err != nil && err.Error() != utils.ErrNoRow() {
  79. br.Msg = "获取信息失败"
  80. br.Msg = "GetHomeList,Err:" + err.Error()
  81. return
  82. }
  83. //for _, vAi := range listArticleAi {
  84. // listArticle = append(listArticle, &models.ReportArticle{
  85. // CategoryId: vAi.CategoryId,
  86. // PublishDate: vAi.PublishDate,
  87. // })
  88. //}
  89. } else {
  90. listArticle, _, err = models.GetReportAndproductIndustrylList(v.CategoryId, 0, pageSize)
  91. if err != nil && err.Error() != utils.ErrNoRow() {
  92. br.Msg = "获取信息失败"
  93. br.Msg = "GetHomeList,Err:" + err.Error()
  94. return
  95. }
  96. }
  97. //listArticle, _, err := models.GetReportAndproductIndustrylList(v.CategoryId, 0, 1)
  98. if len(listArticle) > 0 {
  99. list[k].UpdateTime = utils.StrTimeToTime(listArticle[0].PublishDate).Format(utils.FormatDate) //时间字符串格式转时间格式 }
  100. }
  101. }
  102. resp := new(models.TradeReportMappingResp)
  103. resp.List = list
  104. br.Ret = 200
  105. br.Success = true
  106. br.Msg = "获取成功"
  107. br.Data = resp
  108. }
  109. // @Title 产业报告分类列表接口
  110. // @Description 获取产业报告分类列表接口
  111. // @Param ChartPermissionId query int true "分类ID"
  112. // @Param IsNewLabel query string true "是否属于新标签,1是,0否"
  113. // @Param IsDeepLabel query string true "是否属于深标签,1是,0否"
  114. // @Param KeyWord query string true "搜索关键词"
  115. // @Param OrderColumn query int true "排序字段 ,NewTime 最近更新 ,Recommend弘则推荐"
  116. // @Param DeepCover query int false "深度覆盖:0-否;1-是"
  117. // @Param RecommendFocus query int false "推荐关注:0-否;1-是"
  118. // @Param PageSize query int true "每页数据条数"
  119. // @Param CurrentIndex query int true "当前页页码,从1开始"
  120. // @Success 200 {object} models.IndustrialManagementList
  121. // @router /home/industryList [get]
  122. func (this *ReportController) IndustryList() {
  123. br := new(models.BaseResponse).Init()
  124. defer func() {
  125. this.Data["json"] = br
  126. this.ServeJSON()
  127. }()
  128. user := this.User
  129. if user == nil {
  130. br.Msg = "请重新登录"
  131. br.Ret = 408
  132. return
  133. }
  134. uid := user.UserId
  135. fmt.Println(uid)
  136. ChartPermissionId, _ := this.GetInt("ChartPermissionId")
  137. orderColumn := this.GetString("OrderColumn")
  138. orderColumnNew := this.GetString("OrderColumn")
  139. isNewLabel := this.GetString("IsNewLabel")
  140. isDeepLabel := this.GetString("IsDeepLabel")
  141. keyWord := this.GetString("KeyWord")
  142. pageSize, _ := this.GetInt("PageSize")
  143. currentIndex, _ := this.GetInt("CurrentIndex")
  144. deepCover, _ := this.GetInt("DeepCover")
  145. recommendFocus, _ := this.GetInt("RecommendFocus")
  146. var orderSrt string
  147. var condition string
  148. var startSize int
  149. resp := new(models.IndustrialManagementList)
  150. if pageSize <= 0 {
  151. pageSize = utils.PageSize20
  152. }
  153. if currentIndex <= 0 {
  154. currentIndex = 1
  155. }
  156. startSize = paging.StartIndex(currentIndex, pageSize)
  157. if isNewLabel == "1" {
  158. condition += ` AND is_new_label = ` + isNewLabel
  159. }
  160. if isDeepLabel == "1" {
  161. condition += ` AND is_deep_label = ` + isDeepLabel
  162. }
  163. if keyWord != "" {
  164. condition += ` AND subject_names LIKE '%` + keyWord + `%'`
  165. }
  166. var sqlChartPermissionId string
  167. if ChartPermissionId > 0 {
  168. sqlChartPermissionId += ` AND man_g.industrial_management_id IN ( SELECT industrial_management_id FROM cygx_industrial_management WHERE chart_permission_id = ` + strconv.Itoa(ChartPermissionId) + ` ) `
  169. condition += ` AND man.chart_permission_id IN (` + strconv.Itoa(ChartPermissionId) + `)`
  170. }
  171. // 深度覆盖
  172. if deepCover == 1 {
  173. // 查询深标签产业报告数
  174. var deepCondition string
  175. var deepPars []interface{}
  176. deepCondition += ` AND man.is_deep_label = 1`
  177. if ChartPermissionId > 0 {
  178. deepCondition += ` AND man.chart_permission_id = ?`
  179. deepPars = append(deepPars, ChartPermissionId)
  180. }
  181. industryCountList, e := models.GetIndustryArtCountByCondition(deepCondition, deepPars)
  182. if e != nil {
  183. br.Msg = "获取信息失败"
  184. br.ErrMsg = "获取深标签产业报告数失败, Err: " + e.Error()
  185. return
  186. }
  187. deepIdArr := make([]string, 0)
  188. for i := range industryCountList {
  189. if industryCountList[i].ArtNum > 10 {
  190. deepIdArr = append(deepIdArr, strconv.Itoa(industryCountList[i].IndustrialManagementId))
  191. }
  192. }
  193. deepIds := strings.Join(deepIdArr, ",")
  194. if deepIds != "" {
  195. condition = `AND man.industrial_management_id IN (` + deepIds + `)`
  196. }
  197. }
  198. // 推荐关注
  199. if recommendFocus == 1 {
  200. condition += ` AND man.recommended_index >= 80`
  201. }
  202. // 列表总数据量
  203. var list []*models.IndustrialManagement
  204. total, err := models.GetIndustrialManagementAllCount(condition)
  205. if err != nil {
  206. br.Msg = "获取信息失败"
  207. br.ErrMsg = "获取数量失败,Err:" + err.Error()
  208. return
  209. }
  210. page := paging.GetPaging(currentIndex, pageSize, total)
  211. if orderColumn == "" {
  212. orderColumn = "NewTime"
  213. }
  214. if orderColumn == "NewTime" {
  215. orderSrt = "update_time DESC"
  216. } else {
  217. orderSrt = "man.recommended_index DESC,update_time DESC"
  218. }
  219. if ChartPermissionId == 0 {
  220. ChartPermissionId = 20
  221. }
  222. // 阅读第三的产业详情
  223. //detailHot3, err := models.GetIndustrialManagementHot3(ChartPermissionId)
  224. //if err != nil {
  225. // br.Msg = "获取信息失败"
  226. // br.ErrMsg = "获取信息失败,Err:" + err.Error()
  227. // return
  228. //}
  229. list, err = models.GetIndustrialManagementAll(uid, condition, orderSrt, startSize, pageSize)
  230. if err != nil {
  231. br.Msg = "获取信息失败"
  232. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  233. return
  234. }
  235. // 获取近一个月产业报告阅读次数最多的产业
  236. var topCond string
  237. var topPars []interface{}
  238. //topReadIndustryId := 0
  239. if ChartPermissionId > 0 {
  240. topCond += ` AND chart_permission_id = ?`
  241. topPars = append(topPars, ChartPermissionId)
  242. }
  243. list, err = services.HandleIndustryList(list, user)
  244. if orderColumnNew != "" {
  245. item := new(models.CygxReportIndustrialSeaarchHistory)
  246. item.UserId = user.UserId
  247. item.Mobile = user.Mobile
  248. item.CompanyId = user.CompanyId
  249. item.CompanyName = user.CompanyName
  250. item.CreateTime = time.Now()
  251. item.IsDeepLabel = isDeepLabel
  252. item.IsNewLabel = isNewLabel
  253. item.ChartPermissionId = ChartPermissionId
  254. if orderColumnNew == "NewTime" {
  255. item.OrderColumn = "0"
  256. } else {
  257. item.OrderColumn = "1"
  258. }
  259. go models.AddCygxReportIndustrialSeaarchHistory(item)
  260. }
  261. resp.List = list
  262. resp.Paging = page
  263. br.Ret = 200
  264. br.Success = true
  265. br.Msg = "获取成功"
  266. br.Data = resp
  267. }
  268. // @Title 产业下所关联的文章分类列表
  269. // @Description 产业下所关联的文章分类列表接口
  270. // @Param IndustrialManagementId query int true "产业ID"
  271. // @Param ShowTimeLine query int true "是否展示时间线 0不展示,1展示"
  272. // @Param IsSendWx query int false "是否是通过微信模版进来的 1是,其它否"
  273. // @Success 200 {object} models.IndustrialToArticleCategoryListRep
  274. // @router /toArticleCategoryList [get]
  275. func (this *ReportController) ArticleCategoryList() {
  276. br := new(models.BaseResponse).Init()
  277. defer func() {
  278. this.Data["json"] = br
  279. this.ServeJSON()
  280. }()
  281. user := this.User
  282. if user == nil {
  283. br.Msg = "请重新登录"
  284. br.Ret = 408
  285. return
  286. }
  287. //uid := user.UserId
  288. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  289. if industrialManagementId < 1 {
  290. br.Msg = "请输入分类ID"
  291. return
  292. }
  293. showTimeLine, _ := this.GetInt("ShowTimeLine", 0)
  294. isSendWx, _ := this.GetInt("IsSendWx")
  295. detail, err := models.GetIndustrialManagementDetail(industrialManagementId)
  296. if err != nil {
  297. br.Msg = "获取信息失败"
  298. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  299. return
  300. }
  301. listCategory, err := models.IndustrialToArticleAndProductInteriorCategoryNew(industrialManagementId)
  302. if err != nil {
  303. br.Msg = "获取信息失败"
  304. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  305. return
  306. }
  307. var list []*models.IndustrialToArticleCategoryRep
  308. categoryMap := make(map[int]int)
  309. for _, v := range listCategory {
  310. if categoryMap[v.CategoryId] > 0 {
  311. continue
  312. }
  313. categoryMap[v.CategoryId] = v.CategoryId
  314. list = append(list, v)
  315. }
  316. // 用户权限
  317. authInfo, permissionArr, e := services.GetUserRaiPermissionInfo(user.UserId, user.CompanyId)
  318. if e != nil {
  319. br.Msg = "获取失败"
  320. br.ErrMsg = "获取用户权限失败, Err: " + e.Error()
  321. return
  322. }
  323. videoSimple := new(models.MicroVideoSimpleInfo)
  324. // 权限
  325. var au *models.UserPermissionAuthInfo
  326. video, err := models.GetMicroRoadshowVideoByIndustryId(industrialManagementId)
  327. if err != nil {
  328. if err.Error() != utils.ErrNoRow() {
  329. br.Msg = "获取产业视频失败"
  330. br.ErrMsg = "获取产业视频失败,Err:" + err.Error()
  331. return
  332. }
  333. } else {
  334. videoSimple.Id = video.VideoId
  335. videoSimple.Title = "5min逻辑【" + video.IndustryName + "】解析"
  336. videoSimple.BackgroundImg = video.ImgUrl
  337. videoSimple.DetailImgUrl = video.DetailImgUrl
  338. if videoSimple.BackgroundImg == "" {
  339. // 获取默认图配置
  340. _, videoMap, _, _, e := services.GetMicroRoadShowDefaultImgConfig()
  341. if e != nil {
  342. br.Msg = "获取视频默认配置图失败"
  343. br.ErrMsg = "获取视频默认配置图失败, Err: " + e.Error()
  344. return
  345. }
  346. videoSimple.BackgroundImg = videoMap[video.ChartPermissionId]
  347. }
  348. videoSimple.PlaySeconds = video.VideoDuration
  349. videoSimple.ResourceUrl = video.VideoUrl
  350. au = new(models.UserPermissionAuthInfo)
  351. au.SellerName = authInfo.SellerName
  352. au.SellerMobile = authInfo.SellerMobile
  353. au.HasPermission = authInfo.HasPermission
  354. au.OperationMode = authInfo.OperationMode
  355. if au.HasPermission == 1 {
  356. // 非宏观权限进一步判断是否有权限
  357. if video.ChartPermissionId != utils.HONG_GUAN_ID && !utils.InArrayByStr(permissionArr, video.ChartPermissionName) {
  358. au.HasPermission = 2
  359. }
  360. }
  361. // 无权限的弹框提示
  362. if au.HasPermission != 1 {
  363. if au.OperationMode == services.UserPermissionOperationModeCall {
  364. au.PopupMsg = services.UserPermissionPopupMsgCallMicroVideo
  365. } else {
  366. au.PopupMsg = services.UserPermissionPopupMsgApplyMicroVideo
  367. }
  368. videoSimple.ResourceUrl = ""
  369. }
  370. }
  371. //时间线
  372. if showTimeLine == 1 {
  373. timeLineItem := models.IndustrialToArticleCategoryRep{
  374. CategoryId: 99999,
  375. MatchTypeName: "时间线",
  376. }
  377. timeLineList, err := models.GetTimeLineReportIndustrialList(user.UserId, industrialManagementId, 0, 30)
  378. if err != nil {
  379. br.Msg = "获取信息失败"
  380. br.ErrMsg = "获取帖子数据失败,Err:" + err.Error()
  381. return
  382. }
  383. //查询用户今天是否看过时间线
  384. haveMorningMeeting := false
  385. var morningMeetingTime string
  386. count, err := models.GetTimeLineRecordCount(user.UserId, industrialManagementId)
  387. if err != nil {
  388. br.Msg = "查询浏览记录数量失败"
  389. br.ErrMsg = "查询浏览记录数量失败,Err:" + err.Error()
  390. return
  391. }
  392. var recordItem *models.CygxPageHistoryRecord
  393. if count > 1 {
  394. recordItem, err = models.GetTimeLineRecordItem(user.UserId, industrialManagementId)
  395. if err != nil {
  396. br.Msg = "查询浏览记录失败"
  397. br.ErrMsg = "查询浏览记录失败,Err:" + err.Error()
  398. return
  399. }
  400. }
  401. for _, v := range timeLineList {
  402. if v.Readnum == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishTime)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishTime)) {
  403. if v.SubCategoryName == "时间线" {
  404. haveMorningMeeting = true
  405. morningMeetingTime = v.PublishTime
  406. continue
  407. }
  408. timeLineItem.IsRed = true
  409. }
  410. }
  411. //因为无法记录用户是否看过晨会点评,所以用用户今天是否看过时间线来判断是否显示小红点,这里是判断分类的小红点
  412. timeLineRed := false
  413. if count < 2 {
  414. timeLineRed = true
  415. } else if count > 1 && recordItem.CreateTime.Before(utils.StrTimeToTime(morningMeetingTime)) {
  416. timeLineRed = true
  417. }
  418. if !timeLineItem.IsRed && timeLineRed && haveMorningMeeting {
  419. timeLineItem.IsRed = true
  420. }
  421. list = append([]*models.IndustrialToArticleCategoryRep{&timeLineItem}, list...)
  422. }
  423. resp := new(models.IndustrialToArticleCategoryListRep)
  424. resp.List = list
  425. resp.LayoutTime = utils.TimeRemoveHms(detail.LayoutTime)
  426. resp.IndustryName = detail.IndustryName
  427. resp.IndustrialManagementId = industrialManagementId
  428. resp.AuthInfo = au
  429. if videoSimple.Id > 0 {
  430. resp.IndustryVideo = videoSimple
  431. }
  432. if isSendWx == 1 {
  433. industryUserFollowMap, err := services.GetIndustryUserFollowMap(user)
  434. if err != nil {
  435. br.Msg = "获取信息失败"
  436. br.ErrMsg = "GetActivitySignupResp,Err:" + err.Error()
  437. return
  438. }
  439. resp.IsFollowButton = industryUserFollowMap[industrialManagementId]
  440. resp.IsShowFollowButton = true
  441. }
  442. br.Ret = 200
  443. br.Success = true
  444. br.Msg = "获取成功"
  445. br.Data = resp
  446. }
  447. // @Title 产业文章列表接口
  448. // @Description 获取产业文章列表接口
  449. // @Param PageSize query int true "每页数据条数"
  450. // @Param CurrentIndex query int true "当前页页码,从1开始"
  451. // @Param CategoryId query int true "分类ID"
  452. // @Param IndustrialManagementId query int true "产业ID"
  453. // @Success 200 {object} models.TacticsListResp
  454. // @router /industry/ArticleList [get]
  455. func (this *ReportController) List() {
  456. br := new(models.BaseResponse).Init()
  457. defer func() {
  458. this.Data["json"] = br
  459. this.ServeJSON()
  460. }()
  461. user := this.User
  462. if user == nil {
  463. br.Msg = "请重新登录"
  464. br.Ret = 408
  465. return
  466. }
  467. uid := user.UserId
  468. pageSize, _ := this.GetInt("PageSize")
  469. currentIndex, _ := this.GetInt("CurrentIndex")
  470. categoryId, _ := this.GetInt("CategoryId")
  471. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  472. var startSize int
  473. if pageSize <= 0 {
  474. pageSize = utils.PageSize20
  475. }
  476. if currentIndex <= 0 {
  477. currentIndex = 1
  478. }
  479. startSize = paging.StartIndex(currentIndex, pageSize)
  480. var pars []interface{}
  481. var total int
  482. page := paging.GetPaging(currentIndex, pageSize, total)
  483. if categoryId < 1 {
  484. br.Msg = "请输入分类ID"
  485. return
  486. }
  487. if industrialManagementId < 1 {
  488. br.Msg = "请输入产业ID"
  489. return
  490. }
  491. if categoryId != 99999 {
  492. resp := new(models.TacticsListResp)
  493. list, total, err := models.GetReportAndproductInteriorIndustrialList(pars, categoryId, industrialManagementId, uid, startSize, pageSize)
  494. if err != nil {
  495. br.Msg = "获取信息失败"
  496. br.ErrMsg = "获取帖子数据失败,Err:" + err.Error()
  497. return
  498. }
  499. page = paging.GetPaging(currentIndex, pageSize, total)
  500. //对应分类的所图片
  501. detailCategoryUrl, err := models.GetConfigByCode("category_map_img_url")
  502. if err != nil {
  503. br.Msg = "获取数据失败"
  504. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  505. return
  506. }
  507. categoryUrlList := strings.Split(detailCategoryUrl.ConfigValue, "{|}")
  508. mapCategoryUrl := make(map[string]string)
  509. var categoryIdStr string
  510. var imgUrlChart string
  511. for _, v := range categoryUrlList {
  512. vslice := strings.Split(v, "_")
  513. categoryIdStr = vslice[0]
  514. imgUrlChart = vslice[len(vslice)-1]
  515. mapCategoryUrl[categoryIdStr] = imgUrlChart
  516. }
  517. lenList := len(list)
  518. for i := 0; i < lenList; i++ {
  519. item := list[i]
  520. list[i].Body, _ = services.GetReportContentTextSub(item.Body)
  521. //list[i].Abstract = html.UnescapeString(item.Abstract)
  522. list[i].Abstract, _ = services.GetReportContentTextSub(item.Abstract)
  523. //list[i].Annotation = services.GetAnnotationTextSub(item.Annotation)
  524. }
  525. for k, v := range list {
  526. if v.Readnum == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishDate)) {
  527. list[k].IsRed = true
  528. }
  529. if v.VideoUrl != "" {
  530. list[k].IsHaveVideo = true
  531. }
  532. list[k].ImgUrlPc = mapCategoryUrl[v.CategoryId]
  533. if v.Resource == 2 {
  534. v.PublishDate = utils.TimeRemoveHms2(v.PublishDate)
  535. }
  536. }
  537. //resp.CategoryImgUrlPc = mapChartPermission[detail.ChartPermissionName]
  538. //resp.ChartPermissionId = detail.ChartPermissionId
  539. resp.List = list
  540. resp.Paging = page
  541. br.Ret = 200
  542. br.Success = true
  543. br.Msg = "获取成功"
  544. br.Data = resp
  545. } else {
  546. //获取该产业下所对应的行业图片
  547. //因为时间线不属于数据表里的二级分类,所以图片Id用产业id查到的list中的任意一个categoryId取到的图片替代
  548. categoryList, err := models.IndustrialToArticleCategoryNew(industrialManagementId)
  549. if err != nil {
  550. br.Msg = "获取信息失败"
  551. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  552. return
  553. }
  554. var timeLineCategoryId int
  555. if len(categoryList) > 0 {
  556. timeLineCategoryId = categoryList[0].CategoryId
  557. }
  558. var detail *models.ReportMapping
  559. var errCategory error
  560. if timeLineCategoryId > 0 {
  561. detail, errCategory = models.GetdetailByCategoryIdOne(timeLineCategoryId)
  562. if errCategory != nil {
  563. br.Msg = "获取信息失败"
  564. br.ErrMsg = "获取信息失败,Err:" + errCategory.Error() + "categoryID 不存在:" + strconv.Itoa(categoryId)
  565. return
  566. }
  567. }
  568. //对应行业的图片
  569. detailChartPermissionUrl, err := models.GetConfigByCode("category_chart_permissionimg_url")
  570. if err != nil {
  571. br.Msg = "获取数据失败"
  572. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  573. return
  574. }
  575. chartPermissionUrlList := strings.Split(detailChartPermissionUrl.ConfigValue, "{|}")
  576. mapChartPermission := make(map[string]string)
  577. var permissionName string
  578. var imgUrlChartPermission string
  579. for _, v := range chartPermissionUrlList {
  580. vslice := strings.Split(v, "_")
  581. permissionName = vslice[0]
  582. imgUrlChartPermission = vslice[len(vslice)-1]
  583. mapChartPermission[permissionName] = imgUrlChartPermission
  584. }
  585. total, err := models.GetTimeLineReportIndustrialCount(industrialManagementId)
  586. if err != nil {
  587. br.Msg = "获取信息失败"
  588. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  589. return
  590. }
  591. page = paging.GetPaging(currentIndex, pageSize, total)
  592. list, err := models.GetTimeLineReportIndustrialList(user.UserId, industrialManagementId, startSize, pageSize)
  593. if err != nil {
  594. br.Msg = "获取信息失败"
  595. br.ErrMsg = "获取帖子数据失败,Err:" + err.Error()
  596. return
  597. }
  598. //对应分类的所图片
  599. detailCategoryUrl, err := models.GetConfigByCode("category_map_img_url")
  600. if err != nil {
  601. br.Msg = "获取数据失败"
  602. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  603. return
  604. }
  605. categoryUrlList := strings.Split(detailCategoryUrl.ConfigValue, "{|}")
  606. mapCategoryUrl := make(map[string]string)
  607. var categoryIdStr string
  608. var imgUrlChart string
  609. for _, v := range categoryUrlList {
  610. vslice := strings.Split(v, "_")
  611. categoryIdStr = vslice[0]
  612. imgUrlChart = vslice[len(vslice)-1]
  613. mapCategoryUrl[categoryIdStr] = imgUrlChart
  614. }
  615. //lenList := len(list)
  616. //for i := 0; i < lenList; i++ {
  617. // item := list[i]
  618. // list[i].Content, _ = services.GetReportContentTextSub(item.Content)
  619. // //list[i].Abstract = html.UnescapeString(item.Abstract)
  620. // //list[i].Abstract, _ = services.GetReportContentTextSub(item.Abstract)
  621. //}
  622. //查询用户今天是否看过时间线
  623. count, err := models.GetTimeLineRecordCount(user.UserId, industrialManagementId)
  624. if err != nil {
  625. br.Msg = "查询浏览记录数量失败"
  626. br.ErrMsg = "查询浏览记录数量失败,Err:" + err.Error()
  627. return
  628. }
  629. var recordItem *models.CygxPageHistoryRecord
  630. if count > 1 {
  631. recordItem, err = models.GetTimeLineRecordItem(user.UserId, industrialManagementId)
  632. if err != nil {
  633. br.Msg = "查询浏览记录失败"
  634. br.ErrMsg = "查询浏览记录失败,Err:" + err.Error()
  635. return
  636. }
  637. }
  638. for k, v := range list {
  639. if v.SubCategoryName != "时间线" && v.Readnum == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishTime)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishTime)) {
  640. list[k].IsRed = true
  641. }
  642. timeLineRed := false
  643. if count < 2 && v.SubCategoryName == "时间线" {
  644. timeLineRed = true
  645. } else if count > 1 && recordItem.CreateTime.Before(utils.StrTimeToTime(v.PublishTime)) {
  646. timeLineRed = true
  647. }
  648. if v.SubCategoryName == "时间线" && timeLineRed {
  649. list[k].IsRed = true
  650. }
  651. if v.VideoUrl != "" {
  652. list[k].IsHaveVideo = true
  653. }
  654. id := strconv.Itoa(timeLineCategoryId)
  655. list[k].ImgUrlPc = mapCategoryUrl[id]
  656. if mapCategoryUrl[id] == "" {
  657. if detail != nil {
  658. if detail.ChartPermissionId == utils.YI_YAO_ID {
  659. list[k].ImgUrlPc = utils.YI_YAO_QI_TA
  660. }
  661. }
  662. }
  663. }
  664. resp := new(models.TimeLineReportListResp)
  665. //resp.CategoryImgUrlPc = mapChartPermission[detail.ChartPermissionName]
  666. resp.List = list
  667. resp.Paging = page
  668. br.Ret = 200
  669. br.Success = true
  670. br.Msg = "获取成功"
  671. br.Data = resp
  672. }
  673. }
  674. // @Title 置顶/取消置顶
  675. // @Description 置顶
  676. // @Param request body models.CygxIndustryTopRep true "type json string"
  677. // @Success 200
  678. // @router /top [post]
  679. func (this *ReportController) ArticleCollect() {
  680. br := new(models.BaseResponse).Init()
  681. defer func() {
  682. this.Data["json"] = br
  683. this.ServeJSON()
  684. }()
  685. user := this.User
  686. if user == nil {
  687. br.Msg = "请重新登录"
  688. br.Ret = 408
  689. return
  690. }
  691. uid := user.UserId
  692. var req models.CygxIndustryTopRep
  693. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  694. if err != nil {
  695. br.Msg = "参数解析异常!"
  696. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  697. return
  698. }
  699. industrialManagementId := req.IndustrialManagementId
  700. countIndustrial, err := models.GetIndustrialManagementCount(industrialManagementId)
  701. if err != nil {
  702. br.Msg = "获取数据失败!"
  703. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  704. return
  705. }
  706. if countIndustrial == 0 {
  707. br.Msg = "产业不存在!"
  708. br.ErrMsg = "产业ID不存在:" + strconv.Itoa(industrialManagementId)
  709. return
  710. }
  711. count, err := models.GetCygxIndustryTop(uid, industrialManagementId)
  712. if err != nil {
  713. br.Msg = "获取数据失败!"
  714. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  715. return
  716. }
  717. resp := new(models.ArticleCollectResp)
  718. if count <= 0 {
  719. item := new(models.CygxIndustryTop)
  720. item.IndustrialManagementId = req.IndustrialManagementId
  721. item.UserId = uid
  722. item.CreateTime = time.Now()
  723. _, err = models.AddCygxIndustryTop(item)
  724. if err != nil {
  725. br.Msg = "置顶失败"
  726. br.ErrMsg = "置顶失败,Err:" + err.Error()
  727. return
  728. }
  729. br.Msg = "置顶成功"
  730. resp.Status = 1
  731. } else {
  732. err = models.RemoveCygxIndustryTop(uid, industrialManagementId)
  733. if err != nil {
  734. br.Msg = "取消置顶失败"
  735. br.ErrMsg = "取消置顶失败,Err:" + err.Error()
  736. return
  737. }
  738. br.Msg = "已取消置顶"
  739. resp.Status = 2
  740. }
  741. br.Ret = 200
  742. br.Success = true
  743. br.Data = resp
  744. }
  745. // @Title 关注/取消关注产业
  746. // @Description 关注/取消关注 接口
  747. // @Param request body models.CygxIndustryFllowRep true "type json string"
  748. // @Success 200
  749. // @router /fllow [post]
  750. func (this *ReportController) Fllow() {
  751. br := new(models.BaseResponse).Init()
  752. defer func() {
  753. this.Data["json"] = br
  754. this.ServeJSON()
  755. }()
  756. user := this.User
  757. if user == nil {
  758. br.Msg = "请重新登录"
  759. br.Ret = 408
  760. return
  761. }
  762. uid := user.UserId
  763. var req models.CygxIndustryFllowRep
  764. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  765. if err != nil {
  766. br.Msg = "参数解析异常!"
  767. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  768. return
  769. }
  770. industrialManagementId := req.IndustrialManagementId
  771. var condition string
  772. countIndustrial, err := models.GetIndustrialManagementCount(industrialManagementId)
  773. if err != nil {
  774. br.Msg = "获取数据失败!"
  775. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  776. return
  777. }
  778. if countIndustrial == 0 {
  779. br.Msg = "产业不存在!"
  780. br.ErrMsg = "产业ID不存在:" + strconv.Itoa(industrialManagementId)
  781. return
  782. }
  783. count, err := models.GetCountCygxIndustryFllow(uid, industrialManagementId, condition)
  784. if err != nil {
  785. br.Msg = "获取数据失败!"
  786. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  787. return
  788. }
  789. resp := new(models.CygxIndustryFllowResp)
  790. countUser, err := models.GetCountCygxIndustryFllowByUid(uid)
  791. if countUser == 0 {
  792. resp.GoFollow = true
  793. }
  794. item := new(models.CygxIndustryFllow)
  795. item.IndustrialManagementId = industrialManagementId
  796. item.UserId = uid
  797. item.Email = user.Email
  798. item.Mobile = user.Mobile
  799. item.RealName = user.RealName
  800. item.Source = utils.REGISTER_PLATFORM
  801. item.CompanyId = user.CompanyId
  802. item.CompanyName = user.CompanyName
  803. if count == 0 {
  804. item.Type = 1
  805. item.CreateTime = time.Now()
  806. item.ModifyTime = time.Now()
  807. _, err = models.AddCygxIndustryFllow(item)
  808. if err != nil {
  809. br.Msg = "操作失败"
  810. br.ErrMsg = "操作失败,Err:" + err.Error()
  811. return
  812. }
  813. resp.Status = 1
  814. } else {
  815. item.Type = 2
  816. err = models.RemoveCygxIndustryFllow(uid, industrialManagementId)
  817. if err != nil {
  818. br.Msg = "操作失败"
  819. br.ErrMsg = "取消关注失败,Err:" + err.Error()
  820. return
  821. }
  822. }
  823. go services.IndustryFllowWithTrack(industrialManagementId, count, uid) //处理是否关注全部赛道字段
  824. go services.IndustryFllowUserLabelLogAdd(industrialManagementId, count, uid) //处理用户标签
  825. go services.AddCygxIndustryFllowLog(item) //添加操作日志记录
  826. br.Msg = "操作成功"
  827. br.Ret = 200
  828. br.Success = true
  829. br.Data = resp
  830. }
  831. // @Title 产业报告分类关联作者列表接口
  832. // @Description 获取产业报告分类关联作者列表接口
  833. // @Param ChartPermissionId query int true "分类ID"
  834. // @Param PageSize query int true "每页数据条数"
  835. // @Param CurrentIndex query int true "当前页页码,从1开始"
  836. // @Success 200 {object} models.CygxArticleDepartmentList
  837. // @router /industryListByDepartment [get]
  838. func (this *ReportController) IndustryListByDepartment() {
  839. br := new(models.BaseResponse).Init()
  840. defer func() {
  841. this.Data["json"] = br
  842. this.ServeJSON()
  843. }()
  844. user := this.User
  845. if user == nil {
  846. br.Msg = "请重新登录"
  847. br.Ret = 408
  848. return
  849. }
  850. uid := user.UserId
  851. pageSize, _ := this.GetInt("PageSize")
  852. currentIndex, _ := this.GetInt("CurrentIndex")
  853. //chartPermissionId, _ := this.GetInt("ChartPermissionId")
  854. var startSize int
  855. var condition string
  856. //condition = ` AND a.publish_status=1 AND m.chart_permission_id =` + strconv.Itoa(chartPermissionId)
  857. condition = ` AND a.publish_status=1 `
  858. if pageSize <= 0 {
  859. pageSize = utils.PageSize20
  860. }
  861. if currentIndex <= 0 {
  862. currentIndex = 1
  863. }
  864. startSize = paging.StartIndex(currentIndex, pageSize)
  865. total, err := models.GetArticleDepartmentCount(condition)
  866. page := paging.GetPaging(currentIndex, pageSize, total)
  867. resp := new(models.CygxArticleDepartmentList)
  868. userType, _, err := services.GetUserType(user.CompanyId)
  869. if err != nil {
  870. br.Msg = "获取信息失败"
  871. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  872. return
  873. }
  874. if userType == 1 {
  875. resp.Paging = page
  876. br.Ret = 200
  877. br.Success = true
  878. br.Msg = "获取成功"
  879. br.Data = resp
  880. return
  881. }
  882. resp.HaveResearch = true
  883. //获取作者信息,并排序
  884. list, err := models.GetCygxArticleDepartmentList(startSize, pageSize, condition, uid)
  885. if err != nil {
  886. br.Msg = "获取信息失败"
  887. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  888. return
  889. }
  890. for k, v := range list {
  891. artList, err := models.GetArticleByDepartmentId(v.DepartmentId)
  892. if err != nil {
  893. br.Msg = "获取信息失败"
  894. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  895. return
  896. }
  897. for k2, v2 := range artList {
  898. subjectNames, err := models.GetSubjectNames(v2.ArticleId)
  899. if err != nil {
  900. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  901. br.ErrMsg = "获取失败,Err:" + err.Error()
  902. return
  903. }
  904. var subjectNamesNew string
  905. if len(subjectNames) > 0 {
  906. slice := strings.Split(subjectNames, "/")
  907. for k3, v3 := range slice {
  908. if k3 < 4 {
  909. subjectNamesNew += v3 + "/"
  910. }
  911. }
  912. }
  913. industryName, err := models.GetIndustrialNames(v2.ArticleId)
  914. if err != nil && err.Error() != utils.ErrNoRow() {
  915. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  916. br.ErrMsg = "获取失败,Err:" + err.Error()
  917. return
  918. }
  919. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  920. artList[k2].SubjectName = subjectNamesNew
  921. artList[k2].DepartmentId = v.DepartmentId
  922. if subjectNamesNew == "" {
  923. artList[k2].IndustryName = industryName
  924. } else {
  925. artList[k2].IndustryName = industryName + "-" + subjectNamesNew
  926. }
  927. if artList[k2].IsReport == "1" {
  928. artList[k2].IndustryName = "【观点】" + artList[k2].IndustryName
  929. } else {
  930. artList[k2].IndustryName = "【纪要】" + artList[k2].IndustryName
  931. }
  932. }
  933. list[k].List = artList
  934. if v.FollowNum > 0 {
  935. list[k].IsMyFollow = true
  936. }
  937. }
  938. listnNew, err := models.GetIndustrialSubjectByDepartmentNew()
  939. if err != nil {
  940. br.Msg = "获取信息失败"
  941. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  942. return
  943. }
  944. if len(listnNew) > 0 {
  945. for _, v := range listnNew {
  946. firstStr := strings.Index(v.IndustrialAndSubjectIds, "—")
  947. Management := new(models.IndustrialManagementIdInt)
  948. if firstStr == 0 {
  949. Management.IndustryName = v.IndustryName
  950. } else {
  951. listSub, err := models.GetIndustrialManagementSubjectList(v.ArticleId)
  952. if err != nil {
  953. br.Msg = "获取信息失败"
  954. br.ErrMsg = "获取关联标的列表失败,Err:" + err.Error()
  955. return
  956. }
  957. var subjectNamesNew string
  958. for _, v1 := range listSub {
  959. subjectNamesNew += v1.SubjectName + "/"
  960. }
  961. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  962. Management.IndustryName = subjectNamesNew
  963. }
  964. Management.IndustrialManagementId = v.IndustrialManagementId
  965. Management.ArticleId = v.ArticleId
  966. resp.ListnNew = append(resp.ListnNew, Management)
  967. }
  968. }
  969. resp.List = list
  970. resp.Paging = page
  971. br.Ret = 200
  972. br.Success = true
  973. br.Msg = "获取成功"
  974. br.Data = resp
  975. }
  976. // @Title 关注作者/取消关注作者
  977. // @Description 关注作者/取消关注作者 接口
  978. // @Param request body models.CygxArticleDepartmentId true "type json string"
  979. // @Success 200
  980. // @router /fllowDepartment [post]
  981. func (this *ReportController) FllowDepartment() {
  982. br := new(models.BaseResponse).Init()
  983. defer func() {
  984. this.Data["json"] = br
  985. this.ServeJSON()
  986. }()
  987. user := this.User
  988. if user == nil {
  989. br.Msg = "请重新登录"
  990. br.Ret = 408
  991. return
  992. }
  993. uid := user.UserId
  994. var req models.CygxArticleDepartmentId
  995. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  996. if err != nil {
  997. br.Msg = "参数解析异常!"
  998. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  999. return
  1000. }
  1001. departmentId := req.DepartmentId
  1002. var condition string
  1003. countDepartment, err := models.GetDepartmentCount(departmentId)
  1004. if err != nil {
  1005. br.Msg = "获取数据失败!"
  1006. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  1007. return
  1008. }
  1009. if countDepartment == 0 {
  1010. br.Msg = "作者不存在!"
  1011. br.ErrMsg = "作者ID不存在:" + strconv.Itoa(departmentId)
  1012. return
  1013. }
  1014. countUser, err := models.GetArticleDepartmentFollowByUid(uid)
  1015. count, err := models.GetArticleDepartmentFollow(uid, departmentId, condition)
  1016. if err != nil {
  1017. br.Msg = "获取数据失败!"
  1018. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  1019. return
  1020. }
  1021. resp := new(models.CygxArticleDepartmentFollowResp)
  1022. if countUser == 0 {
  1023. resp.GoFollow = true
  1024. }
  1025. if count == 0 {
  1026. item := new(models.CygxArticleDepartmentFollow)
  1027. item.DepartmentId = departmentId
  1028. item.UserId = uid
  1029. item.Email = user.Email
  1030. item.Mobile = user.Mobile
  1031. item.RealName = user.RealName
  1032. item.CompanyId = user.CompanyId
  1033. item.CompanyName = user.CompanyName
  1034. item.Type = 1
  1035. item.CreateTime = time.Now()
  1036. item.ModifyTime = time.Now()
  1037. _, err = models.AddArticleDepartmentFollow(item)
  1038. if err != nil {
  1039. br.Msg = "操作失败"
  1040. br.ErrMsg = "操作失败,Err:" + err.Error()
  1041. return
  1042. }
  1043. resp.Status = 1
  1044. } else {
  1045. var doType int
  1046. condition = ` AND type = 1`
  1047. count, err = models.GetArticleDepartmentFollow(uid, departmentId, condition)
  1048. if err != nil {
  1049. br.Msg = "操作失败!"
  1050. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  1051. return
  1052. }
  1053. if count == 1 {
  1054. resp.Status = 2
  1055. doType = 2
  1056. } else {
  1057. resp.Status = 1
  1058. doType = 1
  1059. }
  1060. err = models.RemoveArticleDepartmentFollow(uid, departmentId, doType)
  1061. if err != nil {
  1062. br.Msg = "操作失败"
  1063. br.ErrMsg = "取消关注失败,Err:" + err.Error()
  1064. return
  1065. }
  1066. }
  1067. br.Msg = "操作成功"
  1068. br.Ret = 200
  1069. br.Success = true
  1070. br.Data = resp
  1071. }
  1072. // @Title 研选文章列表接口
  1073. // @Description 获取研选文章列表接口
  1074. // @Param PageSize query int true "每页数据条数"
  1075. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1076. // @Param ArticleId query int true "文章id"
  1077. // @Param DepartmentId query int true "作者ID"
  1078. // @Param IndustrialManagementId query int true "产业ID"
  1079. // @Success 200 {object} models.ReportArticleWhichIndustrialRepList
  1080. // @router /industry/reportList [get]
  1081. func (this *ReportController) ReportList() {
  1082. br := new(models.BaseResponse).Init()
  1083. defer func() {
  1084. this.Data["json"] = br
  1085. this.ServeJSON()
  1086. }()
  1087. user := this.User
  1088. if user == nil {
  1089. br.Msg = "请重新登录"
  1090. br.Ret = 408
  1091. return
  1092. }
  1093. uid := user.UserId
  1094. pageSize, _ := this.GetInt("PageSize")
  1095. currentIndex, _ := this.GetInt("CurrentIndex")
  1096. departmentId, _ := this.GetInt("DepartmentId")
  1097. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  1098. articleId, _ := this.GetInt("ArticleId")
  1099. var condition string
  1100. var startSize int
  1101. if pageSize <= 0 {
  1102. pageSize = utils.PageSize20
  1103. }
  1104. if currentIndex <= 0 {
  1105. currentIndex = 1
  1106. }
  1107. startSize = paging.StartIndex(currentIndex, pageSize)
  1108. var pars []interface{}
  1109. var total int
  1110. resp := new(models.ReportArticleWhichIndustrialRepList)
  1111. page := paging.GetPaging(currentIndex, pageSize, total)
  1112. userType, _, err := services.GetUserType(user.CompanyId)
  1113. if err != nil {
  1114. br.Msg = "获取信息失败"
  1115. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  1116. return
  1117. }
  1118. if userType == 1 {
  1119. resp.Paging = page
  1120. br.Ret = 200
  1121. br.Success = true
  1122. br.Msg = "获取成功"
  1123. br.Data = resp
  1124. return
  1125. }
  1126. resp.HaveResearch = true
  1127. if departmentId > 0 {
  1128. condition += ` AND art.department_id = ` + strconv.Itoa(departmentId)
  1129. detail, err := models.GetArticleDepartmentDateilById(departmentId)
  1130. if err != nil {
  1131. br.Msg = "获取信息失败"
  1132. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1133. return
  1134. }
  1135. resp.NickName = detail.NickName
  1136. }
  1137. if industrialManagementId > 0 {
  1138. condition += ` AND m.industrial_management_id = ` + strconv.Itoa(industrialManagementId)
  1139. }
  1140. if articleId > 0 {
  1141. detail, err := models.GetArticleDetailById(articleId)
  1142. if err != nil {
  1143. br.Msg = "获取信息失败"
  1144. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1145. return
  1146. }
  1147. condition += ` AND art.subject_ids = '` + detail.SubjectIds + `'`
  1148. }
  1149. total, err = models.GetWhichDepartmentCount(condition)
  1150. if err != nil {
  1151. br.Msg = "获取信息失败"
  1152. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  1153. return
  1154. }
  1155. page = paging.GetPaging(currentIndex, pageSize, total)
  1156. condition += ` GROUP BY art.article_id ORDER BY art.publish_date DESC`
  1157. list, err := models.IndustrialToArticleWhichDepartment(condition, pars, uid, startSize, pageSize)
  1158. if err != nil {
  1159. br.Msg = "获取失败"
  1160. br.ErrMsg = "获取失败,Err:" + err.Error()
  1161. return
  1162. }
  1163. for k, v := range list {
  1164. if v.Readnum == 0 {
  1165. list[k].IsRed = true
  1166. }
  1167. list[k].IsResearch = true
  1168. subjectNames, err := models.GetSubjectNames(v.ArticleId)
  1169. if err != nil {
  1170. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1171. br.ErrMsg = "获取失败,Err:" + err.Error()
  1172. return
  1173. }
  1174. var subjectNamesNew string
  1175. if len(subjectNames) > 0 {
  1176. slice := strings.Split(subjectNames, "/")
  1177. for k3, v3 := range slice {
  1178. if k3 < 4 {
  1179. subjectNamesNew += v3 + "/"
  1180. }
  1181. }
  1182. }
  1183. industryName, err := models.GetIndustrialNames(v.ArticleId)
  1184. if err != nil && err.Error() != utils.ErrNoRow() {
  1185. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1186. br.ErrMsg = "获取失败,Err:" + err.Error()
  1187. return
  1188. }
  1189. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  1190. list[k].SubjectName = subjectNamesNew
  1191. if subjectNamesNew != "" {
  1192. list[k].IndustryName = industryName + "-" + subjectNamesNew
  1193. } else {
  1194. list[k].IndustryName = industryName
  1195. }
  1196. resp.IndustryName = industryName
  1197. list[k].ImgUrlPc = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202112/20211206/UvMadc63MLZY6rnQZQgGZAFXkqwf.png"
  1198. }
  1199. resp.List = list
  1200. resp.Paging = page
  1201. br.Ret = 200
  1202. br.Success = true
  1203. br.Msg = "获取成功"
  1204. br.Data = resp
  1205. }
  1206. // @Title 研选最新主题关键词文章列表接口
  1207. // @Description 获取研选最新主题关键词文章列表接口
  1208. // @Param PageSize query int true "每页数据条数"
  1209. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1210. // @Param ArticleId query int true "文章id"
  1211. // @Success 200 {object} models.ReportArticleWhichIndustrialRepList
  1212. // @router /industry/reportListNew [get]
  1213. func (this *ReportController) ReportListNew() {
  1214. br := new(models.BaseResponse).Init()
  1215. defer func() {
  1216. this.Data["json"] = br
  1217. this.ServeJSON()
  1218. }()
  1219. user := this.User
  1220. if user == nil {
  1221. br.Msg = "请重新登录"
  1222. br.Ret = 408
  1223. return
  1224. }
  1225. uid := user.UserId
  1226. pageSize, _ := this.GetInt("PageSize")
  1227. currentIndex, _ := this.GetInt("CurrentIndex")
  1228. articleId, _ := this.GetInt("ArticleId")
  1229. var condition string
  1230. var startSize int
  1231. if pageSize <= 0 {
  1232. pageSize = utils.PageSize20
  1233. }
  1234. if currentIndex <= 0 {
  1235. currentIndex = 1
  1236. }
  1237. startSize = paging.StartIndex(currentIndex, pageSize)
  1238. var pars []interface{}
  1239. var total int
  1240. resp := new(models.ReportArticleWhichIndustrialRepList)
  1241. page := paging.GetPaging(currentIndex, pageSize, total)
  1242. userType, _, err := services.GetUserType(user.CompanyId)
  1243. if err != nil {
  1244. br.Msg = "获取信息失败"
  1245. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  1246. return
  1247. }
  1248. if userType == 1 {
  1249. resp.Paging = page
  1250. br.Ret = 200
  1251. br.Success = true
  1252. br.Msg = "获取成功"
  1253. br.Data = resp
  1254. return
  1255. }
  1256. resp.HaveResearch = true
  1257. if articleId > 0 {
  1258. detail, err := models.GetArticleDetailById(articleId)
  1259. if err != nil {
  1260. br.Msg = "获取信息失败"
  1261. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1262. return
  1263. }
  1264. firstStr := strings.Index(detail.IndustrialAndSubjectIds, "—")
  1265. if firstStr == 0 {
  1266. condition += ` AND art.industrial_management_id = '` + strconv.Itoa(detail.IndustrialManagementId) + `'`
  1267. } else {
  1268. condition += ` AND art.industrial_and_subject_ids = '` + detail.IndustrialAndSubjectIds + `'`
  1269. }
  1270. }
  1271. total, err = models.GetWhichDepartmentCount(condition)
  1272. if err != nil {
  1273. br.Msg = "获取信息失败"
  1274. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  1275. return
  1276. }
  1277. page = paging.GetPaging(currentIndex, pageSize, total)
  1278. condition += ` GROUP BY art.article_id ORDER BY art.publish_date DESC`
  1279. list, err := models.IndustrialToArticleWhichDepartment(condition, pars, uid, startSize, pageSize)
  1280. if err != nil {
  1281. br.Msg = "获取失败"
  1282. br.ErrMsg = "获取失败,Err:" + err.Error()
  1283. return
  1284. }
  1285. for k, v := range list {
  1286. if v.Readnum == 0 {
  1287. list[k].IsRed = true
  1288. }
  1289. list[k].IsResearch = true
  1290. list[k].ImgUrlPc = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202112/20211206/UvMadc63MLZY6rnQZQgGZAFXkqwf.png"
  1291. subjectNames, err := models.GetSubjectNames(v.ArticleId)
  1292. if err != nil {
  1293. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1294. br.ErrMsg = "获取失败,Err:" + err.Error()
  1295. return
  1296. }
  1297. var subjectNamesNew string
  1298. if len(subjectNames) > 0 {
  1299. slice := strings.Split(subjectNames, "/")
  1300. for k3, v3 := range slice {
  1301. if k3 < 4 {
  1302. subjectNamesNew += v3 + "/"
  1303. }
  1304. }
  1305. }
  1306. industryName, err := models.GetIndustrialNames(v.ArticleId)
  1307. if err != nil && err.Error() != utils.ErrNoRow() {
  1308. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1309. br.ErrMsg = "获取失败,Err:" + err.Error()
  1310. return
  1311. }
  1312. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  1313. list[k].SubjectName = subjectNamesNew
  1314. if subjectNamesNew != "" {
  1315. list[k].IndustryName = industryName + "-" + subjectNamesNew
  1316. } else {
  1317. list[k].IndustryName = industryName
  1318. }
  1319. resp.IndustryName = industryName
  1320. }
  1321. resp.List = list
  1322. resp.Paging = page
  1323. br.Ret = 200
  1324. br.Success = true
  1325. br.Msg = "获取成功"
  1326. br.Data = resp
  1327. }
  1328. // @Title 是否展示绝密内参
  1329. // @Description 获取是否展示绝密内参接口
  1330. // @Param request body models.IsShow true "type json string"
  1331. // @Success 200
  1332. // @router /isShow [get]
  1333. func (this *ReportController) IsShow() {
  1334. br := new(models.BaseResponse).Init()
  1335. defer func() {
  1336. this.Data["json"] = br
  1337. this.ServeJSON()
  1338. }()
  1339. user := this.User
  1340. if user == nil {
  1341. br.Msg = "请重新登录"
  1342. br.Ret = 408
  1343. return
  1344. }
  1345. var resp models.IsShow
  1346. IsShowFreeButton, err := services.GetfreeButtonIsShow(user)
  1347. if err != nil {
  1348. br.Msg = "获取失败"
  1349. br.ErrMsg = "获取失败,GetfreeButtonIsShow Err:" + err.Error()
  1350. return
  1351. }
  1352. resp.IsShowChart = true
  1353. //resp.IsShowResearch = true
  1354. resp.LinkWxExplain = utils.LINK_WX_EXPLAIN
  1355. resp.ActivitySpecialExplain = utils.ACTIVITY_SPECIAL_EXPLAIN
  1356. //resp.YanXuan_Explain = true
  1357. resp.IsShowFreeButton = IsShowFreeButton
  1358. resp.IsBelongRai = services.GetBelongingRai(user.Mobile)
  1359. resp.IsShowQuestionnaire = services.GetQuestionnaireButtonIsShow() // 获取研选问卷调查按钮是否展示
  1360. resp.IsShowResearchPoints = true
  1361. if utils.RunMode == "release" { //是否展示关于我们的视频,测试环境审核做隐藏
  1362. resp.IsShowAboutVideo = true
  1363. }
  1364. //mobile := user.Mobile
  1365. //if mobile == "" {
  1366. // br.Ret = 200
  1367. // br.Success = true
  1368. // br.Data = resp
  1369. // return
  1370. //}
  1371. //total, _ := models.GetUserIsAdminCount(mobile)
  1372. //if total > 0 {
  1373. // resp.IsShowList = true
  1374. //}
  1375. resp.IsShowList = true
  1376. resp.SearchTxtList.SummarySearch = "全局搜索"
  1377. resp.SearchTxtList.ReportSearch = "全局搜索"
  1378. resp.SearchTxtList.YanXuanSearch = "全局搜索"
  1379. resp.SearchTxtList.ActivitySearch = "全局搜索"
  1380. resp.SearchTxtList.TabSearch = "请输入关键词"
  1381. resp.IsShow = true
  1382. br.Ret = 200
  1383. br.Success = true
  1384. br.Data = resp
  1385. }
  1386. // @Title 报告精选、本周研究汇总、上周纪要汇总列表
  1387. // @Description 获取报告精选、本周研究汇总、上周纪要汇总列表接口
  1388. // @Param PageSize query int true "每页数据条数"
  1389. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1390. // @Param ReportType string query true "报告类型 ,1报告精选、2本周研究汇总、3上周纪要汇总"
  1391. // @Success 200 {object} models.CygxReportSelectionListPublicRep
  1392. // @router /reportList/byType [get]
  1393. func (this *ReportController) ReportListByType() {
  1394. br := new(models.BaseResponse).Init()
  1395. defer func() {
  1396. this.Data["json"] = br
  1397. this.ServeJSON()
  1398. }()
  1399. user := this.User
  1400. if user == nil {
  1401. br.Msg = "请重新登录"
  1402. br.Ret = 408
  1403. return
  1404. }
  1405. uid := user.UserId
  1406. pageSize, _ := this.GetInt("PageSize")
  1407. currentIndex, _ := this.GetInt("CurrentIndex")
  1408. reportType := this.GetString("ReportType")
  1409. var condition string
  1410. var startSize int
  1411. if pageSize <= 0 {
  1412. pageSize = utils.PageSize20
  1413. }
  1414. if currentIndex <= 0 {
  1415. currentIndex = 1
  1416. }
  1417. startSize = paging.StartIndex(currentIndex, pageSize)
  1418. var pars []interface{}
  1419. var total int
  1420. resp := new(models.CygxReportSelectionListPublicRep)
  1421. page := paging.GetPaging(currentIndex, pageSize, total)
  1422. var tbdb string
  1423. var readSql string
  1424. var reportTypeStr string
  1425. if reportType == "1" {
  1426. tbdb = "cygx_report_selection"
  1427. reportTypeStr = "bgjx"
  1428. } else if reportType == "2" {
  1429. tbdb = "cygx_research_summary"
  1430. reportTypeStr = "bzyjhz"
  1431. } else if reportType == "3" {
  1432. tbdb = "cygx_minutes_summary"
  1433. reportTypeStr = "szjyhz"
  1434. } else {
  1435. br.Msg = "请选择报告类型"
  1436. return
  1437. }
  1438. condition = ` AND publish_status = 1 `
  1439. if user.CompanyId != utils.HZ_COMPANY_ID {
  1440. condition += ` AND visible_range = 1 `
  1441. }
  1442. total, err := models.GetCygxReportSelectionPublic(condition, tbdb, pars)
  1443. if err != nil {
  1444. br.Msg = "获取信息失败"
  1445. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  1446. return
  1447. }
  1448. //研究汇总--报告精选 只显示最新一期,往期都隐藏
  1449. if reportType == "1" {
  1450. startSize = 0
  1451. pageSize = 1
  1452. total = 1
  1453. }
  1454. 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`
  1455. page = paging.GetPaging(currentIndex, pageSize, total)
  1456. list, err := models.GetReportSelectionListPublic(condition, readSql, tbdb, pars, startSize, pageSize)
  1457. if err != nil {
  1458. br.Msg = "获取失败"
  1459. br.ErrMsg = "获取失败,Err:" + err.Error()
  1460. return
  1461. }
  1462. for k, v := range list {
  1463. if reportType == "1" {
  1464. list[k].Abstract = v.UpdateDescription
  1465. }
  1466. list[k].PublishDate = utils.StrTimeToTime(v.PublishDate).Format("2006-01-02")
  1467. if v.ReadNum == 0 {
  1468. list[k].IsRed = true
  1469. }
  1470. }
  1471. resp.List = list
  1472. resp.Paging = page
  1473. br.Ret = 200
  1474. br.Success = true
  1475. br.Msg = "获取成功"
  1476. br.Data = resp
  1477. }
  1478. // @Title 获取报告精选详情
  1479. // @Description 获取报告精选详情接口
  1480. // @Param ArticleId query int true "报告ID"
  1481. // @Param IsBestNew query bool false "是否获取最新的一篇报告"
  1482. // @Success 200 {object} models.ReportSelectionLetailResp
  1483. // @router /reportSelection/detail [get]
  1484. func (this *ReportController) Detail() {
  1485. br := new(models.BaseResponse).Init()
  1486. defer func() {
  1487. this.Data["json"] = br
  1488. this.ServeJSON()
  1489. }()
  1490. user := this.User
  1491. if user == nil {
  1492. br.Msg = "请重新登录"
  1493. br.Ret = 408
  1494. return
  1495. }
  1496. //if user.CompanyId != utils.HZ_COMPANY_ID {
  1497. // br.Msg = "报告编辑中,请稍后"
  1498. // br.IsSendEmail = false
  1499. // return
  1500. //}
  1501. //uid := user.UserId
  1502. articleId, _ := this.GetInt("ArticleId")
  1503. isBestNew, _ := this.GetBool("IsBestNew")
  1504. if isBestNew {
  1505. tbdb := "cygx_report_selection"
  1506. //reportTypeStr := "bgjx"
  1507. condition := ` AND publish_status = 1 `
  1508. var pars []interface{}
  1509. list, err := models.GetReportSelectionListPublic(condition, "1", tbdb, pars, 0, 1)
  1510. if err != nil {
  1511. br.Msg = "获取失败"
  1512. br.ErrMsg = "获取失败,Err:" + err.Error()
  1513. return
  1514. }
  1515. for _, v := range list {
  1516. articleId = v.ArticleId
  1517. }
  1518. }
  1519. if articleId < 1 {
  1520. br.Msg = "获取信息失败"
  1521. br.ErrMsg = "报告ID错误" + strconv.Itoa(articleId)
  1522. return
  1523. }
  1524. resp := new(models.ReportSelectionLetailResp)
  1525. //判断用户权限
  1526. hasPermission, err := services.GetUserhasPermission(user)
  1527. if err != nil {
  1528. br.Msg = "获取信息失败"
  1529. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1530. }
  1531. resp.HasPermission = hasPermission
  1532. if hasPermission != 1 {
  1533. br.Ret = 200
  1534. br.Success = true
  1535. br.Msg = "获取成功"
  1536. br.Data = resp
  1537. return
  1538. }
  1539. detail, err := models.GetCygxReportSelectionInfoById(articleId)
  1540. if err != nil {
  1541. br.Msg = "获取信息失败"
  1542. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1543. return
  1544. }
  1545. if detail.ReportLink != "" {
  1546. articleIdLink, _ := services.GetReportLinkToArticleid(detail.ReportLink)
  1547. detail.CeLueArticleId = articleIdLink
  1548. }
  1549. //较上一期有观点变化(后台填写的核心逻辑汇总内容、标签内容有更新),或者新增的公司,显示new标签
  1550. var isAllNew bool // 判断是否都打新的标签
  1551. lastPeriods := detail.Periods - 1
  1552. mapBodyChartSummary := make(map[int]string)
  1553. mapLabel := make(map[int]string)
  1554. if lastPeriods > 0 {
  1555. detailLast, err := models.GetCygxReportSelectionInfoByperiods(lastPeriods)
  1556. if err != nil && err.Error() != utils.ErrNoRow() {
  1557. br.Msg = "获取信息失败"
  1558. br.ErrMsg = "报告不存在,Err:" + err.Error() + "Periods:" + strconv.Itoa(lastPeriods)
  1559. return
  1560. }
  1561. if detailLast != nil {
  1562. articleIdLast := detailLast.ArticleId
  1563. listLogLast, err := models.GetReportSelectionlogListAll(articleIdLast)
  1564. if err != nil {
  1565. br.Msg = "获取失败"
  1566. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1567. return
  1568. }
  1569. for _, v := range listLogLast {
  1570. mapBodyChartSummary[v.IndustrialSubjectId], _ = services.GetReportContentTextSubNew(v.Body)
  1571. mapLabel[v.IndustrialSubjectId] = v.Label
  1572. }
  1573. }
  1574. } else {
  1575. isAllNew = true
  1576. }
  1577. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  1578. existMap := make(map[int]int)
  1579. var items []*models.ReportSelectionChartPermission
  1580. var itemsSubject []*models.ReportSelectionChartLogPermission
  1581. listLog, err := models.GetReportSelectionlogListAll(articleId)
  1582. if err != nil {
  1583. br.Msg = "获取失败"
  1584. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1585. return
  1586. }
  1587. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1588. //获取行业核心逻辑汇总
  1589. listChartLog, err := models.GetCygxReportSelectionChartLogRepList(articleId)
  1590. if err != nil {
  1591. br.Msg = "获取失败"
  1592. br.ErrMsg = "获取失败,Err:" + err.Error()
  1593. return
  1594. }
  1595. mapChartLog := make(map[string]string)
  1596. for _, v := range listChartLog {
  1597. mapChartLog[v.ChartPermissionName] = v.BodyChartSummary
  1598. }
  1599. for _, v := range listLog {
  1600. item := new(models.ReportSelectionChartPermission)
  1601. itemSubject := new(models.ReportSelectionChartLogPermission)
  1602. itemSubject.PermissionName = v.PermissionName
  1603. if existMap[v.ChartPermissionId] == 0 {
  1604. //item.PermissionName = v.PermissionName + "领域深度报告和调研"
  1605. item.PermissionName = v.PermissionName
  1606. item.IcoLink = v.IcoLink
  1607. listSonLog, err := models.GetReportSelectionlogSonListAll(articleId, v.ChartPermissionId)
  1608. if err != nil && err.Error() != utils.ErrNoRow() {
  1609. br.Msg = "获取信息失败"
  1610. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1611. return
  1612. }
  1613. for k2, v2 := range listSonLog {
  1614. var isNew bool
  1615. if isAllNew {
  1616. isNew = true
  1617. } else {
  1618. v2Body, _ := services.GetReportContentTextSubNew(v2.Body)
  1619. if mapBodyChartSummary[v2.IndustrialSubjectId] != v2Body || mapLabel[v2.IndustrialSubjectId] != v2.Label {
  1620. isNew = true
  1621. }
  1622. }
  1623. if v2.IndustrialManagementId != "" {
  1624. listIndustrial, err := models.GetIndustrialByIds(v2.IndustrialManagementId)
  1625. if err != nil && err.Error() != utils.ErrNoRow() {
  1626. br.Msg = "获取信息失败"
  1627. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1628. return
  1629. }
  1630. //v2.IsNew = isNew
  1631. listSonLog[k2].List = listIndustrial
  1632. if v2.Label != "" {
  1633. v2.CompanyLabel = strings.Split(v2.Label, "{|}")
  1634. }
  1635. }
  1636. isNew = false
  1637. itemSubject.ListSubject = append(itemSubject.ListSubject, &models.ReportSelectionChartLogSubjectName{SubjectName: v2.SubjectName, IsNew: isNew, IndustrialSubjectId: v2.IndustrialSubjectId})
  1638. }
  1639. item.BodyChartSummary = mapChartLog[v.PermissionName]
  1640. item.List = listSonLog
  1641. items = append(items, item)
  1642. itemsSubject = append(itemsSubject, itemSubject)
  1643. //itemLogs = make([]*models.CygxReportSelectionLogDetail, 0)
  1644. }
  1645. existMap[v.ChartPermissionId] = v.ChartPermissionId
  1646. }
  1647. //historyRecord := new(models.CygxReportHistoryRecord)
  1648. //historyRecord.UserId = uid
  1649. //historyRecord.ArticleId = articleId
  1650. //historyRecord.CreateTime = time.Now()
  1651. //historyRecord.Mobile = user.Mobile
  1652. //historyRecord.Email = user.Email
  1653. //historyRecord.CompanyId = user.CompanyId
  1654. //historyRecord.CompanyName = user.CompanyName
  1655. //historyRecord.ReportType = "bgjx"
  1656. //sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1657. //if err != nil && err.Error() != utils.ErrNoRow() {
  1658. // br.Msg = "获取信息失败"
  1659. // br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1660. // return
  1661. //}
  1662. //historyRecord.RealName = user.RealName
  1663. //if sellerItem != nil {
  1664. // historyRecord.SellerName = sellerItem.RealName
  1665. //}
  1666. //
  1667. //go models.AddCygxReportHistoryRecord(historyRecord)
  1668. resp.List = items
  1669. resp.ListPermissionSubject = itemsSubject
  1670. resp.Detail = detail
  1671. br.Ret = 200
  1672. br.Success = true
  1673. br.Msg = "获取成功"
  1674. br.Data = resp
  1675. }
  1676. // @Title 获取本周研究汇总详情
  1677. // @Description 获取本周研究汇总详情接口
  1678. // @Param ArticleId query int true "报告ID"
  1679. // @Success 200 {object} models.ResearchSummaryLetailResp
  1680. // @router /researchSummary/detail [get]
  1681. func (this *ReportController) ResearchDetail() {
  1682. br := new(models.BaseResponse).Init()
  1683. defer func() {
  1684. this.Data["json"] = br
  1685. this.ServeJSON()
  1686. }()
  1687. user := this.User
  1688. if user == nil {
  1689. br.Msg = "请重新登录"
  1690. br.Ret = 408
  1691. return
  1692. }
  1693. //uid := user.UserId
  1694. articleId, _ := this.GetInt("ArticleId")
  1695. if articleId < 0 {
  1696. br.Msg = "参数错误"
  1697. br.ErrMsg = "参数错误"
  1698. return
  1699. }
  1700. resp := new(models.ResearchSummaryLetailResp)
  1701. //判断用户权限
  1702. hasPermission, err := services.GetUserhasPermission(user)
  1703. if err != nil {
  1704. br.Msg = "获取信息失败"
  1705. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1706. }
  1707. detail, err := models.GetCygxResearchSummaryInfoById(articleId)
  1708. if err != nil {
  1709. br.Msg = "获取信息失败"
  1710. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1711. return
  1712. }
  1713. PermissionNameMap, err := services.GetPermissionNameMap()
  1714. if err != nil {
  1715. br.Msg = "获取失败"
  1716. br.ErrMsg = "获取失败 GetPermissionNameMap,Err:" + err.Error()
  1717. return
  1718. }
  1719. PermissionIcoMap, err := services.GetPermissionNameIcoMap()
  1720. if err != nil {
  1721. br.Msg = "获取失败"
  1722. br.ErrMsg = "获取失败 GetPermissionNameMap,Err:" + err.Error()
  1723. return
  1724. }
  1725. //未设置全部可见的只能给弘则内部查看
  1726. if detail.VisibleRange == 1 || user.CompanyId == utils.HZ_COMPANY_ID {
  1727. resp.IsShow = true
  1728. }
  1729. resp.HasPermission = hasPermission
  1730. if hasPermission != 1 || !resp.IsShow {
  1731. br.Ret = 200
  1732. br.Success = true
  1733. br.Msg = "获取成功"
  1734. br.Data = resp
  1735. return
  1736. }
  1737. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format(utils.FormatDate)
  1738. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1739. listFirst, err := models.GetResearchSummarylogListFirst(articleId)
  1740. if err != nil {
  1741. br.Msg = "获取失败"
  1742. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1743. return
  1744. }
  1745. listArticleType, err := models.GetCygxArticleTypeList()
  1746. if err != nil {
  1747. br.Msg = "获取失败"
  1748. br.ErrMsg = "获取文章类型数据失败,Err:" + err.Error()
  1749. return
  1750. }
  1751. for k, v := range listFirst {
  1752. listSecond, err := models.GetResearchSummarylogSonListSecond(articleId, v.Type)
  1753. if err != nil && err.Error() != utils.ErrNoRow() {
  1754. br.Msg = "获取信息失败"
  1755. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1756. return
  1757. }
  1758. for k2, v2 := range listSecond {
  1759. v2.PermissionName = PermissionNameMap[v2.ChartPermissionId]
  1760. v2.IcoLink = PermissionIcoMap[v2.ChartPermissionId]
  1761. listThird, err := models.GetResearchSummarylogSonListThird(articleId, v2.ChartPermissionId, v.Type)
  1762. if err != nil && err.Error() != utils.ErrNoRow() {
  1763. br.Msg = "获取信息失败"
  1764. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1765. return
  1766. }
  1767. for _, vType := range listArticleType {
  1768. if v2.ChartPermissionId == vType.YanxPermissionId {
  1769. listSecond[k2].IcoLink = vType.IcoLinkM
  1770. listSecond[k2].PermissionName = vType.YanxPermissionName
  1771. }
  1772. }
  1773. //if v2.ChartPermissionId == utils.YanxSummaryPermissionId {
  1774. // listSecond[k2].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1775. // listSecond[k2].PermissionName = "买方研选纪要"
  1776. //} else if v2.ChartPermissionId == utils.YanxViewpointPermissionId {
  1777. // listSecond[k2].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1778. // listSecond[k2].PermissionName = "买方研选观点"
  1779. //}
  1780. if len(listThird) > 0 {
  1781. for k3, v3 := range listThird {
  1782. if v3.VideoUrl != "" {
  1783. listThird[k3].IsHaveVideo = true
  1784. }
  1785. if v3.ReportLink == "0" {
  1786. listThird[k3].ReportLink = ""
  1787. }
  1788. }
  1789. listSecond[k2].List = listThird
  1790. }
  1791. }
  1792. if len(listSecond) > 0 {
  1793. listFirst[k].List = listSecond
  1794. }
  1795. //`description:"类型'SDBG深度报告片篇,’CYDYJY:产业调研纪要’,’SJDP事件点评,’BZCHJH:本周晨会精华’"`
  1796. if v.Type == "SDBG" {
  1797. listFirst[k].ListName = "深度报告"
  1798. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211027/le8AcRjDz0MhA72bVDiaf3d5ALSe.png"
  1799. } else if v.Type == "BZCHJH" {
  1800. listFirst[k].ListName = "本周晨会精华"
  1801. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/DCfekcxaIKGePBsNVu1ULfmNcJBY.png"
  1802. } else if v.Type == "CYDYJY" {
  1803. listFirst[k].ListName = "产业调研纪要"
  1804. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/UPAdozy96z9ypzY04vi0Y3Ogqzji.png"
  1805. } else if v.Type == "SSGS" {
  1806. listFirst[k].ListName = "上市公司调研纪要篇"
  1807. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211101/ujHXB48I8ay9T0XoPRI7lorz7OkL.png"
  1808. } else if v.Type == "SJDP" {
  1809. listFirst[k].ListName = "市场QA汇总"
  1810. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/2a5cXafO3Iws4QcFp1bd5WPdYikV.png"
  1811. } else if v.Type == "YANX" {
  1812. listFirst[k].ListName = "买方研选"
  1813. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1814. }
  1815. }
  1816. //historyRecord := new(models.CygxReportHistoryRecord)
  1817. //historyRecord.UserId = uid
  1818. //historyRecord.ArticleId = articleId
  1819. //historyRecord.CreateTime = time.Now()
  1820. //historyRecord.Mobile = user.Mobile
  1821. //historyRecord.Email = user.Email
  1822. //historyRecord.CompanyId = user.CompanyId
  1823. //historyRecord.CompanyName = user.CompanyName
  1824. //historyRecord.ReportType = "bzyjhz"
  1825. //sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1826. //if err != nil && err.Error() != utils.ErrNoRow() {
  1827. // br.Msg = "获取信息失败"
  1828. // br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1829. // return
  1830. //}
  1831. //historyRecord.RealName = user.RealName
  1832. //if sellerItem != nil {
  1833. // historyRecord.SellerName = sellerItem.RealName
  1834. //}
  1835. //go models.AddCygxReportHistoryRecord(historyRecord)
  1836. resp.List = listFirst
  1837. resp.Detail = detail
  1838. br.Ret = 200
  1839. br.Success = true
  1840. br.Msg = "获取成功"
  1841. br.Data = resp
  1842. }
  1843. // @Title 上周纪要汇总内容详情
  1844. // @Description 获取上周纪要汇总内容详情接口
  1845. // @Param ArticleId query int true "报告ID"
  1846. // @Success 200 {object} models.MinutesSummaryLetailResp
  1847. // @router /minutesSummary/detailv4 [get]
  1848. func (this *ReportController) MinutesDetailV4() {
  1849. br := new(models.BaseResponse).Init()
  1850. defer func() {
  1851. this.Data["json"] = br
  1852. this.ServeJSON()
  1853. }()
  1854. user := this.User
  1855. if user == nil {
  1856. br.Msg = "请重新登录"
  1857. br.Ret = 408
  1858. return
  1859. }
  1860. //uid := user.UserId
  1861. articleId, _ := this.GetInt("ArticleId")
  1862. if articleId < 0 {
  1863. br.Msg = "参数错误"
  1864. br.ErrMsg = "参数错误"
  1865. return
  1866. }
  1867. resp := new(models.MinutesSummaryLetailRespV4)
  1868. //判断用户权限
  1869. hasPermission, err := services.GetUserhasPermission(user)
  1870. if err != nil {
  1871. br.Msg = "获取信息失败"
  1872. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1873. }
  1874. //resp.HasPermission = hasPermission
  1875. //if hasPermission != 1 {
  1876. // br.Ret = 200
  1877. // br.Success = true
  1878. // br.Msg = "获取成功"
  1879. // br.Data = resp
  1880. // return
  1881. //}
  1882. detail, err := models.GetCygxMinutesSummaryInfoById(articleId)
  1883. if err != nil {
  1884. br.Msg = "获取信息失败"
  1885. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1886. return
  1887. }
  1888. PermissionNameMap, err := services.GetPermissionNameMap()
  1889. if err != nil {
  1890. br.Msg = "获取失败"
  1891. br.ErrMsg = "获取失败 GetPermissionNameMap,Err:" + err.Error()
  1892. return
  1893. }
  1894. PermissionIcoMap, err := services.GetPermissionNameIcoMap()
  1895. if err != nil {
  1896. br.Msg = "获取失败"
  1897. br.ErrMsg = "获取失败 GetPermissionNameMap,Err:" + err.Error()
  1898. return
  1899. }
  1900. //未设置全部可见的只能给弘则内部查看
  1901. if detail.VisibleRange == 1 || user.CompanyId == utils.HZ_COMPANY_ID {
  1902. resp.IsShow = true
  1903. }
  1904. resp.HasPermission = hasPermission
  1905. if hasPermission != 1 || !resp.IsShow {
  1906. br.Ret = 200
  1907. br.Success = true
  1908. br.Msg = "获取成功"
  1909. br.Data = resp
  1910. return
  1911. }
  1912. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format(utils.FormatDate)
  1913. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1914. listFirst, err := models.GetMinutesSummarylogListAllV4(articleId)
  1915. if err != nil {
  1916. br.Msg = "获取失败"
  1917. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1918. return
  1919. }
  1920. for k, v := range listFirst {
  1921. listSecond, err := models.GetMinutesSummarylogSonListSecond(articleId, v.Type)
  1922. if err != nil && err.Error() != utils.ErrNoRow() {
  1923. br.Msg = "获取信息失败"
  1924. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1925. return
  1926. }
  1927. for k2, v2 := range listSecond {
  1928. v2.PermissionName = PermissionNameMap[v2.ChartPermissionId]
  1929. v2.IcoLink = PermissionIcoMap[v2.ChartPermissionId]
  1930. listThird, err := models.GetMinutesSummarylogListThird(articleId, v2.ChartPermissionId, v.Type)
  1931. if err != nil && err.Error() != utils.ErrNoRow() {
  1932. br.Msg = "获取信息失败"
  1933. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1934. return
  1935. }
  1936. if len(listThird) > 0 {
  1937. for k3, v3 := range listThird {
  1938. if v3.VideoUrl != "" {
  1939. listThird[k3].IsHaveVideo = true
  1940. }
  1941. if v3.ReportLink == "0" {
  1942. listThird[k3].ReportLink = ""
  1943. }
  1944. }
  1945. listSecond[k2].List = listThird
  1946. }
  1947. }
  1948. if len(listSecond) > 0 {
  1949. listFirst[k].List = listSecond
  1950. }
  1951. //`description:"类型'SDBG深度报告片篇,’CYDYJY:产业调研纪要’,’SJDP事件点评,’BZCHJH:本周晨会精华’"`
  1952. if v.Type == "CYDYJY" {
  1953. listFirst[k].ListName = "产业调研纪要"
  1954. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/UPAdozy96z9ypzY04vi0Y3Ogqzji.png"
  1955. } else if v.Type == "SSGS" {
  1956. listFirst[k].ListName = "上市公司调研纪要篇"
  1957. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211101/ujHXB48I8ay9T0XoPRI7lorz7OkL.png"
  1958. } else if v.Type == "YANX" {
  1959. listFirst[k].ListName = "买方研选纪要"
  1960. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1961. }
  1962. }
  1963. //historyRecord := new(models.CygxReportHistoryRecord)
  1964. //historyRecord.UserId = uid
  1965. //historyRecord.ArticleId = articleId
  1966. //historyRecord.CreateTime = time.Now()
  1967. //historyRecord.Mobile = user.Mobile
  1968. //historyRecord.Email = user.Email
  1969. //historyRecord.CompanyId = user.CompanyId
  1970. //historyRecord.CompanyName = user.CompanyName
  1971. //historyRecord.ReportType = "szjyhz"
  1972. //sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1973. //if err != nil && err.Error() != utils.ErrNoRow() {
  1974. // br.Msg = "获取信息失败"
  1975. // br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1976. // return
  1977. //}
  1978. //historyRecord.RealName = user.RealName
  1979. //if sellerItem != nil {
  1980. // historyRecord.SellerName = sellerItem.RealName
  1981. //}
  1982. //go models.AddCygxReportHistoryRecord(historyRecord)
  1983. resp.List = listFirst
  1984. resp.Detail = detail
  1985. br.Ret = 200
  1986. br.Success = true
  1987. br.Msg = "获取成功"
  1988. br.Data = resp
  1989. }
  1990. // @Title 上周纪要汇总内容详情
  1991. // @Description 获取上周纪要汇总内容详情接口
  1992. // @Param ArticleId query int true "报告ID"
  1993. // @Success 200 {object} models.MinutesSummaryLetailResp
  1994. // @router /minutesSummary/detail [get]
  1995. func (this *ReportController) MinutesDetail() {
  1996. br := new(models.BaseResponse).Init()
  1997. defer func() {
  1998. this.Data["json"] = br
  1999. this.ServeJSON()
  2000. }()
  2001. user := this.User
  2002. if user == nil {
  2003. br.Msg = "请重新登录"
  2004. br.Ret = 408
  2005. return
  2006. }
  2007. //uid := user.UserId
  2008. articleId, _ := this.GetInt("ArticleId")
  2009. if articleId < 0 {
  2010. br.Msg = "参数错误"
  2011. br.ErrMsg = "参数错误"
  2012. return
  2013. }
  2014. resp := new(models.MinutesSummaryLetailResp)
  2015. //判断用户权限
  2016. hasPermission, err := services.GetUserhasPermission(user)
  2017. if err != nil {
  2018. br.Msg = "获取信息失败"
  2019. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  2020. }
  2021. resp.HasPermission = hasPermission
  2022. if hasPermission != 1 {
  2023. br.Ret = 200
  2024. br.Success = true
  2025. br.Msg = "获取成功"
  2026. br.Data = resp
  2027. return
  2028. }
  2029. detail, err := models.GetCygxMinutesSummaryInfoById(articleId)
  2030. if err != nil {
  2031. br.Msg = "获取信息失败"
  2032. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  2033. return
  2034. }
  2035. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  2036. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  2037. listLog, err := models.GetMinutesSummarylogListAll(articleId)
  2038. if err != nil {
  2039. br.Msg = "获取失败"
  2040. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  2041. return
  2042. }
  2043. for k, v := range listLog {
  2044. listSonLog, err := models.GetMinutesSummarylogSonListAll(articleId, v.ChartPermissionId)
  2045. if err != nil && err.Error() != utils.ErrNoRow() {
  2046. br.Msg = "获取信息失败"
  2047. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  2048. return
  2049. }
  2050. if len(listSonLog) > 0 {
  2051. for k2, v2 := range listSonLog {
  2052. if v2.ReportLink == "0" {
  2053. listSonLog[k2].ReportLink = ""
  2054. }
  2055. }
  2056. listLog[k].List = listSonLog
  2057. }
  2058. }
  2059. //historyRecord := new(models.CygxReportHistoryRecord)
  2060. //historyRecord.UserId = uid
  2061. //historyRecord.ArticleId = articleId
  2062. //historyRecord.CreateTime = time.Now()
  2063. //historyRecord.Mobile = user.Mobile
  2064. //historyRecord.Email = user.Email
  2065. //historyRecord.CompanyId = user.CompanyId
  2066. //historyRecord.CompanyName = user.CompanyName
  2067. //historyRecord.ReportType = "szjyhz"
  2068. //sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  2069. //if err != nil && err.Error() != utils.ErrNoRow() {
  2070. // br.Msg = "获取信息失败"
  2071. // br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  2072. // return
  2073. //}
  2074. //historyRecord.RealName = user.RealName
  2075. //if sellerItem != nil {
  2076. // historyRecord.SellerName = sellerItem.RealName
  2077. //}
  2078. //go models.AddCygxReportHistoryRecord(historyRecord)
  2079. resp.List = listLog
  2080. resp.Detail = detail
  2081. br.Ret = 200
  2082. br.Success = true
  2083. br.Msg = "获取成功"
  2084. br.Data = resp
  2085. }
  2086. // @Title 获取路演精华详情
  2087. // @Description 获取路演精华详情接口
  2088. // @Param ArticleId query int true "报告ID"
  2089. // @Success 200 {object} models.RoadshowDetailResp
  2090. // @router /roadshowEssence/detail [get]
  2091. func (this *ReportController) RoadshowDetail() {
  2092. br := new(models.BaseResponse).Init()
  2093. defer func() {
  2094. this.Data["json"] = br
  2095. this.ServeJSON()
  2096. }()
  2097. user := this.User
  2098. if user == nil {
  2099. br.Msg = "请登录"
  2100. br.ErrMsg = "请登录,用户信息为空"
  2101. br.Ret = 408
  2102. return
  2103. }
  2104. uid := user.UserId
  2105. articleId, err := this.GetInt("ArticleId")
  2106. if articleId <= 0 {
  2107. br.Msg = "文章不存在"
  2108. br.ErrMsg = "文章不存在,文章ID错误"
  2109. return
  2110. }
  2111. detail := new(models.ReportDetailRoadshow)
  2112. hasPermission := 0
  2113. hasFree := 0
  2114. //判断是否已经申请过
  2115. applyCount, err := models.GetApplyRecordCount(uid)
  2116. if err != nil && err.Error() != utils.ErrNoRow() {
  2117. br.Msg = "获取信息失败"
  2118. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  2119. return
  2120. }
  2121. articleLyjhMap, _ := services.GetLyjhArticleMap()
  2122. articleCollectMap, _ := services.GetCygxArticleCollectMap(user.UserId)
  2123. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  2124. if user.CompanyId > 1 {
  2125. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  2126. if err != nil {
  2127. br.Msg = "获取信息失败"
  2128. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  2129. return
  2130. }
  2131. detail, err = models.GetReportRoadshowDetailById(articleId)
  2132. if err != nil {
  2133. br.Msg = "获取信息失败"
  2134. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  2135. return
  2136. }
  2137. detail.IsCollect = articleCollectMap[detail.ArticleId]
  2138. detail.IsRoadShow = articleLyjhMap[detail.ArticleId]
  2139. detail.Body = html.UnescapeString(detail.Body)
  2140. detail.Abstract, _ = services.GetReportContentTextSubNew(detail.Abstract)
  2141. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  2142. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  2143. if detail.ReportLink == "0" {
  2144. detail.ReportLink = ""
  2145. }
  2146. if companyPermission == "" {
  2147. if applyCount > 0 {
  2148. hasPermission = 5
  2149. } else {
  2150. hasPermission = 2
  2151. }
  2152. hasFree = 2
  2153. goto Loop
  2154. } else {
  2155. hasFree = 1
  2156. var articlePermissionPermissionName string
  2157. articlePermissionPermissionName = detail.CategoryName
  2158. var hasPersion bool
  2159. slice := strings.Split(articlePermissionPermissionName, ",")
  2160. for _, v := range slice {
  2161. if strings.Contains(companyPermission, v) {
  2162. hasPersion = true
  2163. }
  2164. }
  2165. if hasPersion {
  2166. hasPermission = 1
  2167. historyRecord := new(models.CygxArticleHistoryRecord)
  2168. historyRecord.UserId = uid
  2169. historyRecord.ArticleId = articleId
  2170. historyRecord.CreateTime = time.Now()
  2171. historyRecord.Mobile = user.Mobile
  2172. historyRecord.Email = user.Email
  2173. historyRecord.CompanyId = user.CompanyId
  2174. historyRecord.CompanyName = user.CompanyName
  2175. go models.AddCygxArticleHistoryRecord(historyRecord)
  2176. } else { //无该行业权限
  2177. hasPermission = 3
  2178. }
  2179. if hasPermission == 1 {
  2180. key := "CYGX_ARTICLE_" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  2181. if !utils.Rc.IsExist(key) {
  2182. //新增浏览记录
  2183. record := new(models.CygxArticleViewRecord)
  2184. record.UserId = uid
  2185. record.ArticleId = articleId
  2186. record.CreateTime = time.Now()
  2187. record.Mobile = user.Mobile
  2188. record.Email = user.Email
  2189. record.CompanyId = user.CompanyId
  2190. record.CompanyName = user.CompanyName
  2191. go models.AddCygxArticleViewRecord(record)
  2192. utils.Rc.Put(key, 1, 5*time.Second)
  2193. models.ModifyReportLastViewTime(uid)
  2194. }
  2195. }
  2196. }
  2197. } else { //潜在客户
  2198. if applyCount > 0 {
  2199. hasPermission = 5
  2200. } else {
  2201. hasPermission = 4
  2202. }
  2203. }
  2204. Loop:
  2205. if hasPermission != 1 {
  2206. detail.Body = ""
  2207. detail.Abstract = ""
  2208. }
  2209. resp := new(models.RoadshowDetailResp)
  2210. resp.HasPermission = hasPermission
  2211. resp.HasFree = hasFree
  2212. resp.Detail = detail
  2213. br.Ret = 200
  2214. br.Success = true
  2215. br.Msg = "获取成功"
  2216. br.Data = resp
  2217. }
  2218. // @Title 产业文章列表接口
  2219. // @Description 获取产业文章列表接口
  2220. // @Param KeyWord query string true "搜索关键词"
  2221. // @Success 200 {object} models.CygxIndustrySearchList
  2222. // @router /industryAndArticle/list [get]
  2223. func (this *ReportController) IndustryAndArticleList() {
  2224. br := new(models.BaseResponse).Init()
  2225. defer func() {
  2226. this.Data["json"] = br
  2227. this.ServeJSON()
  2228. }()
  2229. user := this.User
  2230. if user == nil {
  2231. br.Msg = "请重新登录"
  2232. br.Ret = 408
  2233. return
  2234. }
  2235. uid := user.UserId
  2236. keyWord := this.GetString("KeyWord")
  2237. orderSrt := "update_time DESC"
  2238. condition := ` AND subject_names LIKE '%` + keyWord + `%'`
  2239. list, err := models.GetIndustrialManagementAll(uid, condition, orderSrt, 0, 100)
  2240. if err != nil {
  2241. br.Msg = "获取信息失败"
  2242. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2243. return
  2244. }
  2245. for k, v := range list {
  2246. industrialSubjectList, err := models.GetIndustrialSubjectAll(v.IndustrialManagementId)
  2247. if err != nil {
  2248. br.Msg = "获取信息失败"
  2249. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2250. return
  2251. }
  2252. list[k].IndustrialSubjectList = industrialSubjectList
  2253. //list[k].LayoutTime = utils.TimeRemoveHms(v.LayoutTime)
  2254. newArtinfo, err := models.GetIndustrialNewArticleDetail(v.IndustrialManagementId)
  2255. if err != nil {
  2256. br.Msg = "获取信息失败"
  2257. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2258. return
  2259. }
  2260. list[k].UpdateTime = utils.TimeRemoveHms(newArtinfo.PublishDate)
  2261. }
  2262. artList, err := models.GetCygxIndustryAndArticleList(keyWord)
  2263. if err != nil {
  2264. br.Msg = "获取失败"
  2265. br.ErrMsg = "获取失败,Err:" + err.Error()
  2266. return
  2267. }
  2268. for k2, v2 := range artList {
  2269. subjectNames, err := models.GetSubjectNames(v2.ArticleId)
  2270. if err != nil {
  2271. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  2272. br.ErrMsg = "获取失败,Err:" + err.Error()
  2273. return
  2274. }
  2275. var subjectNamesNew string
  2276. if len(subjectNames) > 0 {
  2277. slice := strings.Split(subjectNames, "/")
  2278. for k3, v3 := range slice {
  2279. if k3 < 4 {
  2280. subjectNamesNew += v3 + "/"
  2281. }
  2282. }
  2283. }
  2284. industryName, err := models.GetIndustrialNames(v2.ArticleId)
  2285. if err != nil && err.Error() != utils.ErrNoRow() {
  2286. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  2287. br.ErrMsg = "获取失败,Err:" + err.Error()
  2288. return
  2289. }
  2290. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  2291. artList[k2].SubjectName = subjectNamesNew
  2292. if subjectNamesNew == "" {
  2293. artList[k2].IndustryName = industryName
  2294. } else {
  2295. artList[k2].IndustryName = industryName + "-" + subjectNamesNew
  2296. }
  2297. }
  2298. if keyWord != "" {
  2299. keyWordItem := new(models.CygxUserSearchKeyWord)
  2300. keyWordItem.UserId = user.UserId
  2301. keyWordItem.KeyWord = keyWord
  2302. keyWordItem.PageType = "ReortSearch"
  2303. keyWordItem.CreateTime = time.Now()
  2304. go models.AddUserSearchKeyWord(keyWordItem)
  2305. }
  2306. resp := new(models.CygxIndustrySearchList)
  2307. resp.ArtList = artList
  2308. resp.IndList = list
  2309. br.Ret = 200
  2310. br.Success = true
  2311. br.Msg = "获取成功"
  2312. br.Data = resp
  2313. }
  2314. // @Title 产业报告分类关联作者列表接口Pc端
  2315. // @Description 获取产业报告分类关联作者列表接口Pc端
  2316. // @Param ChartPermissionId query int true "分类ID"
  2317. // @Param KeyWord query string true "搜索关键词"
  2318. // @Param PageSize query int true "每页数据条数"
  2319. // @Param CurrentIndex query int true "当前页页码,从1开始"
  2320. // @Success 200 {object} models.CygxArticleDepartmentListPc
  2321. // @router /industryListByDepartmentPc [get]
  2322. func (this *ReportController) IndustryListByDepartmentPc() {
  2323. br := new(models.BaseResponse).Init()
  2324. defer func() {
  2325. this.Data["json"] = br
  2326. this.ServeJSON()
  2327. }()
  2328. user := this.User
  2329. if user == nil {
  2330. br.Msg = "请重新登录"
  2331. br.Ret = 408
  2332. return
  2333. }
  2334. uid := user.UserId
  2335. pageSize, _ := this.GetInt("PageSize")
  2336. currentIndex, _ := this.GetInt("CurrentIndex")
  2337. chartPermissionId, _ := this.GetInt("ChartPermissionId")
  2338. keyWord := this.GetString("KeyWord")
  2339. var startSize int
  2340. var condition string
  2341. condition = ` AND a.publish_status=1 AND m.chart_permission_id =` + strconv.Itoa(chartPermissionId)
  2342. if pageSize <= 0 {
  2343. pageSize = utils.PageSize20
  2344. }
  2345. if currentIndex <= 0 {
  2346. currentIndex = 1
  2347. }
  2348. var articleIdGroup string
  2349. if keyWord != "" {
  2350. //获取标的关联的文章ID
  2351. articleIdSub, err := models.GetArticleIdSubjectGroup(keyWord)
  2352. if err != nil {
  2353. br.Msg = "获取信息失败"
  2354. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2355. return
  2356. }
  2357. //获取产业关联的标的
  2358. articleIdInd, err := models.GetArticleIndustrialIdGroup(keyWord)
  2359. if err != nil {
  2360. br.Msg = "获取信息失败"
  2361. br.ErrMsg = "获取产业信息失败,Err:" + err.Error()
  2362. return
  2363. }
  2364. if articleIdSub != "" && articleIdInd != "" {
  2365. articleIdGroup = articleIdSub + "," + articleIdInd
  2366. } else if articleIdSub != "" && articleIdInd == "" {
  2367. articleIdGroup = articleIdSub
  2368. } else if articleIdSub == "" && articleIdInd != "" {
  2369. articleIdGroup = articleIdInd
  2370. }
  2371. slice := strings.Split(keyWord, "/")
  2372. if len(slice) > 1 {
  2373. var subjectIds string
  2374. for _, v := range slice {
  2375. subjectId, err := models.GetcygxIndustrialSubjectByName(v)
  2376. if err != nil && err.Error() != utils.ErrNoRow() {
  2377. br.Msg = "获取信息失败"
  2378. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  2379. return
  2380. }
  2381. if subjectId != "" {
  2382. subjectIds += subjectId + ","
  2383. }
  2384. }
  2385. subjectIds = strings.TrimRight(subjectIds, ",")
  2386. if len(subjectIds) > 0 {
  2387. articleBySub, err := models.GetArticleIdsBySubId(subjectIds)
  2388. if err != nil {
  2389. br.Msg = "获取信息失败"
  2390. br.ErrMsg = "获取文章关联的标的失败,Err:" + err.Error()
  2391. return
  2392. }
  2393. if articleIdGroup != "" {
  2394. if articleBySub != "" {
  2395. articleIdGroup += "," + articleBySub
  2396. }
  2397. } else {
  2398. articleIdGroup = articleBySub
  2399. }
  2400. }
  2401. }
  2402. }
  2403. if articleIdGroup != "" {
  2404. condition += ` AND a.article_id IN (` + articleIdGroup + `)`
  2405. }
  2406. startSize = paging.StartIndex(currentIndex, pageSize)
  2407. total, err := models.GetArticleDepartmentCount(condition)
  2408. page := paging.GetPaging(currentIndex, pageSize, total)
  2409. resp := new(models.CygxArticleDepartmentListPc)
  2410. userType, _, err := services.GetUserType(user.CompanyId)
  2411. if err != nil {
  2412. br.Msg = "获取信息失败"
  2413. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  2414. return
  2415. }
  2416. if userType == 1 {
  2417. resp.Paging = page
  2418. br.Ret = 200
  2419. br.Success = true
  2420. br.Msg = "获取成功"
  2421. br.Data = resp
  2422. return
  2423. }
  2424. resp.HaveResearch = true
  2425. //获取作者信息,并排序
  2426. list, err := models.GetCygxArticleDepartmentListPc(startSize, pageSize, condition, uid)
  2427. if err != nil {
  2428. br.Msg = "获取信息失败"
  2429. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2430. return
  2431. }
  2432. for k, v := range list {
  2433. artList, err := models.GetArticleByDepartmentIdPc(v.DepartmentId, articleIdGroup)
  2434. if err != nil {
  2435. br.Msg = "获取信息失败"
  2436. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  2437. return
  2438. }
  2439. for k2, v2 := range artList {
  2440. if artList[k2].IsReport == "1" {
  2441. artList[k2].Title = v2.Title
  2442. } else {
  2443. artList[k2].Title = v2.Title
  2444. }
  2445. artList[k2].IndustryName = strings.Replace(artList[k2].IndustryName, " ", "", -1)
  2446. }
  2447. list[k].List = artList
  2448. if v.FollowNum > 0 {
  2449. list[k].IsMyFollow = true
  2450. }
  2451. }
  2452. listnNew, err := models.GetIndustrialSubjectByDepartmentNew()
  2453. if err != nil {
  2454. br.Msg = "获取信息失败"
  2455. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2456. return
  2457. }
  2458. if len(listnNew) > 0 {
  2459. for _, v := range listnNew {
  2460. firstStr := strings.Index(v.IndustrialAndSubjectIds, "—")
  2461. Management := new(models.IndustrialManagementIdInt)
  2462. if firstStr == 0 {
  2463. Management.IndustryName = v.IndustryName
  2464. } else {
  2465. listSub, err := models.GetIndustrialManagementSubjectList(v.ArticleId)
  2466. if err != nil {
  2467. br.Msg = "获取信息失败"
  2468. br.ErrMsg = "获取关联标的列表失败,Err:" + err.Error()
  2469. return
  2470. }
  2471. var subjectNamesNew string
  2472. for _, v1 := range listSub {
  2473. subjectNamesNew += v1.SubjectName + "/"
  2474. }
  2475. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  2476. Management.IndustryName = subjectNamesNew
  2477. }
  2478. Management.IndustrialManagementId = v.IndustrialManagementId
  2479. Management.ArticleId = v.ArticleId
  2480. resp.ListnNew = append(resp.ListnNew, Management)
  2481. }
  2482. }
  2483. resp.List = list
  2484. resp.Paging = page
  2485. br.Ret = 200
  2486. br.Success = true
  2487. br.Msg = "获取成功"
  2488. br.Data = resp
  2489. }
  2490. // @Title 产业文章列表接口Pc端
  2491. // @Description 获取产业文章列表接口Pc端
  2492. // @Param KeyWord query string true "搜索关键词"
  2493. // @Success 200 {object} models.CygxIndustrySearchListPc
  2494. // @router /industryAndArticle/listPc [get]
  2495. func (this *ReportController) IndustryAndArticleListPc() {
  2496. br := new(models.BaseResponse).Init()
  2497. defer func() {
  2498. this.Data["json"] = br
  2499. this.ServeJSON()
  2500. }()
  2501. user := this.User
  2502. if user == nil {
  2503. br.Msg = "请重新登录"
  2504. br.Ret = 408
  2505. return
  2506. }
  2507. uid := user.UserId
  2508. keyWord := this.GetString("KeyWord")
  2509. resp := new(models.CygxIndustrySearchListPc)
  2510. orderSrt := "update_time DESC"
  2511. condition := ` AND subject_names LIKE '%` + keyWord + `%'`
  2512. list, err := models.GetIndustrialManagementAll(uid, condition, orderSrt, 0, 100)
  2513. if err != nil {
  2514. br.Msg = "获取信息失败"
  2515. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2516. return
  2517. }
  2518. for k, v := range list {
  2519. industrialSubjectList, err := models.GetIndustrialSubjectAll(v.IndustrialManagementId)
  2520. if err != nil {
  2521. br.Msg = "获取信息失败"
  2522. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2523. return
  2524. }
  2525. list[k].IndustrialSubjectList = industrialSubjectList
  2526. //list[k].LayoutTime = utils.TimeRemoveHms(v.LayoutTime)
  2527. newArtinfo, err := models.GetIndustrialNewArticleDetail(v.IndustrialManagementId)
  2528. if err != nil {
  2529. br.Msg = "获取信息失败"
  2530. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2531. return
  2532. }
  2533. list[k].UpdateTime = utils.TimeRemoveHms(newArtinfo.PublishDate)
  2534. }
  2535. artList, err := models.GetCygxIndustryAndArticleList(keyWord)
  2536. if err != nil {
  2537. br.Msg = "获取失败"
  2538. br.ErrMsg = "获取失败,Err:" + err.Error()
  2539. return
  2540. }
  2541. if len(artList) > 0 {
  2542. var articleIds string
  2543. for _, v := range artList {
  2544. articleIds += strconv.Itoa(v.ArticleId) + ","
  2545. }
  2546. articleIds = strings.TrimRight(articleIds, ",")
  2547. if articleIds != "" {
  2548. condition = ` AND a.article_id IN (` + articleIds + `)`
  2549. DepartmentList, err := models.GetCygxArticleDepartmentListPc(0, 20, condition, uid)
  2550. if err != nil {
  2551. br.Msg = "获取信息失败"
  2552. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2553. return
  2554. }
  2555. for k, v := range DepartmentList {
  2556. artList, err := models.GetArticleByDepartmentIdPc(v.DepartmentId, articleIds)
  2557. if err != nil {
  2558. br.Msg = "获取信息失败"
  2559. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  2560. return
  2561. }
  2562. for k2, v2 := range artList {
  2563. if artList[k2].IsReport == "1" {
  2564. artList[k2].Title = v2.Title
  2565. } else {
  2566. artList[k2].Title = v2.Title
  2567. }
  2568. artList[k2].IndustryName = strings.Replace(artList[k2].IndustryName, " ", "", -1)
  2569. }
  2570. DepartmentList[k].List = artList
  2571. if v.FollowNum > 0 {
  2572. DepartmentList[k].IsMyFollow = true
  2573. }
  2574. }
  2575. resp.DepartmentList = DepartmentList
  2576. }
  2577. }
  2578. if keyWord != "" {
  2579. keyWordItem := new(models.CygxUserSearchKeyWord)
  2580. keyWordItem.UserId = user.UserId
  2581. keyWordItem.KeyWord = keyWord
  2582. keyWordItem.PageType = "ReortSearch"
  2583. keyWordItem.CreateTime = time.Now()
  2584. go models.AddUserSearchKeyWord(keyWordItem)
  2585. }
  2586. resp.IndList = list
  2587. br.Ret = 200
  2588. br.Success = true
  2589. br.Msg = "获取成功"
  2590. br.Data = resp
  2591. }
  2592. // @Title 报告搜索
  2593. // @Description 报告搜索接口
  2594. // @Param KeyWord query string true "搜索关键词"
  2595. // @Success 200 {object} models.ReoprtSearchResp
  2596. // @router /searchReport [get]
  2597. func (this *ReportController) SearchReport() {
  2598. br := new(models.BaseResponse).Init()
  2599. defer func() {
  2600. this.Data["json"] = br
  2601. this.ServeJSON()
  2602. }()
  2603. user := this.User
  2604. if user == nil {
  2605. br.Msg = "请重新登录"
  2606. br.Ret = 408
  2607. return
  2608. }
  2609. keyWord := this.GetString("KeyWord")
  2610. var condition string
  2611. var sqlGroup string
  2612. //匹配报告标题、
  2613. 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 `
  2614. sqlGroup = ` GROUP BY a.article_id ORDER BY a.publish_date DESC `
  2615. //对应产业名称、标的名称。
  2616. listYx, err := models.GetArticleCollectionList(` AND a.article_id >= 1000000 `+condition+sqlGroup, user.UserId)
  2617. if err != nil {
  2618. br.Msg = "获取信息失败"
  2619. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2620. return
  2621. }
  2622. for k, v := range listYx {
  2623. listYx[k].Source = 2
  2624. if v.MyCollectNum > 0 {
  2625. listYx[k].IsCollect = true
  2626. }
  2627. }
  2628. listHz, err := models.GetReoprtSearchList(` AND a.article_id < 1000000 `+condition+` OR ( article_type = 'lyjh' `+condition+` ) `+sqlGroup, user.UserId)
  2629. if err != nil {
  2630. br.Msg = "获取信息失败"
  2631. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2632. return
  2633. }
  2634. for k, v := range listHz {
  2635. listHz[k].Source = 1
  2636. if v.MyCollectNum > 0 {
  2637. listHz[k].IsCollect = true
  2638. }
  2639. }
  2640. if keyWord != "" {
  2641. keyWordItem := new(models.CygxUserSearchKeyWord)
  2642. keyWordItem.UserId = user.UserId
  2643. keyWordItem.KeyWord = keyWord
  2644. keyWordItem.PageType = "ReortSearch"
  2645. keyWordItem.CreateTime = time.Now()
  2646. go models.AddUserSearchKeyWord(keyWordItem)
  2647. //go services.AddUserSearchLog(user, keyWord, 5)
  2648. }
  2649. if len(listYx) == 0 {
  2650. listYx = make([]*models.ArticleCollectionResp, 0)
  2651. }
  2652. if len(listHz) == 0 {
  2653. listHz = make([]*models.ArticleCollectionResp, 0)
  2654. }
  2655. resp := new(models.ReoprtSearchResp)
  2656. resp.ListYx = listYx
  2657. resp.ListHz = listHz
  2658. br.Ret = 200
  2659. br.Success = true
  2660. br.Msg = "获取成功"
  2661. br.Data = resp
  2662. }
  2663. // @Title 资源包搜索
  2664. // @Description 资源包搜索接口
  2665. // @Param KeyWord query string true "搜索关键词"
  2666. // @Success 200 {object} models.SearchResourceResp
  2667. // @router /searchResource [get]
  2668. func (this *ReportController) SearchResource() {
  2669. br := new(models.BaseResponse).Init()
  2670. defer func() {
  2671. this.Data["json"] = br
  2672. this.ServeJSON()
  2673. }()
  2674. user := this.User
  2675. if user == nil {
  2676. br.Msg = "请重新登录"
  2677. br.Ret = 408
  2678. return
  2679. }
  2680. uid := user.UserId
  2681. fllowList, err := models.GetUserFllowIndustrialList(uid)
  2682. if err != nil {
  2683. br.Msg = "获取失败"
  2684. br.ErrMsg = "获取失败,GetUserFllowIndustrialList Err:" + err.Error()
  2685. return
  2686. }
  2687. fllowMap := make(map[int]int)
  2688. if len(fllowList) > 0 {
  2689. for _, v := range fllowList {
  2690. fllowMap[v.IndustrialManagementId] = v.IndustrialManagementId
  2691. }
  2692. }
  2693. keyWord := this.GetString("KeyWord")
  2694. var condition string
  2695. var conditionOr string
  2696. //conditionOr = ` OR ( a.title LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2697. conditionOr += ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2698. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2699. listHz, err := models.GetSearchResourceList(user.UserId, condition, 0, 0)
  2700. if err != nil {
  2701. br.Msg = "获取信息失败"
  2702. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2703. return
  2704. }
  2705. //conditionOr = ` OR ( a.title LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2706. conditionOr = ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2707. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2708. listYx, err := models.GetSearchResourceList(user.UserId, condition, 0, 0)
  2709. if err != nil {
  2710. br.Msg = "获取信息失败"
  2711. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2712. return
  2713. }
  2714. //合并产业关联的标的
  2715. listSubjcet, err := models.GetThemeHeatSubjectList("")
  2716. if err != nil {
  2717. br.Msg = "获取信息失败"
  2718. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2719. return
  2720. }
  2721. industrialIdArr := make([]int, 0)
  2722. for k, v := range listHz {
  2723. listHz[k].Source = 1
  2724. if fllowMap[v.IndustrialManagementId] > 0 {
  2725. listHz[k].IsFollw = true
  2726. }
  2727. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2728. }
  2729. for k, v := range listYx {
  2730. listYx[k].Source = 2
  2731. if fllowMap[v.IndustrialManagementId] > 0 {
  2732. listYx[k].IsFollw = true
  2733. }
  2734. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2735. }
  2736. if len(industrialIdArr) > 0 {
  2737. //合并产业关联的标的
  2738. listSubjcet, err = models.GetIndustrialSubjectAllByIndustrialId(industrialIdArr)
  2739. if err != nil {
  2740. br.Msg = "获取信息失败"
  2741. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2742. return
  2743. }
  2744. mapIndustrial := make(map[string]int)
  2745. for _, v := range listSubjcet {
  2746. for k2, v2 := range listYx {
  2747. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] == 0 {
  2748. listYx[k2].IndustrialSubjectList = append(listYx[k2].IndustrialSubjectList, v)
  2749. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] = v2.IndustrialManagementId
  2750. }
  2751. }
  2752. for k2, v2 := range listHz {
  2753. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] == 0 {
  2754. listHz[k2].IndustrialSubjectList = append(listHz[k2].IndustrialSubjectList, v)
  2755. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] = v2.IndustrialManagementId
  2756. }
  2757. }
  2758. }
  2759. }
  2760. if keyWord != "" {
  2761. keyWordItem := new(models.CygxUserSearchKeyWord)
  2762. keyWordItem.UserId = user.UserId
  2763. keyWordItem.KeyWord = keyWord
  2764. keyWordItem.PageType = "ReortSearch"
  2765. keyWordItem.CreateTime = time.Now()
  2766. go models.AddUserSearchKeyWord(keyWordItem)
  2767. }
  2768. resp := new(models.SearchResourceResp)
  2769. if len(listYx) == 0 {
  2770. listYx = make([]*models.IndustrialManagementHotResp, 0)
  2771. }
  2772. if len(listHz) == 0 {
  2773. listHz = make([]*models.IndustrialManagementHotResp, 0)
  2774. }
  2775. resp.ListYx = listYx
  2776. resp.ListHz = listHz
  2777. br.Ret = 200
  2778. br.Success = true
  2779. br.Msg = "获取成功"
  2780. br.Data = resp
  2781. }
  2782. // @Title 报告搜索、资源包搜索接口
  2783. // @Description 报告搜索、资源包搜索接口接口
  2784. // @Param KeyWord query string true "搜索关键词"
  2785. // @Param PageSize query int true "每页数据条数"
  2786. // @Success 200 {object} models.SearchReportAndResourceResp
  2787. // @router /searchReportAndResource [get]
  2788. func (this *ReportController) SearchReportAndResource() {
  2789. br := new(models.BaseResponse).Init()
  2790. defer func() {
  2791. this.Data["json"] = br
  2792. this.ServeJSON()
  2793. }()
  2794. user := this.User
  2795. if user == nil {
  2796. br.Msg = "请重新登录"
  2797. br.Ret = 408
  2798. return
  2799. }
  2800. uid := user.UserId
  2801. keyWord := this.GetString("KeyWord")
  2802. pageSize, _ := this.GetInt("PageSize")
  2803. var condition string
  2804. var conditionSpecial string // 研选专栏
  2805. var sqlGroup string
  2806. articleTypeIds, err := services.GetYanXuanArticleTypeIds()
  2807. if err != nil {
  2808. br.Msg = "获取信息失败"
  2809. br.ErrMsg = "GetYanXuanArticleTypeIds,Err:" + err.Error()
  2810. return
  2811. }
  2812. if articleTypeIds == "" {
  2813. br.Msg = "获取信息失败"
  2814. br.ErrMsg = "研选分类ID不能为空"
  2815. return
  2816. }
  2817. //匹配报告标题、
  2818. 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 `
  2819. sqlGroup = ` GROUP BY a.article_id ORDER BY a.publish_date DESC `
  2820. if pageSize > 0 {
  2821. sqlGroup += ` LIMIT 5 `
  2822. } else {
  2823. sqlGroup += ` LIMIT 100 `
  2824. }
  2825. conditionSpecial = ` AND ( a.title LIKE '%` + keyWord + `%' OR a.content LIKE '%` + keyWord + `%' )`
  2826. ListYxReport, err := models.GetArticleAndYxSpecialList(` AND a.article_type_id IN (`+articleTypeIds+`) `+condition, conditionSpecial, user.UserId)
  2827. if err != nil {
  2828. br.Msg = "获取信息失败"
  2829. br.ErrMsg = "获取研选文章列表失败,Err:" + err.Error()
  2830. return
  2831. }
  2832. ListHzReport, err := models.GetReoprtSearchList(` AND a.article_type_id NOT IN (`+articleTypeIds+`) `+condition+sqlGroup, user.UserId)
  2833. if err != nil {
  2834. br.Msg = "获取信息失败"
  2835. br.ErrMsg = "获取弘则报告文章列表失败,Err:" + err.Error()
  2836. return
  2837. }
  2838. keyWordArr, err := services.GetIndustryMapNameSliceV3(keyWord)
  2839. if err != nil {
  2840. br.Msg = "获取失败"
  2841. br.ErrMsg = "获取分词失败,GetIndustryMapNameSliceV3 Err: " + err.Error()
  2842. return
  2843. }
  2844. keyWordArr = services.RemoveDuplicatesAndEmpty(keyWordArr)
  2845. var keyWordIk string
  2846. if len(keyWordArr) > 1 {
  2847. keyWordIk = services.KeyWordArrSqlRegexp(keyWordArr)
  2848. var conditionIk string
  2849. var sqlGroupIk string
  2850. conditionIk = `AND ( a.title REGEXP '` + keyWordIk + `' OR a.annotation REGEXP '` + keyWordIk + `' OR a.abstract REGEXP '` + keyWordIk + `') AND a.publish_status = 1 `
  2851. sqlGroupIk = ` GROUP BY a.article_id ORDER BY a.publish_date DESC `
  2852. if pageSize > 0 {
  2853. sqlGroupIk += ` LIMIT 5 `
  2854. } else {
  2855. sqlGroupIk += ` LIMIT 20 `
  2856. }
  2857. conditionIk += ` AND ( a.title NOT LIKE '%` + keyWord + `%' AND a.body NOT LIKE '%` + keyWord + `%' AND a.annotation NOT LIKE '%` + keyWord + `%' AND a.abstract NOT LIKE '%` + keyWord + `%') `
  2858. //研选的联想词列表
  2859. ListYxReportIk, err := models.GetArticleCollectionList(` AND a.article_type_id IN (`+articleTypeIds+`) `+conditionIk+sqlGroupIk, user.UserId)
  2860. if err != nil && err.Error() != utils.ErrNoRow() {
  2861. br.Msg = "获取信息失败"
  2862. br.ErrMsg = "获取研选IK文章列表失败,Err:" + err.Error()
  2863. return
  2864. }
  2865. if len(ListYxReportIk) > 0 {
  2866. for _, v := range ListYxReportIk {
  2867. ListYxReport = append(ListYxReport, v)
  2868. }
  2869. }
  2870. //弘则的联想词列表
  2871. ListHzReportIk, err := models.GetReoprtSearchList(` AND a.article_type_id NOT IN (`+articleTypeIds+`) `+conditionIk+sqlGroupIk, user.UserId)
  2872. if err != nil && err.Error() != utils.ErrNoRow() {
  2873. br.Msg = "获取信息失败"
  2874. br.ErrMsg = "获取研选IK文章列表失败,Err:" + err.Error()
  2875. return
  2876. }
  2877. if len(ListHzReportIk) > 0 {
  2878. for _, v := range ListHzReportIk {
  2879. ListHzReport = append(ListHzReport, v)
  2880. }
  2881. }
  2882. }
  2883. for k, v := range ListHzReport {
  2884. ListHzReport[k].Source = 1
  2885. if v.MyCollectNum > 0 {
  2886. ListHzReport[k].IsCollect = true
  2887. }
  2888. }
  2889. for k, v := range ListYxReport {
  2890. ListYxReport[k].Source = 2
  2891. if v.MyCollectNum > 0 {
  2892. ListYxReport[k].IsCollect = true
  2893. }
  2894. }
  2895. var articleIds string
  2896. for _, v := range ListHzReport {
  2897. articleIds += strconv.Itoa(v.ArticleId) + ","
  2898. }
  2899. for i, v := range ListYxReport {
  2900. articleIds += strconv.Itoa(v.ArticleId) + ","
  2901. if v.ArticleTypeId == -1 {
  2902. ListYxReport[i].ArticleTypeName = utils.CYGX_YANXUAN_SPECIAL
  2903. } else if v.ArticleTypeId > 0 {
  2904. ListYxReport[i].ArticleTypeName = utils.CYGX_YANXUAN_ARTICLE
  2905. }
  2906. if v.SpecialType == 1 {
  2907. ListYxReport[i].Title = "【笔记】" + ListYxReport[i].Title
  2908. } else if ListYxReport[i].SpecialType == 2 {
  2909. ListYxReport[i].Title = "【观点】" + ListYxReport[i].Title
  2910. }
  2911. if v.CompanyTags != "" {
  2912. v.SpecialTags += v.CompanyTags
  2913. }
  2914. if v.IndustryTags != "" {
  2915. if v.SpecialTags != "" {
  2916. v.SpecialTags += ","
  2917. }
  2918. v.SpecialTags += v.IndustryTags
  2919. }
  2920. v.SpecialTags = v.SpecialTags
  2921. }
  2922. articleIds = strings.TrimRight(articleIds, ",")
  2923. silcearticleIds := strings.Split(articleIds, ",")
  2924. var parsindustrial []interface{}
  2925. parsindustrial = make([]interface{}, 0)
  2926. articleIdList := make([]string, 0)
  2927. for _, v := range silcearticleIds {
  2928. articleIdList = append(articleIdList, v)
  2929. }
  2930. conditionindustrial := ` AND mg.article_id IN ( ` + utils.GetOrmInReplace(len(silcearticleIds)) + ` ) `
  2931. parsindustrial = append(parsindustrial, articleIdList)
  2932. industrialList, err := models.GetIndustrialListByarticleId(parsindustrial, conditionindustrial)
  2933. if err != nil {
  2934. return
  2935. }
  2936. industrialMap := make(map[int][]*models.IndustrialManagementResp)
  2937. if len(industrialList) > 0 {
  2938. for _, v := range industrialList {
  2939. item := new(models.IndustrialManagementResp)
  2940. //item.ArticleId = v.ArticleId
  2941. item.IndustrialManagementId = v.IndustrialManagementId
  2942. item.IndustryName = v.IndustryName
  2943. item.ChartPermissionId = v.ChartPermissionId
  2944. industrialMap[v.ArticleId] = append(industrialMap[v.ArticleId], item)
  2945. }
  2946. }
  2947. for k, v := range ListHzReport {
  2948. if len(industrialMap[v.ArticleId]) > 0 {
  2949. ListHzReport[k].List = industrialMap[v.ArticleId]
  2950. } else {
  2951. ListHzReport[k].List = make([]*models.IndustrialManagementResp, 0)
  2952. }
  2953. }
  2954. for k, v := range ListYxReport {
  2955. if len(industrialMap[v.ArticleId]) > 0 {
  2956. ListYxReport[k].List = industrialMap[v.ArticleId]
  2957. } else {
  2958. ListYxReport[k].List = make([]*models.IndustrialManagementResp, 0)
  2959. }
  2960. }
  2961. //获取文章关联的产业
  2962. if len(ListYxReport) == 0 {
  2963. ListYxReport = make([]*models.ArticleCollectionResp, 0)
  2964. }
  2965. if len(ListHzReport) == 0 {
  2966. ListHzReport = make([]*models.ArticleCollectionResp, 0)
  2967. }
  2968. fllowList, err := models.GetUserFllowIndustrialList(uid)
  2969. if err != nil {
  2970. br.Msg = "获取失败"
  2971. br.ErrMsg = "获取失败,GetUserFllowIndustrialList Err:" + err.Error()
  2972. return
  2973. }
  2974. fllowMap := make(map[int]int)
  2975. if len(fllowList) > 0 {
  2976. for _, v := range fllowList {
  2977. fllowMap[v.IndustrialManagementId] = v.IndustrialManagementId
  2978. }
  2979. }
  2980. condition = ` AND a.publish_status = 1 AND a.article_type_id NOT IN (` + articleTypeIds + `) AND (m.industry_name LIKE '%` + keyWord + `%' OR m.subject_names LIKE '%` + keyWord + `%' ) `
  2981. listHzResource, err := models.GetSearchResourceList(user.UserId, condition, 0, pageSize)
  2982. if err != nil {
  2983. br.Msg = "获取信息失败"
  2984. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2985. return
  2986. }
  2987. condition = ` AND a.publish_status = 1 AND a.article_type_id IN (` + articleTypeIds + `) AND (m.industry_name LIKE '%` + keyWord + `%' OR m.subject_names LIKE '%` + keyWord + `%' ) `
  2988. hotMapindustrial, e := services.IndustrialManagementHotMapGropuPermission()
  2989. if e != nil {
  2990. br.Msg = "获取信息失败"
  2991. br.ErrMsg = "获取hot标签失败,IndustrialManagementHotMapGropuPermission ,Err:" + err.Error()
  2992. return
  2993. }
  2994. listYxResource, err := models.GetSearchResourceList(user.UserId, condition, 0, pageSize)
  2995. if err != nil {
  2996. br.Msg = "获取信息失败"
  2997. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2998. return
  2999. }
  3000. //合并产业关联的标的
  3001. listSubjcet, err := models.GetThemeHeatSubjectList("")
  3002. if err != nil {
  3003. br.Msg = "获取信息失败"
  3004. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  3005. return
  3006. }
  3007. industrialIdArr := make([]int, 0)
  3008. nowTime := time.Now().Local()
  3009. threeMonBefore := nowTime.AddDate(0, -3, 0)
  3010. mapHot := make(map[int]bool)
  3011. //if themeType == 2 {
  3012. mapHot, err = services.GetYanXuanIndustrialManagementIdHotMap(articleTypeIds)
  3013. if err != nil {
  3014. br.Msg = "获取信息失败"
  3015. br.ErrMsg = "GetYanXuanIndustrialManagementIdNewMap,Err:" + err.Error()
  3016. return
  3017. }
  3018. //conditionOrder := ` ORDER BY sum_num DESC `
  3019. //listHot, err := models.GetThemeHeatList(user.UserId, condition, conditionOrder, 0, 3)
  3020. //if err != nil {
  3021. // br.Msg = "获取信息失败"
  3022. // br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  3023. // return
  3024. //}
  3025. for k, _ := range mapHot {
  3026. industrialIdArr = append(industrialIdArr, k)
  3027. }
  3028. orderSrt := "man.recommended_index DESC,update_time DESC"
  3029. for k, v := range listHzResource {
  3030. // 关联报告发布时间均在3个月内则标记New
  3031. if v.MinReportTime != "" {
  3032. t, e := time.Parse(utils.FormatDateTime, v.MinReportTime)
  3033. if e != nil {
  3034. err = errors.New("报告最早发布时间有误,GetindustryVideo " + e.Error())
  3035. return
  3036. }
  3037. if t.After(threeMonBefore) {
  3038. listHzResource[k].IsNew = true
  3039. }
  3040. }
  3041. //弘则资源包不展示hot标签
  3042. //if mapHot[v.IndustryName] > 0 {
  3043. // listHzResource[k].IsHot = true
  3044. //}
  3045. listHzResource[k].Source = 1
  3046. if fllowMap[v.IndustrialManagementId] > 0 {
  3047. listHzResource[k].IsFollw = true
  3048. }
  3049. v.IsHot = hotMapindustrial[v.IndustrialManagementId]
  3050. industrialIdSlice := make([]int, 0)
  3051. articleIdArr := make([]int, 0)
  3052. industrialIdSlice = append(industrialIdSlice, v.IndustrialManagementId)
  3053. listUpdateTime, err := models.GetNewArticleDetailByIndustrialIds(industrialIdSlice)
  3054. if err != nil && err.Error() != utils.ErrNoRow() {
  3055. return
  3056. }
  3057. for _, v := range listUpdateTime {
  3058. articleIdArr = append(articleIdArr, v.ArticleId)
  3059. }
  3060. if err != nil {
  3061. return
  3062. }
  3063. mapHistroyArticleId := make(map[int]int)
  3064. if user.UserId > 0 {
  3065. listArticleHistory, e := models.GetUserToArticleHistory(user.UserId, articleIdArr)
  3066. if e != nil && e.Error() != utils.ErrNoRow() {
  3067. err = errors.New("获取产业关联的视频失败,GetindustryVideo " + e.Error())
  3068. return
  3069. }
  3070. for _, v := range listArticleHistory {
  3071. mapHistroyArticleId[v.ArticleId] = v.ArticleId
  3072. }
  3073. }
  3074. condition2 := ` AND man.industry_name LIKE '%` + keyWord + `%' `
  3075. list, err := models.GetIndustrialManagementAll(uid, condition2, orderSrt, 0, 20)
  3076. if err != nil {
  3077. br.Msg = "获取信息失败"
  3078. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  3079. return
  3080. }
  3081. mapUPdateTime := make(map[int]string)
  3082. //获取这些产业下最新更新的文章
  3083. //时间线的更新时间
  3084. // maptimelineUPdateTime := make(map[int]string)
  3085. listtimelinePublishdate, err := models.GetTimeLineReportIndustrialPublishdateList(industrialIdArr)
  3086. if err != nil && err.Error() != utils.ErrNoRow() {
  3087. br.Msg = "获取信息失败"
  3088. br.ErrMsg = "GetTimeLineReportIndustrialPublishdateList,Err:" + err.Error()
  3089. return
  3090. }
  3091. for _, v := range listtimelinePublishdate {
  3092. if mapUPdateTime[v.IndustrialManagementId] != "" {
  3093. if utils.StrTimeToTime(v.PublishDate).After(utils.StrTimeToTime(mapUPdateTime[v.IndustrialManagementId])) {
  3094. mapUPdateTime[v.IndustrialManagementId] = v.PublishDate
  3095. }
  3096. }
  3097. }
  3098. //mapHistroyArticleId := make(map[int]int)
  3099. //if userId > 0 {
  3100. // listArticleHistory, e := models.GetUserToArticleHistory(userId, articleIdArr)
  3101. // if e != nil && e.Error() != utils.ErrNoRow() {
  3102. // err = errors.New("获取产业关联的视频失败,GetindustryVideo " + e.Error())
  3103. // return
  3104. // }
  3105. // for _, v := range listArticleHistory {
  3106. // mapHistroyArticleId[v.ArticleId] = v.ArticleId
  3107. // }
  3108. //}
  3109. var industrialIds string
  3110. for _, id := range industrialIdArr {
  3111. industrialIds += strconv.Itoa(id) + ","
  3112. }
  3113. industrialIds = strings.TrimRight(industrialIds, ",")
  3114. articleList, err := models.GetReportIndustrialReadNumList(user.UserId, industrialIds, user.CreatedTime)
  3115. if err != nil && err.Error() != utils.ErrNoRow() {
  3116. br.Msg = "获取信息失败"
  3117. br.ErrMsg = "GetReportIndustrialReadNumList,Err:" + err.Error()
  3118. return
  3119. }
  3120. mapHistroyindustrialId := make(map[int]int)
  3121. for _, v := range articleList {
  3122. mapHistroyindustrialId[v.IndustrialManagementId] = v.Readnum
  3123. }
  3124. //nowTime := time.Now().Local()
  3125. //threeMonBefore := nowTime.AddDate(0, -3, 0)
  3126. //查询用户今天是否看过时间线
  3127. //haveMorningMeeting := false
  3128. //var morningMeetingTime string
  3129. recrodList, err := models.GetTimeLineRecordAllCount(user.UserId, time.Now().Format(utils.FormatDate))
  3130. if err != nil {
  3131. br.Msg = "获取信息失败"
  3132. br.ErrMsg = "GetTimeLineRecordAllCount,Err:" + err.Error()
  3133. return
  3134. }
  3135. var industrialManagementIdstr string
  3136. industrialIdMap := make(map[string]time.Time)
  3137. for _, v := range recrodList {
  3138. industrialManagementIdstr = strings.TrimLeft(v.Parameter, "PageSize=10&CurrentIndex=1&CategoryId=99999&IndustrialManagementId=")
  3139. if createTime, ok := industrialIdMap[industrialManagementIdstr]; ok {
  3140. if createTime.Before(v.CreateTime) {
  3141. industrialIdMap[industrialManagementIdstr] = v.CreateTime
  3142. }
  3143. } else {
  3144. industrialIdMap[industrialManagementIdstr] = v.CreateTime
  3145. }
  3146. }
  3147. mmList, err := models.GetCygxMorningMeetingReviewsListByIndustrialIds(industrialIds)
  3148. if err != nil {
  3149. return
  3150. }
  3151. morningMeetingTimeMap := make(map[int]time.Time)
  3152. for _, v := range mmList {
  3153. morningMeetingTimeMap[v.IndustryId] = v.CreateTime
  3154. }
  3155. timeLineRedMap := make(map[int]bool, 0)
  3156. for _, industrialId := range industrialIdArr {
  3157. if createTime, ok := industrialIdMap[strconv.Itoa(industrialId)]; ok {
  3158. if createTime.Before(morningMeetingTimeMap[industrialId]) {
  3159. timeLineRedMap[industrialId] = true
  3160. }
  3161. }
  3162. }
  3163. for k, v := range list {
  3164. list[k].UpdateTime = utils.TimeRemoveHms(mapUPdateTime[v.IndustrialManagementId])
  3165. if user.UserId > 0 {
  3166. //如果文章没有阅读,而且,文章的发布时间晚于项目的上线时间,而且文章的发布时间晚于用户的注册时间,就进行标红处理
  3167. if mapHistroyindustrialId[v.IndustrialManagementId] == 0 || timeLineRedMap[v.IndustrialManagementId] {
  3168. if user.CreatedTime.Before(utils.StrTimeToTime(mapUPdateTime[v.IndustrialManagementId])) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(mapUPdateTime[v.IndustrialManagementId])) {
  3169. list[k].IsRed = true
  3170. }
  3171. }
  3172. } else {
  3173. if utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(mapUPdateTime[v.IndustrialManagementId])) {
  3174. list[k].IsRed = true
  3175. }
  3176. list[k].IsFollow = 0
  3177. }
  3178. list[k].UpdateTime = utils.TimeRemoveHms(mapUPdateTime[v.IndustrialManagementId])
  3179. if user.UserId > 0 {
  3180. //如果文章没有阅读,而且,文章的发布时间晚于项目的上线时间,而且文章的发布时间晚于用户的注册时间,就进行标红处理
  3181. if mapHistroyindustrialId[v.IndustrialManagementId] == 0 || timeLineRedMap[v.IndustrialManagementId] {
  3182. if user.CreatedTime.Before(utils.StrTimeToTime(mapUPdateTime[v.IndustrialManagementId])) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(mapUPdateTime[v.IndustrialManagementId])) {
  3183. list[k].IsRed = true
  3184. }
  3185. }
  3186. } else {
  3187. if utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(mapUPdateTime[v.IndustrialManagementId])) {
  3188. list[k].IsRed = true
  3189. }
  3190. list[k].IsFollow = 0
  3191. }
  3192. }
  3193. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  3194. }
  3195. for k, v := range listYxResource {
  3196. // 关联报告发布时间均在3个月内则标记New
  3197. if v.MinReportTime != "" {
  3198. t, e := time.Parse(utils.FormatDateTime, v.MinReportTime)
  3199. if e != nil {
  3200. err = errors.New("报告最早发布时间有误,GetindustryVideo " + e.Error())
  3201. return
  3202. }
  3203. if t.After(threeMonBefore) {
  3204. listYxResource[k].IsNew = true
  3205. }
  3206. }
  3207. listYxResource[k].IsHot = mapHot[v.IndustrialManagementId]
  3208. listYxResource[k].Source = 2
  3209. if fllowMap[v.IndustrialManagementId] > 0 {
  3210. listYxResource[k].IsFollw = true
  3211. }
  3212. v.IsHot = hotMapindustrial[v.IndustrialManagementId]
  3213. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  3214. }
  3215. if len(industrialIdArr) > 0 {
  3216. //查询产业视频
  3217. industrialVideoMap := make(map[int]*models.MicroVideoSimpleInfo)
  3218. // 获取默认图配置
  3219. _, videoMap, _, _, e := services.GetMicroRoadShowDefaultImgConfig()
  3220. if e != nil {
  3221. br.Msg = "获取视频默认配置图失败"
  3222. br.ErrMsg = "获取视频默认配置图失败, Err: " + e.Error()
  3223. return
  3224. }
  3225. videoList, err := models.GetMicroRoadshowVideoByIndustryIds(industrialIdArr)
  3226. if err != nil {
  3227. br.Msg = "产业视频列表失败"
  3228. br.ErrMsg = "产业视频列表失败, Err: " + err.Error()
  3229. return
  3230. }
  3231. for _, v := range videoList {
  3232. tmp := &models.MicroVideoSimpleInfo{
  3233. Id: v.VideoId,
  3234. Title: "5min逻辑【" + v.IndustryName + "】解析",
  3235. ResourceUrl: v.VideoUrl,
  3236. BackgroundImg: v.ImgUrl,
  3237. PlaySeconds: v.VideoDuration,
  3238. DetailImgUrl: v.DetailImgUrl,
  3239. ChartPermissionName: v.ChartPermissionName,
  3240. ChartPermissionId: v.ChartPermissionId,
  3241. }
  3242. if tmp.BackgroundImg == "" {
  3243. tmp.BackgroundImg = videoMap[v.ChartPermissionId]
  3244. }
  3245. industrialVideoMap[v.IndustryId] = tmp
  3246. }
  3247. //查询权限
  3248. // 用户权限
  3249. authInfo, permissionArr, e := services.GetUserRaiPermissionInfo(user.UserId, user.CompanyId)
  3250. if e != nil {
  3251. br.Msg = "获取失败"
  3252. br.ErrMsg = "获取用户权限失败, Err: " + e.Error()
  3253. return
  3254. }
  3255. for k, v := range listHzResource {
  3256. //展示产业视频
  3257. if video, ok := industrialVideoMap[v.IndustrialManagementId]; ok {
  3258. au := new(models.UserPermissionAuthInfo)
  3259. au.SellerName = authInfo.SellerName
  3260. au.SellerMobile = authInfo.SellerMobile
  3261. au.HasPermission = authInfo.HasPermission
  3262. au.OperationMode = authInfo.OperationMode
  3263. if au.HasPermission == 1 {
  3264. // 非宏观权限进一步判断是否有权限
  3265. if video.ChartPermissionId != utils.HONG_GUAN_ID && !utils.InArrayByStr(permissionArr, video.ChartPermissionName) {
  3266. au.HasPermission = 2
  3267. }
  3268. }
  3269. // 无权限的弹框提示
  3270. if au.HasPermission != 1 {
  3271. if au.OperationMode == services.UserPermissionOperationModeCall {
  3272. au.PopupMsg = services.UserPermissionPopupMsgCallMicroVideo
  3273. } else {
  3274. au.PopupMsg = services.UserPermissionPopupMsgApplyMicroVideo
  3275. }
  3276. video.ResourceUrl = ""
  3277. }
  3278. listHzResource[k].AuthInfo = au
  3279. listHzResource[k].IndustryVideo = video
  3280. }
  3281. }
  3282. //合并产业关联的标的
  3283. listSubjcet, err = models.GetIndustrialSubjectAllByIndustrialId(industrialIdArr)
  3284. if err != nil {
  3285. br.Msg = "获取信息失败"
  3286. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  3287. return
  3288. }
  3289. //严选的产业只关联研选下面的标的
  3290. var yxcondition string
  3291. var yxPer []interface{}
  3292. yxcondition = ` AND ag.article_id >= ?`
  3293. yxPer = append(yxPer, utils.SummaryArticleId)
  3294. listYxAticleSubject, err := models.GetSubjectArticleGroupManagementList(yxcondition, yxPer)
  3295. if err != nil && err.Error() != utils.ErrNoRow() {
  3296. br.Msg = "获取信息失败"
  3297. br.ErrMsg = "获取研选报告关联的标的信息失败,GetSubjectArticleGroupManagementListErr:" + err.Error()
  3298. return
  3299. }
  3300. mapYxSubject := make(map[int]int)
  3301. for _, v := range listYxAticleSubject {
  3302. mapYxSubject[v.IndustrialSubjectId] = v.IndustrialSubjectId
  3303. }
  3304. mapIndustrial := make(map[string]int)
  3305. for _, v := range listSubjcet {
  3306. for k2, v2 := range listYxResource {
  3307. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] == 0 && mapYxSubject[v.IndustrialSubjectId] > 0 {
  3308. listYxResource[k2].IndustrialSubjectList = append(listYxResource[k2].IndustrialSubjectList, v)
  3309. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] = v2.IndustrialManagementId
  3310. }
  3311. }
  3312. for k2, v2 := range listHzResource {
  3313. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] == 0 {
  3314. listHzResource[k2].IndustrialSubjectList = append(listHzResource[k2].IndustrialSubjectList, v)
  3315. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] = v2.IndustrialManagementId
  3316. }
  3317. }
  3318. }
  3319. }
  3320. resp := new(models.SearchReportAndResourceResp)
  3321. if len(listYxResource) == 0 {
  3322. listYxResource = make([]*models.IndustrialManagementHotResp, 0)
  3323. }
  3324. if len(listHzResource) == 0 {
  3325. listHzResource = make([]*models.IndustrialManagementHotResp, 0)
  3326. }
  3327. if keyWord != "" {
  3328. keyWordItem := new(models.CygxUserSearchKeyWord)
  3329. keyWordItem.UserId = user.UserId
  3330. keyWordItem.KeyWord = keyWord
  3331. keyWordItem.PageType = "ReortSearch"
  3332. keyWordItem.CreateTime = time.Now()
  3333. go models.AddUserSearchKeyWord(keyWordItem)
  3334. //go services.AddUserSearchLog(user, keyWord, 5)
  3335. }
  3336. resp.ListHzResource = listHzResource
  3337. resp.ListYxResource = listYxResource
  3338. resp.ListYxReport = ListYxReport
  3339. resp.ListHzReport = ListHzReport
  3340. br.Ret = 200
  3341. br.Success = true
  3342. br.Msg = "获取成功"
  3343. br.Data = resp
  3344. }
  3345. // @Title 产业报告公司列表
  3346. // @Description 获取产业报告公司列表接口
  3347. // @Param ChartPermissionId query int true "行业id"
  3348. // @Success 200 {object} models.IndustrialManagementList
  3349. // @router /home/stockName [get]
  3350. func (this *ReportController) StockNameList() {
  3351. br := new(models.BaseResponse).Init()
  3352. defer func() {
  3353. this.Data["json"] = br
  3354. this.ServeJSON()
  3355. }()
  3356. user := this.User
  3357. if user == nil {
  3358. br.Msg = "请重新登录"
  3359. br.Ret = 408
  3360. return
  3361. }
  3362. //uid := user.UserId
  3363. chartPermissionId, _ := this.GetInt("ChartPermissionId")
  3364. list, err := models.GetSummaryArticle(chartPermissionId)
  3365. if err != nil {
  3366. br.Msg = "获取综述报告公司名称失败"
  3367. br.ErrMsg = "获取综述报告公司名称失败,Err:" + err.Error()
  3368. return
  3369. }
  3370. var respList []*models.SummaryArticleStock
  3371. for _, item := range list {
  3372. sliceSubjects := strings.Split(item.Stock, "/")
  3373. if len(sliceSubjects) > 0 {
  3374. for i, vSubject := range sliceSubjects {
  3375. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  3376. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  3377. subject := sliceXiahuaxian[0]
  3378. if i > 0 {
  3379. newItem := models.SummaryArticleStock{
  3380. Id: item.Id,
  3381. ArticleId: item.ArticleId,
  3382. Stock: subject,
  3383. }
  3384. respList = append(respList, &newItem)
  3385. } else {
  3386. item.Stock = subject
  3387. respList = append(respList, item)
  3388. }
  3389. }
  3390. }
  3391. //index := strings.Index(item.Stock, "(")
  3392. //item.Stock = item.Stock[:index]
  3393. //if strings.Contains(item.Stock, "-B"){
  3394. // item.Stock = strings.Replace(item.Stock, "-B", "", -1)
  3395. //}
  3396. //if strings.Contains(item.Stock, "-W"){
  3397. // item.Stock = strings.Replace(item.Stock, "-W", "", -1)
  3398. //}
  3399. }
  3400. resp := new(models.SummaryArticleStockResp)
  3401. resp.List = respList
  3402. br.Ret = 200
  3403. br.Success = true
  3404. br.Msg = "获取成功"
  3405. br.Data = resp
  3406. }
  3407. // @Title 文章留言接口
  3408. // @Description 文章留言接口
  3409. // @Param request body models.AddCygxActivityHelpAsk true "type json string"
  3410. // @Success 200 {object} models.TacticsListResp
  3411. // @router /commentAdd [post]
  3412. func (this *ReportController) CommentAdd() {
  3413. br := new(models.BaseResponse).Init()
  3414. defer func() {
  3415. this.Data["json"] = br
  3416. this.ServeJSON()
  3417. }()
  3418. user := this.User
  3419. if user == nil {
  3420. br.Msg = "请重新登录"
  3421. br.Ret = 408
  3422. return
  3423. }
  3424. var req models.AddCygxArticleCommentReq
  3425. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  3426. if err != nil {
  3427. br.Msg = "参数解析异常!"
  3428. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  3429. return
  3430. }
  3431. if req.ArticleId <= 0 {
  3432. br.Msg = "文章不存在"
  3433. br.ErrMsg = "文章不存在,文章ID错误"
  3434. return
  3435. }
  3436. if req.Content == "" {
  3437. br.Msg = "建议内容不可为空"
  3438. return
  3439. }
  3440. content := req.Content
  3441. itemToken, err := services.WxGetToken()
  3442. if err != nil {
  3443. br.Msg = "GetWxAccessToken Err:" + err.Error()
  3444. return
  3445. }
  3446. if itemToken.AccessToken == "" {
  3447. br.Msg = "accessToken is empty"
  3448. return
  3449. }
  3450. commerr, err := weapp.MSGSecCheck(itemToken.AccessToken, content)
  3451. if err != nil {
  3452. br.Msg = "内容校验失败!"
  3453. br.ErrMsg = "内容校验失败,Err:" + err.Error()
  3454. return
  3455. }
  3456. if commerr.ErrCode != 0 {
  3457. br.Msg = "内容违规,请重新提交!"
  3458. br.ErrMsg = "内容违规,Err:" + commerr.ErrMSG
  3459. return
  3460. }
  3461. articleId := req.ArticleId
  3462. articleInfo, errInfo := models.GetArticleDetailById(articleId)
  3463. if articleInfo == nil {
  3464. br.Msg = "操作失败"
  3465. br.ErrMsg = "文章ID错误,不存在articleId:" + strconv.Itoa(articleId)
  3466. return
  3467. }
  3468. if errInfo != nil {
  3469. br.Msg = "操作失败"
  3470. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  3471. return
  3472. }
  3473. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  3474. if err != nil {
  3475. br.Msg = "提交失败!"
  3476. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  3477. return
  3478. }
  3479. if companyDetail == nil {
  3480. br.Msg = "提交失败!"
  3481. br.ErrMsg = "客户不存在,uid:" + strconv.Itoa(user.UserId)
  3482. return
  3483. }
  3484. item := models.CygxArticleComment{
  3485. UserId: user.UserId,
  3486. ArticleId: req.ArticleId,
  3487. CreateTime: time.Now(),
  3488. Mobile: user.Mobile,
  3489. Email: user.Email,
  3490. CompanyId: user.CompanyId,
  3491. CompanyName: companyDetail.CompanyName,
  3492. Content: content,
  3493. Title: articleInfo.Title,
  3494. }
  3495. msgId, err := models.AddArticleComment(&item)
  3496. if err != nil {
  3497. br.Msg = "提交失败"
  3498. br.ErrMsg = "提交留言失败,Err:" + err.Error()
  3499. return
  3500. }
  3501. services.SendCommentWxTemplateMsg(req, user, articleInfo, int(msgId))
  3502. br.Ret = 200
  3503. br.Success = true
  3504. br.Msg = "提交成功"
  3505. }
  3506. // @Title 记录用户浏览音频回放接口
  3507. // @Description 记录用户浏览音频回放接口
  3508. // @Param request body models.ArticleIdReq true "type json string"
  3509. // @Success Ret=200 操作成功
  3510. // @router /voiceHistory/add [post]
  3511. func (this *ReportController) ResearchSummaryVoiceHistoryAdd() {
  3512. br := new(models.BaseResponse).Init()
  3513. defer func() {
  3514. this.Data["json"] = br
  3515. this.ServeJSON()
  3516. }()
  3517. user := this.User
  3518. if user == nil {
  3519. br.Msg = "请登录"
  3520. br.ErrMsg = "请登录,用户信息为空"
  3521. br.Ret = 408
  3522. return
  3523. }
  3524. uid := user.UserId
  3525. var req models.ArticleIdReq
  3526. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  3527. if err != nil {
  3528. br.Msg = "参数解析异常!"
  3529. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  3530. return
  3531. }
  3532. articleId := req.ArticleId
  3533. playSeconds := req.PlaySeconds
  3534. pageRouter := req.PageRouter
  3535. if pageRouter == "本周研究汇总" {
  3536. articleInfo, errInfo := models.GetCygxResearchSummaryInfoById(articleId)
  3537. if articleInfo == nil {
  3538. br.Msg = "操作失败"
  3539. br.ErrMsg = "文章ID错误,不存在articleId:" + strconv.Itoa(articleId)
  3540. return
  3541. }
  3542. if errInfo != nil {
  3543. br.Msg = "操作失败"
  3544. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  3545. return
  3546. }
  3547. var sellerName string
  3548. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  3549. if err != nil {
  3550. br.Msg = "报名失败!"
  3551. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  3552. return
  3553. }
  3554. item := models.CygxResearchSummaryVoiceHistory{
  3555. ArticleId: articleId,
  3556. UserId: uid,
  3557. CreateTime: time.Now(),
  3558. Mobile: user.Mobile,
  3559. Email: user.Email,
  3560. CompanyId: user.CompanyId,
  3561. CompanyName: user.CompanyName,
  3562. RealName: user.RealName,
  3563. SellerName: sellerName,
  3564. PlaySeconds: strconv.Itoa(req.PlaySeconds),
  3565. ModifyTime: time.Now(),
  3566. }
  3567. if playSeconds != 0 {
  3568. lastItem, err := models.GetLastCygxResearchSummaryVoiceHistory(articleId, user.UserId)
  3569. if err != nil {
  3570. br.Msg = "操作失败"
  3571. br.ErrMsg = "操作失败,GetLastCygxResearchSummaryVoiceHistory Err:" + err.Error()
  3572. return
  3573. }
  3574. err = models.UpdateLastCygxResearchSummaryVoiceHistory(strconv.Itoa(req.PlaySeconds), lastItem.Id)
  3575. if err != nil {
  3576. br.Msg = "更新失败"
  3577. br.ErrMsg = "更新失败,UpdateLastCygxResearchSummaryVoiceHistory Err:" + err.Error()
  3578. return
  3579. }
  3580. } else {
  3581. err = models.AddCygxResearchSummaryVoiceHistory(&item)
  3582. if err != nil {
  3583. br.Msg = "操作失败"
  3584. br.ErrMsg = "操作失败,Err:" + err.Error()
  3585. return
  3586. }
  3587. err = models.UpdateResearchSummaryVoiceCounts(articleId)
  3588. if err != nil {
  3589. br.Msg = "更新失败"
  3590. br.ErrMsg = "更新失败,Err:" + err.Error()
  3591. return
  3592. }
  3593. }
  3594. } else if pageRouter == "上周纪要汇总" {
  3595. articleInfo, errInfo := models.GetCygxMinutesSummaryInfoById(articleId)
  3596. if articleInfo == nil {
  3597. br.Msg = "操作失败"
  3598. br.ErrMsg = "文章ID错误,不存在articleId:" + strconv.Itoa(articleId)
  3599. return
  3600. }
  3601. if errInfo != nil {
  3602. br.Msg = "操作失败"
  3603. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  3604. return
  3605. }
  3606. var sellerName string
  3607. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  3608. if err != nil {
  3609. br.Msg = "报名失败!"
  3610. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  3611. return
  3612. }
  3613. item := models.CygxMinutesSummaryVoiceHistory{
  3614. ArticleId: articleId,
  3615. UserId: uid,
  3616. CreateTime: time.Now(),
  3617. Mobile: user.Mobile,
  3618. Email: user.Email,
  3619. CompanyId: user.CompanyId,
  3620. CompanyName: user.CompanyName,
  3621. RealName: user.RealName,
  3622. SellerName: sellerName,
  3623. PlaySeconds: strconv.Itoa(req.PlaySeconds),
  3624. ModifyTime: time.Now(),
  3625. }
  3626. if playSeconds != 0 {
  3627. lastItem, err := models.GetLastCygxMinutesSummaryVoiceHistory(articleId, user.UserId)
  3628. if err != nil {
  3629. br.Msg = "操作失败"
  3630. br.ErrMsg = "操作失败,GetLastCygxSummaryVoiceHistory Err:" + err.Error()
  3631. return
  3632. }
  3633. err = models.UpdateLastCygxMinutesSummaryVoiceHistory(strconv.Itoa(req.PlaySeconds), lastItem.Id)
  3634. if err != nil {
  3635. br.Msg = "更新失败"
  3636. br.ErrMsg = "更新失败,UpdateLastCygxSummaryVoiceHistory Err:" + err.Error()
  3637. return
  3638. }
  3639. } else {
  3640. err = models.AddCygxMinutesSummaryVoiceHistory(&item)
  3641. if err != nil {
  3642. br.Msg = "操作失败"
  3643. br.ErrMsg = "操作失败,Err:" + err.Error()
  3644. return
  3645. }
  3646. err = models.UpdateMinutesSummaryVoiceCounts(articleId)
  3647. if err != nil {
  3648. br.Msg = "更新失败"
  3649. br.ErrMsg = "更新失败,Err:" + err.Error()
  3650. return
  3651. }
  3652. }
  3653. } else if pageRouter == "报告精选" {
  3654. articleInfo, errInfo := models.GetCygxReportSelectionInfoById(articleId)
  3655. if articleInfo == nil {
  3656. br.Msg = "操作失败"
  3657. br.ErrMsg = "文章ID错误,不存在articleId:" + strconv.Itoa(articleId)
  3658. return
  3659. }
  3660. if errInfo != nil {
  3661. br.Msg = "操作失败"
  3662. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  3663. return
  3664. }
  3665. var sellerName string
  3666. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  3667. if err != nil {
  3668. br.Msg = "报名失败!"
  3669. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  3670. return
  3671. }
  3672. item := models.CygxReportSelectionVoiceHistory{
  3673. ArticleId: articleId,
  3674. UserId: uid,
  3675. CreateTime: time.Now(),
  3676. Mobile: user.Mobile,
  3677. Email: user.Email,
  3678. CompanyId: user.CompanyId,
  3679. CompanyName: user.CompanyName,
  3680. RealName: user.RealName,
  3681. SellerName: sellerName,
  3682. PlaySeconds: strconv.Itoa(req.PlaySeconds),
  3683. ModifyTime: time.Now(),
  3684. }
  3685. if playSeconds != 0 {
  3686. lastItem, err := models.GetLastCygxReportSelectionVoiceHistory(articleId, user.UserId)
  3687. if err != nil {
  3688. br.Msg = "操作失败"
  3689. br.ErrMsg = "操作失败,GetLastCygxSummaryVoiceHistory Err:" + err.Error()
  3690. return
  3691. }
  3692. err = models.UpdateLastCygxReportSelectionVoiceHistory(strconv.Itoa(req.PlaySeconds), lastItem.Id)
  3693. if err != nil {
  3694. br.Msg = "更新失败"
  3695. br.ErrMsg = "更新失败,UpdateLastCygxSummaryVoiceHistory Err:" + err.Error()
  3696. return
  3697. }
  3698. } else {
  3699. err = models.AddCygxReportSelectionVoiceHistory(&item)
  3700. if err != nil {
  3701. br.Msg = "操作失败"
  3702. br.ErrMsg = "操作失败,Err:" + err.Error()
  3703. return
  3704. }
  3705. err = models.UpdateReportSelectionVoiceCounts(articleId)
  3706. if err != nil {
  3707. br.Msg = "更新失败"
  3708. br.ErrMsg = "更新失败,Err:" + err.Error()
  3709. return
  3710. }
  3711. }
  3712. }
  3713. br.Ret = 200
  3714. br.Success = true
  3715. br.Msg = "操作成功"
  3716. return
  3717. }