cygx_research_summary.go 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858
  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.GetNowWeekThursday().Add(9 * time.Hour)
  22. lastfriday := utils.GetLastWeekThursday().Add(9 * 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<strong> 【" + article.Title + "】</strong>\n "
  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. re, _ := regexp.Compile("<strong.*?>")
  137. annotation = re.ReplaceAllString(annotation, "")
  138. logItem := data_manage.CygxResearchSummaryLog{
  139. ArticleId: int(articleId),
  140. Type: "SDBG",
  141. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  142. CreateTime: time.Now(),
  143. Body: head + company + annotation,
  144. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  145. LinkArticleId: article.LinkArticleId,
  146. }
  147. logItems = append(logItems, &logItem)
  148. }
  149. if len(logItems) > 0 {
  150. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  151. if e != nil {
  152. err = e
  153. return
  154. }
  155. }
  156. }
  157. //产业调研纪要
  158. {
  159. var condition string
  160. var pars []interface{}
  161. condition += ` AND publish_date < ? AND publish_date >= ? `
  162. pars = append(pars, friday, lastfriday)
  163. cydyjyList := make([]*data_manage.CygxArticle, 0)
  164. //医药
  165. {
  166. newCondition := condition + ` AND category_id_two IN(28,93,301,71)`
  167. list, e := data_manage.GetReportArticleList(newCondition, pars)
  168. if e != nil {
  169. err = e
  170. fmt.Println("GetReportArticleList err:", e)
  171. return
  172. }
  173. for _, article := range list {
  174. cydyjyList = append(cydyjyList, article)
  175. }
  176. }
  177. //消费
  178. {
  179. newCondition := condition + ` AND category_id_two IN(32,58)`
  180. list, e := data_manage.GetReportArticleList(newCondition, pars)
  181. if e != nil {
  182. err = e
  183. fmt.Println("GetReportArticleList err:", e)
  184. return
  185. }
  186. for _, article := range list {
  187. cydyjyList = append(cydyjyList, article)
  188. }
  189. }
  190. //科技
  191. {
  192. newCondition := condition + ` AND category_id_two IN(79)`
  193. list, e := data_manage.GetReportArticleList(newCondition, pars)
  194. if e != nil {
  195. err = e
  196. fmt.Println("GetReportArticleList err:", e)
  197. return
  198. }
  199. for _, article := range list {
  200. cydyjyList = append(cydyjyList, article)
  201. }
  202. }
  203. //智造
  204. {
  205. newCondition := condition + ` AND category_id_two IN(84)`
  206. list, e := data_manage.GetReportArticleList(newCondition, pars)
  207. if e != nil {
  208. err = e
  209. fmt.Println("GetReportArticleList err:", e)
  210. return
  211. }
  212. for _, article := range list {
  213. cydyjyList = append(cydyjyList, article)
  214. }
  215. }
  216. var logItems []*data_manage.CygxResearchSummaryLog
  217. for _, article := range cydyjyList {
  218. head := "<div class=\"title-content\">\n<strong> 【" + article.Title + "】</strong>\n "
  219. sliceSubjects := strings.Split(article.Stock, "/")
  220. var company string
  221. if sliceSubjects[0] != "" {
  222. for _, vSubject := range sliceSubjects {
  223. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  224. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  225. subject := sliceXiahuaxian[0]
  226. company += "#" + subject
  227. }
  228. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  229. }
  230. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  231. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  232. re, _ := regexp.Compile("<strong.*?>")
  233. annotation = re.ReplaceAllString(annotation, "")
  234. logItem := data_manage.CygxResearchSummaryLog{
  235. ArticleId: int(articleId),
  236. Type: "CYDYJY",
  237. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  238. CreateTime: time.Now(),
  239. Body: head + company + annotation,
  240. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  241. LinkArticleId: article.LinkArticleId,
  242. }
  243. logItems = append(logItems, &logItem)
  244. }
  245. if len(logItems) > 0 {
  246. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  247. if e != nil {
  248. err = e
  249. return
  250. }
  251. }
  252. }
  253. //上市公司调研纪要
  254. {
  255. var condition string
  256. var pars []interface{}
  257. condition += ` AND publish_date < ? AND publish_date >= ? `
  258. pars = append(pars, friday, lastfriday)
  259. ssgsdyjyList := make([]*data_manage.CygxArticle, 0)
  260. //医药
  261. {
  262. newCondition := condition + ` AND category_id_two IN(74,96)`
  263. list, e := data_manage.GetReportArticleList(newCondition, pars)
  264. if e != nil {
  265. err = e
  266. fmt.Println("GetReportArticleList err:", e)
  267. return
  268. }
  269. for _, article := range list {
  270. ssgsdyjyList = append(ssgsdyjyList, article)
  271. }
  272. }
  273. //消费
  274. {
  275. newCondition := condition + ` AND category_id_two IN(88)`
  276. list, e := data_manage.GetReportArticleList(newCondition, pars)
  277. if e != nil {
  278. err = e
  279. fmt.Println("GetReportArticleList err:", e)
  280. return
  281. }
  282. for _, article := range list {
  283. ssgsdyjyList = append(ssgsdyjyList, article)
  284. }
  285. }
  286. //科技
  287. {
  288. newCondition := condition + ` AND category_id_two IN(45)`
  289. list, e := data_manage.GetReportArticleList(newCondition, pars)
  290. if e != nil {
  291. err = e
  292. fmt.Println("GetReportArticleList err:", e)
  293. return
  294. }
  295. for _, article := range list {
  296. ssgsdyjyList = append(ssgsdyjyList, article)
  297. }
  298. }
  299. //智造
  300. {
  301. newCondition := condition + ` AND category_id_two IN(86)`
  302. list, e := data_manage.GetReportArticleList(newCondition, pars)
  303. if e != nil {
  304. err = e
  305. fmt.Println("GetReportArticleList err:", e)
  306. return
  307. }
  308. for _, article := range list {
  309. ssgsdyjyList = append(ssgsdyjyList, article)
  310. }
  311. }
  312. var logItems []*data_manage.CygxResearchSummaryLog
  313. for _, article := range ssgsdyjyList {
  314. head := "<div class=\"title-content\">\n<strong> 【" + article.Title + "】</strong>\n "
  315. sliceSubjects := strings.Split(article.Stock, "/")
  316. var company string
  317. if sliceSubjects[0] != "" {
  318. for _, vSubject := range sliceSubjects {
  319. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  320. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  321. subject := sliceXiahuaxian[0]
  322. company += "#" + subject
  323. }
  324. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  325. }
  326. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  327. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  328. re, _ := regexp.Compile("<strong.*?>")
  329. annotation = re.ReplaceAllString(annotation, "")
  330. logItem := data_manage.CygxResearchSummaryLog{
  331. ArticleId: int(articleId),
  332. Type: "SSGS",
  333. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  334. CreateTime: time.Now(),
  335. Body: head + company + annotation,
  336. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  337. LinkArticleId: article.LinkArticleId,
  338. }
  339. logItems = append(logItems, &logItem)
  340. }
  341. if len(logItems) > 0 {
  342. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  343. if e != nil {
  344. err = e
  345. return
  346. }
  347. }
  348. }
  349. //买方研选
  350. {
  351. var condition string
  352. var pars []interface{}
  353. condition += ` AND publish_date < ? AND publish_date >= ? `
  354. pars = append(pars, friday, lastfriday)
  355. mfyxList := make([]*data_manage.CygxArticle, 0)
  356. //纪要
  357. {
  358. newCondition := condition + ` AND article_type_id = 1 `
  359. list, e := data_manage.GetReportArticleList(newCondition, pars)
  360. if e != nil {
  361. err = e
  362. fmt.Println("GetReportArticleList err:", e)
  363. return
  364. }
  365. for _, article := range list {
  366. mfyxList = append(mfyxList, article)
  367. }
  368. }
  369. //观点
  370. {
  371. newCondition := condition + ` AND article_type_id = 2 `
  372. list, e := data_manage.GetReportArticleList(newCondition, pars)
  373. if e != nil {
  374. err = e
  375. fmt.Println("GetReportArticleList err:", e)
  376. return
  377. }
  378. for _, article := range list {
  379. mfyxList = append(mfyxList, article)
  380. }
  381. }
  382. //沙龙
  383. {
  384. newCondition := condition + ` AND article_type_id = 13 `
  385. list, e := data_manage.GetReportArticleList(newCondition, pars)
  386. if e != nil {
  387. err = e
  388. fmt.Println("GetReportArticleList err:", e)
  389. return
  390. }
  391. for _, article := range list {
  392. mfyxList = append(mfyxList, article)
  393. }
  394. }
  395. fmt.Println("mfyxList:", len(mfyxList))
  396. var logItems []*data_manage.CygxResearchSummaryLog
  397. for _, article := range mfyxList {
  398. head := "<div class=\"title-content\">\n<strong> 【" + article.Title + "】</strong>\n "
  399. body := strings.ReplaceAll(article.Body, "<strong>", "")
  400. body = strings.ReplaceAll(body, "</strong>", "")
  401. re, _ := regexp.Compile("<strong.*?>")
  402. body = re.ReplaceAllString(body, "")
  403. sliceSubjects := strings.Split(article.Stock, "/")
  404. var company string
  405. if sliceSubjects[0] != "" {
  406. for _, vSubject := range sliceSubjects {
  407. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  408. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  409. subject := sliceXiahuaxian[0]
  410. company += "#" + subject
  411. }
  412. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  413. }
  414. var plus int
  415. coreIndex := strings.Index(body, "核心观点:")
  416. plus = 15
  417. if coreIndex == -1 {
  418. coreIndex = strings.Index(body, "核心观点:")
  419. plus = 13
  420. }
  421. if coreIndex == -1 {
  422. coreIndex = strings.Index(body, "核心观点")
  423. plus = 12
  424. }
  425. if coreIndex == -1 {
  426. coreIndex = strings.Index(body, "核心结论:")
  427. plus = 15
  428. }
  429. if coreIndex == -1 {
  430. coreIndex = strings.Index(body, "核心结论:")
  431. plus = 13
  432. }
  433. if coreIndex == -1 {
  434. coreIndex = strings.Index(body, "核心结论")
  435. plus = 12
  436. }
  437. endIndex := strings.Index(body, "<hr")
  438. fmt.Println("ID:",article.ArticleId)
  439. fmt.Println("coreIndex:", coreIndex, endIndex)
  440. if coreIndex != -1 && endIndex != -1 {
  441. body = body[coreIndex+plus : endIndex]
  442. logItem := data_manage.CygxResearchSummaryLog{
  443. ArticleId: int(articleId),
  444. Type: "YANX",
  445. ChartPermissionId: articleTypeChartPermissionIdMap[article.ArticleTypeId],
  446. CreateTime: time.Now(),
  447. Body: head + company + body,
  448. ReportLink: "https://details.hzinsights.com/cygx/report?id=" + article.ArticleIdMd5,
  449. LinkArticleId: article.LinkArticleId,
  450. }
  451. logItems = append(logItems, &logItem)
  452. }
  453. }
  454. if len(logItems) > 0 {
  455. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  456. if e != nil {
  457. err = e
  458. return
  459. }
  460. }
  461. }
  462. return
  463. }
  464. func CygxLastWeekSummary(cont context.Context) (err error) {
  465. defer func() {
  466. if err != nil {
  467. go alarm_msg.SendAlarmMsg("CygxLastWeekSummary-定时生成上周纪要汇总失败, ErrMsg:\n"+err.Error(), 3)
  468. fmt.Println(err)
  469. }
  470. }()
  471. tuesday := utils.GetNowWeekThursday().Add(8 * time.Hour)
  472. lastTuesday := utils.GetLastWeekThursday().Add(8 * time.Hour)
  473. lastMonth := int(lastTuesday.Month())
  474. month := int(tuesday.Month())
  475. lastDay := lastTuesday.Day()
  476. day := tuesday.Day()
  477. itemCrs := new(data_manage.CygxMinutesSummary)
  478. itemCrs.AdminId = 11
  479. itemCrs.AdminName = "admin"
  480. itemCrs.Title = fmt.Sprintf("上周纪要汇总(%d月%d日至%d月%d日)", lastMonth, lastDay, month, day)
  481. itemCrs.Department = "弘则产品组"
  482. itemCrs.Abstract = ""
  483. itemCrs.PublishStatus = 0
  484. //itemCrs.Periods = strconv.Itoa(total + 1)
  485. itemCrs.CreateTime = time.Now()
  486. itemCrs.LastUpdatedTime = time.Now()
  487. itemCrs.PublishDate = time.Now()
  488. articleId, e := data_manage.AddCygxMinutesSummaryOrm(itemCrs)
  489. if e != nil {
  490. err = e
  491. return
  492. }
  493. mappingList, err := data_manage.CygxReportMappingist()
  494. if err != nil {
  495. return
  496. }
  497. CategoryChartPermissionIdMap := make(map[int]int)
  498. for _, item := range mappingList {
  499. CategoryChartPermissionIdMap[item.CategoryId] = item.ChartPermissionId
  500. }
  501. yanxMappingList, err := data_manage.CygxArticleTypeMappingList()
  502. if err != nil {
  503. return
  504. }
  505. articleTypeChartPermissionIdMap := make(map[int]int)
  506. for _, item := range yanxMappingList {
  507. articleTypeChartPermissionIdMap[item.ArticleTypeId] = item.YanxPermissionId
  508. }
  509. //产业调研纪要
  510. {
  511. var condition string
  512. var pars []interface{}
  513. condition += ` AND publish_date < ? AND publish_date >= ? `
  514. pars = append(pars, tuesday, lastTuesday)
  515. cydyjyList := make([]*data_manage.CygxArticle, 0)
  516. //医药
  517. {
  518. newCondition := condition + ` AND category_id_two IN(28,93,301,71)`
  519. list, e := data_manage.GetReportArticleList(newCondition, pars)
  520. if e != nil {
  521. err = e
  522. fmt.Println("GetReportArticleList err:", e)
  523. return
  524. }
  525. for _, article := range list {
  526. cydyjyList = append(cydyjyList, article)
  527. }
  528. }
  529. //消费
  530. {
  531. newCondition := condition + ` AND category_id_two IN(32,58)`
  532. list, e := data_manage.GetReportArticleList(newCondition, pars)
  533. if e != nil {
  534. err = e
  535. fmt.Println("GetReportArticleList err:", e)
  536. return
  537. }
  538. for _, article := range list {
  539. cydyjyList = append(cydyjyList, article)
  540. }
  541. }
  542. //科技
  543. {
  544. newCondition := condition + ` AND category_id_two IN(79)`
  545. list, e := data_manage.GetReportArticleList(newCondition, pars)
  546. if e != nil {
  547. err = e
  548. fmt.Println("GetReportArticleList err:", e)
  549. return
  550. }
  551. for _, article := range list {
  552. cydyjyList = append(cydyjyList, article)
  553. }
  554. }
  555. //智造
  556. {
  557. newCondition := condition + ` AND category_id_two IN(84)`
  558. list, e := data_manage.GetReportArticleList(newCondition, pars)
  559. if e != nil {
  560. err = e
  561. fmt.Println("GetReportArticleList err:", e)
  562. return
  563. }
  564. for _, article := range list {
  565. cydyjyList = append(cydyjyList, article)
  566. }
  567. }
  568. var logItems []*data_manage.CygxMinutesSummaryLog
  569. for _, article := range cydyjyList {
  570. head := "<div class=\"title-content\">\n<strong> 【" + article.Title + "】</strong>\n "
  571. sliceSubjects := strings.Split(article.Stock, "/")
  572. var company string
  573. if sliceSubjects[0] != "" {
  574. for _, vSubject := range sliceSubjects {
  575. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  576. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  577. subject := sliceXiahuaxian[0]
  578. company += "#" + subject
  579. }
  580. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  581. }
  582. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  583. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  584. re, _ := regexp.Compile("<strong.*?>")
  585. annotation = re.ReplaceAllString(annotation, "")
  586. logItem := data_manage.CygxMinutesSummaryLog{
  587. ArticleId: int(articleId),
  588. Type: "CYDYJY",
  589. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  590. CreateTime: time.Now(),
  591. Body: head + company + annotation,
  592. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  593. LinkArticleId: article.LinkArticleId,
  594. }
  595. logItems = append(logItems, &logItem)
  596. }
  597. if len(logItems) > 0 {
  598. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  599. if e != nil {
  600. err = e
  601. return
  602. }
  603. }
  604. }
  605. //上市公司调研纪要
  606. {
  607. var condition string
  608. var pars []interface{}
  609. condition += ` AND publish_date < ? AND publish_date >= ? `
  610. pars = append(pars, tuesday, lastTuesday)
  611. ssgsdyjyList := make([]*data_manage.CygxArticle, 0)
  612. //医药
  613. {
  614. newCondition := condition + ` AND category_id_two IN(74,96)`
  615. list, e := data_manage.GetReportArticleList(newCondition, pars)
  616. if e != nil {
  617. err = e
  618. fmt.Println("GetReportArticleList err:", e)
  619. return
  620. }
  621. for _, article := range list {
  622. ssgsdyjyList = append(ssgsdyjyList, article)
  623. }
  624. }
  625. //消费
  626. {
  627. newCondition := condition + ` AND category_id_two IN(88)`
  628. list, e := data_manage.GetReportArticleList(newCondition, pars)
  629. if e != nil {
  630. err = e
  631. fmt.Println("GetReportArticleList err:", e)
  632. return
  633. }
  634. for _, article := range list {
  635. ssgsdyjyList = append(ssgsdyjyList, article)
  636. }
  637. }
  638. //科技
  639. {
  640. newCondition := condition + ` AND category_id_two IN(45)`
  641. list, e := data_manage.GetReportArticleList(newCondition, pars)
  642. if e != nil {
  643. err = e
  644. fmt.Println("GetReportArticleList err:", e)
  645. return
  646. }
  647. for _, article := range list {
  648. ssgsdyjyList = append(ssgsdyjyList, article)
  649. }
  650. }
  651. //智造
  652. {
  653. newCondition := condition + ` AND category_id_two IN(86)`
  654. list, e := data_manage.GetReportArticleList(newCondition, pars)
  655. if e != nil {
  656. err = e
  657. fmt.Println("GetReportArticleList err:", e)
  658. return
  659. }
  660. for _, article := range list {
  661. ssgsdyjyList = append(ssgsdyjyList, article)
  662. }
  663. }
  664. var logItems []*data_manage.CygxMinutesSummaryLog
  665. for _, article := range ssgsdyjyList {
  666. head := "<div class=\"title-content\">\n<strong> 【" + article.Title + "】</strong>\n "
  667. sliceSubjects := strings.Split(article.Stock, "/")
  668. var company string
  669. if sliceSubjects[0] != "" {
  670. for _, vSubject := range sliceSubjects {
  671. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  672. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  673. subject := sliceXiahuaxian[0]
  674. company += "#" + subject
  675. }
  676. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  677. }
  678. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  679. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  680. re, _ := regexp.Compile("<strong.*?>")
  681. annotation = re.ReplaceAllString(annotation, "")
  682. logItem := data_manage.CygxMinutesSummaryLog{
  683. ArticleId: int(articleId),
  684. Type: "SSGS",
  685. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  686. CreateTime: time.Now(),
  687. Body: head + company + annotation,
  688. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  689. LinkArticleId: article.LinkArticleId,
  690. }
  691. logItems = append(logItems, &logItem)
  692. }
  693. if len(logItems) > 0 {
  694. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  695. if e != nil {
  696. err = e
  697. return
  698. }
  699. }
  700. }
  701. //买方研选
  702. {
  703. var condition string
  704. var pars []interface{}
  705. condition += ` AND publish_date < ? AND publish_date >= ? `
  706. pars = append(pars, tuesday, lastTuesday)
  707. mfyxList := make([]*data_manage.CygxArticle, 0)
  708. //纪要
  709. {
  710. newCondition := condition + ` AND article_type_id = 1 `
  711. list, e := data_manage.GetReportArticleList(newCondition, pars)
  712. if e != nil {
  713. err = e
  714. fmt.Println("GetReportArticleList err:", e)
  715. return
  716. }
  717. for _, article := range list {
  718. mfyxList = append(mfyxList, article)
  719. }
  720. }
  721. ////观点
  722. //{
  723. // newCondition := condition + ` AND article_type_id = 2 `
  724. // list ,e := data_manage.GetReportArticleList(newCondition, pars)
  725. // if e != nil {
  726. // err = e
  727. // fmt.Println("GetReportArticleList err:", e)
  728. // return
  729. // }
  730. // for _, article := range list {
  731. // mfyxList = append(mfyxList, article)
  732. // }
  733. //}
  734. ////沙龙
  735. //{
  736. // newCondition := condition + ` AND article_type_id = 13 `
  737. // list ,e := data_manage.GetReportArticleList(newCondition, pars)
  738. // if e != nil {
  739. // err = e
  740. // fmt.Println("GetReportArticleList err:", e)
  741. // return
  742. // }
  743. // for _, article := range list {
  744. // mfyxList = append(mfyxList, article)
  745. // }
  746. //}
  747. fmt.Println("mfyxList:", len(mfyxList))
  748. var logItems []*data_manage.CygxMinutesSummaryLog
  749. for _, article := range mfyxList {
  750. head := "<div class=\"title-content\">\n<strong> 【" + article.Title + "】</strong>\n "
  751. body := strings.ReplaceAll(article.Body, "<strong>", "")
  752. body = strings.ReplaceAll(body, "</strong>", "")
  753. re, _ := regexp.Compile("<strong.*?>")
  754. body = re.ReplaceAllString(body, "")
  755. sliceSubjects := strings.Split(article.Stock, "/")
  756. var company string
  757. if sliceSubjects[0] != "" {
  758. for _, vSubject := range sliceSubjects {
  759. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  760. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  761. subject := sliceXiahuaxian[0]
  762. company += "#" + subject
  763. }
  764. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  765. }
  766. var plus int
  767. coreIndex := strings.Index(body, "核心观点:")
  768. plus = 15
  769. if coreIndex == -1 {
  770. coreIndex = strings.Index(body, "核心观点:")
  771. plus = 13
  772. }
  773. if coreIndex == -1 {
  774. coreIndex = strings.Index(body, "核心观点")
  775. plus = 12
  776. }
  777. if coreIndex == -1 {
  778. coreIndex = strings.Index(body, "核心结论:")
  779. plus = 15
  780. }
  781. if coreIndex == -1 {
  782. coreIndex = strings.Index(body, "核心结论:")
  783. plus = 13
  784. }
  785. if coreIndex == -1 {
  786. coreIndex = strings.Index(body, "核心结论")
  787. plus = 12
  788. }
  789. endIndex := strings.Index(body, "<hr")
  790. if coreIndex != -1 && endIndex != -1 {
  791. body = body[coreIndex+plus:endIndex]
  792. logItem := data_manage.CygxMinutesSummaryLog{
  793. ArticleId: int(articleId),
  794. Type: "YANX",
  795. ChartPermissionId: articleTypeChartPermissionIdMap[article.ArticleTypeId],
  796. CreateTime: time.Now(),
  797. Body: head + company + body,
  798. ReportLink: "https://details.hzinsights.com/cygx/report?id=" + article.ArticleIdMd5,
  799. LinkArticleId: article.LinkArticleId,
  800. }
  801. logItems = append(logItems, &logItem)
  802. }
  803. }
  804. if len(logItems) > 0 {
  805. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  806. if e != nil {
  807. err = e
  808. return
  809. }
  810. }
  811. }
  812. return
  813. }