report.go 120 KB

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