cygx_research_summary.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  1. package services
  2. import (
  3. "context"
  4. "fmt"
  5. "hongze/hongze_task/models/data_manage"
  6. "hongze/hongze_task/services/alarm_msg"
  7. "hongze/hongze_task/utils"
  8. "regexp"
  9. "strconv"
  10. "strings"
  11. "time"
  12. )
  13. func CygxResearchSummary(cont context.Context) (err error) {
  14. defer func() {
  15. if err != nil {
  16. go alarm_msg.SendAlarmMsg("CygxResearchSummary-定时本周生成研究汇总失败, ErrMsg:\n"+err.Error(), 3)
  17. fmt.Println(err)
  18. }
  19. }()
  20. //content := "本周研究汇总"
  21. friday := utils.GetNowWeekFriday().Add(15 * time.Hour)
  22. lastfriday := utils.GetLastWeekFriday().Add(15 * time.Hour)
  23. lastMonth := int(lastfriday.Month())
  24. month := int(friday.Month())
  25. lastDay := lastfriday.Day()
  26. day := friday.Day()
  27. //friday, _ = time.Parse(utils.FormatDateTime, "2022-09-02 15:00:00")
  28. //lastfriday, _ = time.Parse(utils.FormatDateTime, "2022-08-26 15:00:00")
  29. itemCrs := new(data_manage.CygxResearchSummary)
  30. itemCrs.AdminId = 11
  31. itemCrs.AdminName = "admin"
  32. itemCrs.Title = fmt.Sprintf("本周研究汇总(%d月%d日至%d月%d日)", lastMonth, lastDay, month, day)
  33. itemCrs.Department = "弘则产品组"
  34. itemCrs.Abstract = ""
  35. itemCrs.PublishStatus = 0
  36. //itemCrs.Periods = strconv.Itoa(total + 1)
  37. itemCrs.CreateTime = time.Now()
  38. itemCrs.LastUpdatedTime = time.Now()
  39. itemCrs.PublishDate = time.Now()
  40. articleId, e := data_manage.AddCygxResearchSummaryOrm(itemCrs)
  41. if e != nil {
  42. err = e
  43. return
  44. }
  45. mappingList, err := data_manage.CygxReportMappingist()
  46. if err != nil {
  47. return
  48. }
  49. CategoryChartPermissionIdMap := make(map[int]int)
  50. for _, item := range mappingList {
  51. CategoryChartPermissionIdMap[item.CategoryId] = item.ChartPermissionId
  52. }
  53. yanxMappingList, err := data_manage.CygxArticleTypeMappingList()
  54. if err != nil {
  55. return
  56. }
  57. articleTypeChartPermissionIdMap := make(map[int]int)
  58. for _, item := range yanxMappingList {
  59. articleTypeChartPermissionIdMap[item.ArticleTypeId] = item.YanxPermissionId
  60. }
  61. //深度报告
  62. {
  63. var condition string
  64. var pars []interface{}
  65. condition += ` AND publish_date < ? AND publish_date >= ? `
  66. pars = append(pars, friday, lastfriday)
  67. sdbgList := make([]*data_manage.CygxArticle, 0)
  68. //医药
  69. {
  70. newCondition := condition + ` AND category_id_two IN(65,102)`
  71. list, e := data_manage.GetReportArticleList(newCondition, pars)
  72. if e != nil {
  73. err = e
  74. fmt.Println("GetReportArticleList err:", e)
  75. return
  76. }
  77. for _, article := range list {
  78. sdbgList = append(sdbgList, article)
  79. }
  80. }
  81. //消费
  82. {
  83. newCondition := condition + ` AND category_id_two IN(62,67,1008)`
  84. list, e := data_manage.GetReportArticleList(newCondition, pars)
  85. if e != nil {
  86. err = e
  87. fmt.Println("GetReportArticleList err:", e)
  88. return
  89. }
  90. for _, article := range list {
  91. sdbgList = append(sdbgList, article)
  92. }
  93. }
  94. //科技
  95. {
  96. newCondition := condition + ` AND category_id_two IN(57,69,1009)`
  97. list, e := data_manage.GetReportArticleList(newCondition, pars)
  98. if e != nil {
  99. err = e
  100. fmt.Println("GetReportArticleList err:", e)
  101. return
  102. }
  103. for _, article := range list {
  104. sdbgList = append(sdbgList, article)
  105. }
  106. }
  107. //智造
  108. {
  109. newCondition := condition + ` AND category_id_two IN(66,85)`
  110. list, e := data_manage.GetReportArticleList(newCondition, pars)
  111. if e != nil {
  112. err = e
  113. fmt.Println("GetReportArticleList err:", e)
  114. return
  115. }
  116. for _, article := range list {
  117. sdbgList = append(sdbgList, article)
  118. }
  119. }
  120. var logItems []*data_manage.CygxResearchSummaryLog
  121. for _, article := range sdbgList {
  122. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  123. sliceSubjects := strings.Split(article.Stock, "/")
  124. var company string
  125. if sliceSubjects[0] != "" {
  126. for _, vSubject := range sliceSubjects {
  127. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  128. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  129. subject := sliceXiahuaxian[0]
  130. company += "#" + subject
  131. }
  132. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  133. }
  134. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  135. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  136. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  137. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  138. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  139. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  140. re, _ := regexp.Compile("<strong.*?>")
  141. annotation = re.ReplaceAllString(annotation, "")
  142. reLi, _ := regexp.Compile("<li.*?>")
  143. annotation = reLi.ReplaceAllString(annotation, "")
  144. logItem := data_manage.CygxResearchSummaryLog{
  145. ArticleId: int(articleId),
  146. Type: "SDBG",
  147. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  148. CreateTime: time.Now(),
  149. Body: head + company + annotation,
  150. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  151. LinkArticleId: article.LinkArticleId,
  152. }
  153. logItems = append(logItems, &logItem)
  154. }
  155. if len(logItems) > 0 {
  156. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  157. if e != nil {
  158. err = e
  159. return
  160. }
  161. }
  162. }
  163. //产业调研纪要
  164. {
  165. var condition string
  166. var pars []interface{}
  167. condition += ` AND publish_date < ? AND publish_date >= ? `
  168. pars = append(pars, friday, lastfriday)
  169. cydyjyList := make([]*data_manage.CygxArticle, 0)
  170. //医药
  171. {
  172. newCondition := condition + ` AND category_id_two IN(28,93,301,71)`
  173. list, e := data_manage.GetReportArticleList(newCondition, pars)
  174. if e != nil {
  175. err = e
  176. fmt.Println("GetReportArticleList err:", e)
  177. return
  178. }
  179. for _, article := range list {
  180. cydyjyList = append(cydyjyList, article)
  181. }
  182. }
  183. //消费
  184. {
  185. newCondition := condition + ` AND category_id_two IN(32,58)`
  186. list, e := data_manage.GetReportArticleList(newCondition, pars)
  187. if e != nil {
  188. err = e
  189. fmt.Println("GetReportArticleList err:", e)
  190. return
  191. }
  192. for _, article := range list {
  193. cydyjyList = append(cydyjyList, article)
  194. }
  195. }
  196. //科技
  197. {
  198. newCondition := condition + ` AND category_id_two IN(79)`
  199. list, e := data_manage.GetReportArticleList(newCondition, pars)
  200. if e != nil {
  201. err = e
  202. fmt.Println("GetReportArticleList err:", e)
  203. return
  204. }
  205. for _, article := range list {
  206. cydyjyList = append(cydyjyList, article)
  207. }
  208. }
  209. //智造
  210. {
  211. newCondition := condition + ` AND category_id_two IN(84)`
  212. list, e := data_manage.GetReportArticleList(newCondition, pars)
  213. if e != nil {
  214. err = e
  215. fmt.Println("GetReportArticleList err:", e)
  216. return
  217. }
  218. for _, article := range list {
  219. cydyjyList = append(cydyjyList, article)
  220. }
  221. }
  222. var logItems []*data_manage.CygxResearchSummaryLog
  223. for _, article := range cydyjyList {
  224. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  225. sliceSubjects := strings.Split(article.Stock, "/")
  226. var company string
  227. if sliceSubjects[0] != "" {
  228. for _, vSubject := range sliceSubjects {
  229. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  230. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  231. subject := sliceXiahuaxian[0]
  232. company += "#" + subject
  233. }
  234. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  235. }
  236. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  237. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  238. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  239. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  240. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  241. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  242. re, _ := regexp.Compile("<strong.*?>")
  243. annotation = re.ReplaceAllString(annotation, "")
  244. reLi, _ := regexp.Compile("<li.*?>")
  245. annotation = reLi.ReplaceAllString(annotation, "")
  246. logItem := data_manage.CygxResearchSummaryLog{
  247. ArticleId: int(articleId),
  248. Type: "CYDYJY",
  249. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  250. CreateTime: time.Now(),
  251. Body: head + company + annotation,
  252. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  253. LinkArticleId: article.LinkArticleId,
  254. }
  255. logItems = append(logItems, &logItem)
  256. }
  257. if len(logItems) > 0 {
  258. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  259. if e != nil {
  260. err = e
  261. return
  262. }
  263. }
  264. }
  265. //上市公司调研纪要
  266. {
  267. var condition string
  268. var pars []interface{}
  269. condition += ` AND publish_date < ? AND publish_date >= ? `
  270. pars = append(pars, friday, lastfriday)
  271. ssgsdyjyList := make([]*data_manage.CygxArticle, 0)
  272. //医药
  273. {
  274. newCondition := condition + ` AND category_id_two IN(74,96)`
  275. list, e := data_manage.GetReportArticleList(newCondition, pars)
  276. if e != nil {
  277. err = e
  278. fmt.Println("GetReportArticleList err:", e)
  279. return
  280. }
  281. for _, article := range list {
  282. ssgsdyjyList = append(ssgsdyjyList, article)
  283. }
  284. }
  285. //消费
  286. {
  287. newCondition := condition + ` AND category_id_two IN(88)`
  288. list, e := data_manage.GetReportArticleList(newCondition, pars)
  289. if e != nil {
  290. err = e
  291. fmt.Println("GetReportArticleList err:", e)
  292. return
  293. }
  294. for _, article := range list {
  295. ssgsdyjyList = append(ssgsdyjyList, article)
  296. }
  297. }
  298. //科技
  299. {
  300. newCondition := condition + ` AND category_id_two IN(45)`
  301. list, e := data_manage.GetReportArticleList(newCondition, pars)
  302. if e != nil {
  303. err = e
  304. fmt.Println("GetReportArticleList err:", e)
  305. return
  306. }
  307. for _, article := range list {
  308. ssgsdyjyList = append(ssgsdyjyList, article)
  309. }
  310. }
  311. //智造
  312. {
  313. newCondition := condition + ` AND category_id_two IN(86)`
  314. list, e := data_manage.GetReportArticleList(newCondition, pars)
  315. if e != nil {
  316. err = e
  317. fmt.Println("GetReportArticleList err:", e)
  318. return
  319. }
  320. for _, article := range list {
  321. ssgsdyjyList = append(ssgsdyjyList, article)
  322. }
  323. }
  324. var logItems []*data_manage.CygxResearchSummaryLog
  325. for _, article := range ssgsdyjyList {
  326. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  327. sliceSubjects := strings.Split(article.Stock, "/")
  328. var company string
  329. if sliceSubjects[0] != "" {
  330. for _, vSubject := range sliceSubjects {
  331. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  332. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  333. subject := sliceXiahuaxian[0]
  334. company += "#" + subject
  335. }
  336. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  337. }
  338. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  339. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  340. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  341. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  342. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  343. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  344. re, _ := regexp.Compile("<strong.*?>")
  345. annotation = re.ReplaceAllString(annotation, "")
  346. reLi, _ := regexp.Compile("<li.*?>")
  347. annotation = reLi.ReplaceAllString(annotation, "")
  348. logItem := data_manage.CygxResearchSummaryLog{
  349. ArticleId: int(articleId),
  350. Type: "SSGS",
  351. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  352. CreateTime: time.Now(),
  353. Body: head + company + annotation,
  354. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  355. LinkArticleId: article.LinkArticleId,
  356. }
  357. logItems = append(logItems, &logItem)
  358. }
  359. if len(logItems) > 0 {
  360. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  361. if e != nil {
  362. err = e
  363. return
  364. }
  365. }
  366. }
  367. //买方研选
  368. {
  369. var condition string
  370. var pars []interface{}
  371. condition += ` AND publish_date < ? AND publish_date >= ? `
  372. pars = append(pars, friday, lastfriday)
  373. mfyxList := make([]*data_manage.CygxArticle, 0)
  374. //纪要
  375. {
  376. newCondition := condition + ` AND article_type_id = 1 `
  377. list, e := data_manage.GetReportArticleList(newCondition, pars)
  378. if e != nil {
  379. err = e
  380. fmt.Println("GetReportArticleList err:", e)
  381. return
  382. }
  383. for _, article := range list {
  384. mfyxList = append(mfyxList, article)
  385. }
  386. }
  387. //观点
  388. {
  389. newCondition := condition + ` AND article_type_id = 2 `
  390. list, e := data_manage.GetReportArticleList(newCondition, pars)
  391. if e != nil {
  392. err = e
  393. fmt.Println("GetReportArticleList err:", e)
  394. return
  395. }
  396. for _, article := range list {
  397. mfyxList = append(mfyxList, article)
  398. }
  399. }
  400. //沙龙
  401. {
  402. newCondition := condition + ` AND article_type_id = 13 `
  403. list, e := data_manage.GetReportArticleList(newCondition, pars)
  404. if e != nil {
  405. err = e
  406. fmt.Println("GetReportArticleList err:", e)
  407. return
  408. }
  409. for _, article := range list {
  410. mfyxList = append(mfyxList, article)
  411. }
  412. }
  413. var articleIdStr string
  414. for _, v := range mfyxList {
  415. articleIdStr += strconv.Itoa(v.ArticleId) + ","
  416. }
  417. mapArticleSubject := make(map[int]string)
  418. articleIdStr = strings.TrimRight(articleIdStr, ",")
  419. listSubject, e := data_manage.GetArticleSubjectList(articleIdStr)
  420. if e != nil {
  421. err = e
  422. fmt.Println("GetArticleSubjectList err:", e)
  423. return
  424. }
  425. for _, v := range listSubject {
  426. mapArticleSubject[v.ArticleId] = v.SubjectName
  427. }
  428. var logItems []*data_manage.CygxResearchSummaryLog
  429. for _, article := range mfyxList {
  430. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  431. body := strings.ReplaceAll(article.Body, "<strong>", "")
  432. body = strings.ReplaceAll(body, "</strong>", "")
  433. body = strings.ReplaceAll(body, "</ol>", "</div>")
  434. body = strings.ReplaceAll(body, "<ol>", "<div>")
  435. body = strings.ReplaceAll(body, "</li>", "</p>")
  436. body = strings.ReplaceAll(body, "<li>", "<p>")
  437. re, _ := regexp.Compile("<strong.*?>")
  438. body = re.ReplaceAllString(body, "")
  439. reLi, _ := regexp.Compile("<li.*?>")
  440. body = reLi.ReplaceAllString(body, "")
  441. //研选的公司需要单独处理
  442. //sliceSubjects := strings.Split(article.Stock, "/")
  443. var company string
  444. //if sliceSubjects[0] != "" {
  445. // for _, vSubject := range sliceSubjects {
  446. // sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  447. // sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  448. // subject := sliceXiahuaxian[0]
  449. // company += "#" + subject
  450. // }
  451. // company = " <span style=\"color: #ff1720\">" + company + "</span>"
  452. //}
  453. if mapArticleSubject[article.ArticleId] != ""{
  454. company = " <span style=\"color: #ff1720\">"+"#"+mapArticleSubject[article.ArticleId]+"</span>"
  455. }
  456. var plus int
  457. coreIndex := strings.Index(body, "核心观点:")
  458. plus = 15
  459. if coreIndex == -1 {
  460. coreIndex = strings.Index(body, "核心观点:")
  461. plus = 13
  462. }
  463. if coreIndex == -1 {
  464. coreIndex = strings.Index(body, "核心观点")
  465. plus = 12
  466. }
  467. if coreIndex == -1 {
  468. coreIndex = strings.Index(body, "核心结论:")
  469. plus = 15
  470. }
  471. if coreIndex == -1 {
  472. coreIndex = strings.Index(body, "核心结论:")
  473. plus = 13
  474. }
  475. if coreIndex == -1 {
  476. coreIndex = strings.Index(body, "核心结论")
  477. plus = 12
  478. }
  479. endIndex := strings.Index(body, "<hr")
  480. fmt.Println("ID:",article.ArticleId)
  481. fmt.Println("coreIndex:", coreIndex, endIndex)
  482. if coreIndex != -1 && endIndex != -1 {
  483. body = body[coreIndex+plus : endIndex]
  484. logItem := data_manage.CygxResearchSummaryLog{
  485. ArticleId: int(articleId),
  486. Type: "YANX",
  487. ChartPermissionId: articleTypeChartPermissionIdMap[article.ArticleTypeId],
  488. CreateTime: time.Now(),
  489. Body: head + company + body,
  490. ReportLink: "https://details.hzinsights.com/cygx/report?id=" + article.ArticleIdMd5,
  491. LinkArticleId: article.LinkArticleId,
  492. }
  493. logItems = append(logItems, &logItem)
  494. }
  495. }
  496. if len(logItems) > 0 {
  497. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  498. if e != nil {
  499. err = e
  500. return
  501. }
  502. }
  503. }
  504. return
  505. }
  506. func CygxLastWeekSummary(cont context.Context) (err error) {
  507. defer func() {
  508. if err != nil {
  509. go alarm_msg.SendAlarmMsg("CygxLastWeekSummary-定时生成上周纪要汇总失败, ErrMsg:\n"+err.Error(), 3)
  510. fmt.Println(err)
  511. }
  512. }()
  513. tuesday := utils.GetNowWeekTuesday().Add(8 * time.Hour)
  514. lastTuesday := utils.GetLastWeekTuesday().Add(8 * time.Hour)
  515. lastMonth := int(lastTuesday.Month())
  516. month := int(tuesday.Month())
  517. lastDay := lastTuesday.Day()
  518. day := tuesday.Day()
  519. itemCrs := new(data_manage.CygxMinutesSummary)
  520. itemCrs.AdminId = 11
  521. itemCrs.AdminName = "admin"
  522. itemCrs.Title = fmt.Sprintf("上周纪要汇总(%d月%d日至%d月%d日)", lastMonth, lastDay, month, day)
  523. itemCrs.Department = "弘则产品组"
  524. itemCrs.Abstract = ""
  525. itemCrs.PublishStatus = 0
  526. //itemCrs.Periods = strconv.Itoa(total + 1)
  527. itemCrs.CreateTime = time.Now()
  528. itemCrs.LastUpdatedTime = time.Now()
  529. itemCrs.PublishDate = time.Now()
  530. articleId, e := data_manage.AddCygxMinutesSummaryOrm(itemCrs)
  531. if e != nil {
  532. err = e
  533. return
  534. }
  535. mappingList, err := data_manage.CygxReportMappingist()
  536. if err != nil {
  537. return
  538. }
  539. CategoryChartPermissionIdMap := make(map[int]int)
  540. for _, item := range mappingList {
  541. CategoryChartPermissionIdMap[item.CategoryId] = item.ChartPermissionId
  542. }
  543. yanxMappingList, err := data_manage.CygxArticleTypeMappingList()
  544. if err != nil {
  545. return
  546. }
  547. articleTypeChartPermissionIdMap := make(map[int]int)
  548. for _, item := range yanxMappingList {
  549. articleTypeChartPermissionIdMap[item.ArticleTypeId] = item.YanxPermissionId
  550. }
  551. //产业调研纪要
  552. {
  553. var condition string
  554. var pars []interface{}
  555. condition += ` AND publish_date < ? AND publish_date >= ? `
  556. pars = append(pars, tuesday, lastTuesday)
  557. cydyjyList := make([]*data_manage.CygxArticle, 0)
  558. //医药
  559. {
  560. newCondition := condition + ` AND category_id_two IN(28,93,301,71)`
  561. list, e := data_manage.GetReportArticleList(newCondition, pars)
  562. if e != nil {
  563. err = e
  564. fmt.Println("GetReportArticleList err:", e)
  565. return
  566. }
  567. for _, article := range list {
  568. cydyjyList = append(cydyjyList, article)
  569. }
  570. }
  571. //消费
  572. {
  573. newCondition := condition + ` AND category_id_two IN(32,58)`
  574. list, e := data_manage.GetReportArticleList(newCondition, pars)
  575. if e != nil {
  576. err = e
  577. fmt.Println("GetReportArticleList err:", e)
  578. return
  579. }
  580. for _, article := range list {
  581. cydyjyList = append(cydyjyList, article)
  582. }
  583. }
  584. //科技
  585. {
  586. newCondition := condition + ` AND category_id_two IN(79)`
  587. list, e := data_manage.GetReportArticleList(newCondition, pars)
  588. if e != nil {
  589. err = e
  590. fmt.Println("GetReportArticleList err:", e)
  591. return
  592. }
  593. for _, article := range list {
  594. cydyjyList = append(cydyjyList, article)
  595. }
  596. }
  597. //智造
  598. {
  599. newCondition := condition + ` AND category_id_two IN(84)`
  600. list, e := data_manage.GetReportArticleList(newCondition, pars)
  601. if e != nil {
  602. err = e
  603. fmt.Println("GetReportArticleList err:", e)
  604. return
  605. }
  606. for _, article := range list {
  607. cydyjyList = append(cydyjyList, article)
  608. }
  609. }
  610. var logItems []*data_manage.CygxMinutesSummaryLog
  611. for _, article := range cydyjyList {
  612. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  613. sliceSubjects := strings.Split(article.Stock, "/")
  614. var company string
  615. if sliceSubjects[0] != "" {
  616. for _, vSubject := range sliceSubjects {
  617. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  618. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  619. subject := sliceXiahuaxian[0]
  620. company += "#" + subject
  621. }
  622. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  623. }
  624. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  625. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  626. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  627. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  628. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  629. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  630. re, _ := regexp.Compile("<strong.*?>")
  631. annotation = re.ReplaceAllString(annotation, "")
  632. reLi, _ := regexp.Compile("<li.*?>")
  633. annotation = reLi.ReplaceAllString(annotation, "")
  634. logItem := data_manage.CygxMinutesSummaryLog{
  635. ArticleId: int(articleId),
  636. Type: "CYDYJY",
  637. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  638. CreateTime: time.Now(),
  639. Body: head + company + annotation,
  640. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  641. LinkArticleId: article.LinkArticleId,
  642. }
  643. logItems = append(logItems, &logItem)
  644. }
  645. if len(logItems) > 0 {
  646. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  647. if e != nil {
  648. err = e
  649. return
  650. }
  651. }
  652. }
  653. //上市公司调研纪要
  654. {
  655. var condition string
  656. var pars []interface{}
  657. condition += ` AND publish_date < ? AND publish_date >= ? `
  658. pars = append(pars, tuesday, lastTuesday)
  659. ssgsdyjyList := make([]*data_manage.CygxArticle, 0)
  660. //医药
  661. {
  662. newCondition := condition + ` AND category_id_two IN(74,96)`
  663. list, e := data_manage.GetReportArticleList(newCondition, pars)
  664. if e != nil {
  665. err = e
  666. fmt.Println("GetReportArticleList err:", e)
  667. return
  668. }
  669. for _, article := range list {
  670. ssgsdyjyList = append(ssgsdyjyList, article)
  671. }
  672. }
  673. //消费
  674. {
  675. newCondition := condition + ` AND category_id_two IN(88)`
  676. list, e := data_manage.GetReportArticleList(newCondition, pars)
  677. if e != nil {
  678. err = e
  679. fmt.Println("GetReportArticleList err:", e)
  680. return
  681. }
  682. for _, article := range list {
  683. ssgsdyjyList = append(ssgsdyjyList, article)
  684. }
  685. }
  686. //科技
  687. {
  688. newCondition := condition + ` AND category_id_two IN(45)`
  689. list, e := data_manage.GetReportArticleList(newCondition, pars)
  690. if e != nil {
  691. err = e
  692. fmt.Println("GetReportArticleList err:", e)
  693. return
  694. }
  695. for _, article := range list {
  696. ssgsdyjyList = append(ssgsdyjyList, article)
  697. }
  698. }
  699. //智造
  700. {
  701. newCondition := condition + ` AND category_id_two IN(86)`
  702. list, e := data_manage.GetReportArticleList(newCondition, pars)
  703. if e != nil {
  704. err = e
  705. fmt.Println("GetReportArticleList err:", e)
  706. return
  707. }
  708. for _, article := range list {
  709. ssgsdyjyList = append(ssgsdyjyList, article)
  710. }
  711. }
  712. var logItems []*data_manage.CygxMinutesSummaryLog
  713. for _, article := range ssgsdyjyList {
  714. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  715. sliceSubjects := strings.Split(article.Stock, "/")
  716. var company string
  717. if sliceSubjects[0] != "" {
  718. for _, vSubject := range sliceSubjects {
  719. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  720. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  721. subject := sliceXiahuaxian[0]
  722. company += "#" + subject
  723. }
  724. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  725. }
  726. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  727. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  728. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  729. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  730. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  731. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  732. re, _ := regexp.Compile("<strong.*?>")
  733. annotation = re.ReplaceAllString(annotation, "")
  734. reLi, _ := regexp.Compile("<li.*?>")
  735. annotation = reLi.ReplaceAllString(annotation, "")
  736. logItem := data_manage.CygxMinutesSummaryLog{
  737. ArticleId: int(articleId),
  738. Type: "SSGS",
  739. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  740. CreateTime: time.Now(),
  741. Body: head + company + annotation,
  742. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  743. LinkArticleId: article.LinkArticleId,
  744. }
  745. logItems = append(logItems, &logItem)
  746. }
  747. if len(logItems) > 0 {
  748. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  749. if e != nil {
  750. err = e
  751. return
  752. }
  753. }
  754. }
  755. //买方研选
  756. {
  757. var condition string
  758. var pars []interface{}
  759. condition += ` AND publish_date < ? AND publish_date >= ? `
  760. pars = append(pars, tuesday, lastTuesday)
  761. mfyxList := make([]*data_manage.CygxArticle, 0)
  762. //纪要
  763. {
  764. newCondition := condition + ` AND article_type_id = 1 `
  765. list, e := data_manage.GetReportArticleList(newCondition, pars)
  766. if e != nil {
  767. err = e
  768. fmt.Println("GetReportArticleList err:", e)
  769. return
  770. }
  771. for _, article := range list {
  772. mfyxList = append(mfyxList, article)
  773. }
  774. }
  775. ////观点
  776. //{
  777. // newCondition := condition + ` AND article_type_id = 2 `
  778. // list ,e := data_manage.GetReportArticleList(newCondition, pars)
  779. // if e != nil {
  780. // err = e
  781. // fmt.Println("GetReportArticleList err:", e)
  782. // return
  783. // }
  784. // for _, article := range list {
  785. // mfyxList = append(mfyxList, article)
  786. // }
  787. //}
  788. ////沙龙
  789. //{
  790. // newCondition := condition + ` AND article_type_id = 13 `
  791. // list ,e := data_manage.GetReportArticleList(newCondition, pars)
  792. // if e != nil {
  793. // err = e
  794. // fmt.Println("GetReportArticleList err:", e)
  795. // return
  796. // }
  797. // for _, article := range list {
  798. // mfyxList = append(mfyxList, article)
  799. // }
  800. //}
  801. fmt.Println("mfyxList:", len(mfyxList))
  802. var articleIdStr string
  803. for _, v := range mfyxList {
  804. articleIdStr += strconv.Itoa(v.ArticleId) + ","
  805. }
  806. mapArticleSubject := make(map[int]string)
  807. articleIdStr = strings.TrimRight(articleIdStr, ",")
  808. listSubject, e := data_manage.GetArticleSubjectList(articleIdStr)
  809. if e != nil {
  810. err = e
  811. fmt.Println("GetArticleSubjectList err:", e)
  812. return
  813. }
  814. for _, v := range listSubject {
  815. mapArticleSubject[v.ArticleId] = v.SubjectName
  816. }
  817. var logItems []*data_manage.CygxMinutesSummaryLog
  818. for _, article := range mfyxList {
  819. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  820. body := strings.ReplaceAll(article.Body, "<strong>", "")
  821. body = strings.ReplaceAll(body, "</strong>", "")
  822. body = strings.ReplaceAll(body, "</ol>", "</div>")
  823. body = strings.ReplaceAll(body, "<ol>", "<div>")
  824. body = strings.ReplaceAll(body, "</li>", "</p>")
  825. body = strings.ReplaceAll(body, "<li>", "<p>")
  826. re, _ := regexp.Compile("<strong.*?>")
  827. body = re.ReplaceAllString(body, "")
  828. reLi, _ := regexp.Compile("<li.*?>")
  829. body = reLi.ReplaceAllString(body, "")
  830. //研选的公司需要单独处理
  831. //sliceSubjects := strings.Split(article.Stock, "/")
  832. var company string
  833. //if sliceSubjects[0] != "" {
  834. // for _, vSubject := range sliceSubjects {
  835. // sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  836. // sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  837. // subject := sliceXiahuaxian[0]
  838. // company += "#" + subject
  839. // }
  840. // company = " <span style=\"color: #ff1720\">" + company + "</span>"
  841. //}
  842. if mapArticleSubject[article.ArticleId] != ""{
  843. company = " <span style=\"color: #ff1720\">"+"#"+mapArticleSubject[article.ArticleId]+"</span>"
  844. }
  845. var plus int
  846. coreIndex := strings.Index(body, "核心观点:")
  847. plus = 15
  848. if coreIndex == -1 {
  849. coreIndex = strings.Index(body, "核心观点:")
  850. plus = 13
  851. }
  852. if coreIndex == -1 {
  853. coreIndex = strings.Index(body, "核心观点")
  854. plus = 12
  855. }
  856. if coreIndex == -1 {
  857. coreIndex = strings.Index(body, "核心结论:")
  858. plus = 15
  859. }
  860. if coreIndex == -1 {
  861. coreIndex = strings.Index(body, "核心结论:")
  862. plus = 13
  863. }
  864. if coreIndex == -1 {
  865. coreIndex = strings.Index(body, "核心结论")
  866. plus = 12
  867. }
  868. endIndex := strings.Index(body, "<hr")
  869. if coreIndex != -1 && endIndex != -1 {
  870. body = body[coreIndex+plus:endIndex]
  871. logItem := data_manage.CygxMinutesSummaryLog{
  872. ArticleId: int(articleId),
  873. Type: "YANX",
  874. ChartPermissionId: articleTypeChartPermissionIdMap[article.ArticleTypeId],
  875. CreateTime: time.Now(),
  876. Body: head + company + body,
  877. ReportLink: "https://details.hzinsights.com/cygx/report?id=" + article.ArticleIdMd5,
  878. LinkArticleId: article.LinkArticleId,
  879. }
  880. logItems = append(logItems, &logItem)
  881. }
  882. }
  883. if len(logItems) > 0 {
  884. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  885. if e != nil {
  886. err = e
  887. return
  888. }
  889. }
  890. }
  891. return
  892. }