report.go 120 KB

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