cygx_research_summary.go 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934
  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. logItem := data_manage.CygxResearchSummaryLog{
  143. ArticleId: int(articleId),
  144. Type: "SDBG",
  145. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  146. CreateTime: time.Now(),
  147. Body: head + company + annotation,
  148. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  149. LinkArticleId: article.LinkArticleId,
  150. }
  151. logItems = append(logItems, &logItem)
  152. }
  153. if len(logItems) > 0 {
  154. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  155. if e != nil {
  156. err = e
  157. return
  158. }
  159. }
  160. }
  161. //产业调研纪要
  162. {
  163. var condition string
  164. var pars []interface{}
  165. condition += ` AND publish_date < ? AND publish_date >= ? `
  166. pars = append(pars, friday, lastfriday)
  167. cydyjyList := make([]*data_manage.CygxArticle, 0)
  168. //医药
  169. {
  170. newCondition := condition + ` AND category_id_two IN(28,93,301,71)`
  171. list, e := data_manage.GetReportArticleList(newCondition, pars)
  172. if e != nil {
  173. err = e
  174. fmt.Println("GetReportArticleList err:", e)
  175. return
  176. }
  177. for _, article := range list {
  178. cydyjyList = append(cydyjyList, article)
  179. }
  180. }
  181. //消费
  182. {
  183. newCondition := condition + ` AND category_id_two IN(32,58)`
  184. list, e := data_manage.GetReportArticleList(newCondition, pars)
  185. if e != nil {
  186. err = e
  187. fmt.Println("GetReportArticleList err:", e)
  188. return
  189. }
  190. for _, article := range list {
  191. cydyjyList = append(cydyjyList, article)
  192. }
  193. }
  194. //科技
  195. {
  196. newCondition := condition + ` AND category_id_two IN(79)`
  197. list, e := data_manage.GetReportArticleList(newCondition, pars)
  198. if e != nil {
  199. err = e
  200. fmt.Println("GetReportArticleList err:", e)
  201. return
  202. }
  203. for _, article := range list {
  204. cydyjyList = append(cydyjyList, article)
  205. }
  206. }
  207. //智造
  208. {
  209. newCondition := condition + ` AND category_id_two IN(84)`
  210. list, e := data_manage.GetReportArticleList(newCondition, pars)
  211. if e != nil {
  212. err = e
  213. fmt.Println("GetReportArticleList err:", e)
  214. return
  215. }
  216. for _, article := range list {
  217. cydyjyList = append(cydyjyList, article)
  218. }
  219. }
  220. var logItems []*data_manage.CygxResearchSummaryLog
  221. for _, article := range cydyjyList {
  222. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  223. sliceSubjects := strings.Split(article.Stock, "/")
  224. var company string
  225. if sliceSubjects[0] != "" {
  226. for _, vSubject := range sliceSubjects {
  227. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  228. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  229. subject := sliceXiahuaxian[0]
  230. company += "#" + subject
  231. }
  232. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  233. }
  234. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  235. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  236. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  237. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  238. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  239. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  240. re, _ := regexp.Compile("<strong.*?>")
  241. annotation = re.ReplaceAllString(annotation, "")
  242. logItem := data_manage.CygxResearchSummaryLog{
  243. ArticleId: int(articleId),
  244. Type: "CYDYJY",
  245. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  246. CreateTime: time.Now(),
  247. Body: head + company + annotation,
  248. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  249. LinkArticleId: article.LinkArticleId,
  250. }
  251. logItems = append(logItems, &logItem)
  252. }
  253. if len(logItems) > 0 {
  254. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  255. if e != nil {
  256. err = e
  257. return
  258. }
  259. }
  260. }
  261. //上市公司调研纪要
  262. {
  263. var condition string
  264. var pars []interface{}
  265. condition += ` AND publish_date < ? AND publish_date >= ? `
  266. pars = append(pars, friday, lastfriday)
  267. ssgsdyjyList := make([]*data_manage.CygxArticle, 0)
  268. //医药
  269. {
  270. newCondition := condition + ` AND category_id_two IN(74,96)`
  271. list, e := data_manage.GetReportArticleList(newCondition, pars)
  272. if e != nil {
  273. err = e
  274. fmt.Println("GetReportArticleList err:", e)
  275. return
  276. }
  277. for _, article := range list {
  278. ssgsdyjyList = append(ssgsdyjyList, article)
  279. }
  280. }
  281. //消费
  282. {
  283. newCondition := condition + ` AND category_id_two IN(88)`
  284. list, e := data_manage.GetReportArticleList(newCondition, pars)
  285. if e != nil {
  286. err = e
  287. fmt.Println("GetReportArticleList err:", e)
  288. return
  289. }
  290. for _, article := range list {
  291. ssgsdyjyList = append(ssgsdyjyList, article)
  292. }
  293. }
  294. //科技
  295. {
  296. newCondition := condition + ` AND category_id_two IN(45)`
  297. list, e := data_manage.GetReportArticleList(newCondition, pars)
  298. if e != nil {
  299. err = e
  300. fmt.Println("GetReportArticleList err:", e)
  301. return
  302. }
  303. for _, article := range list {
  304. ssgsdyjyList = append(ssgsdyjyList, article)
  305. }
  306. }
  307. //智造
  308. {
  309. newCondition := condition + ` AND category_id_two IN(86)`
  310. list, e := data_manage.GetReportArticleList(newCondition, pars)
  311. if e != nil {
  312. err = e
  313. fmt.Println("GetReportArticleList err:", e)
  314. return
  315. }
  316. for _, article := range list {
  317. ssgsdyjyList = append(ssgsdyjyList, article)
  318. }
  319. }
  320. var logItems []*data_manage.CygxResearchSummaryLog
  321. for _, article := range ssgsdyjyList {
  322. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  323. sliceSubjects := strings.Split(article.Stock, "/")
  324. var company string
  325. if sliceSubjects[0] != "" {
  326. for _, vSubject := range sliceSubjects {
  327. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  328. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  329. subject := sliceXiahuaxian[0]
  330. company += "#" + subject
  331. }
  332. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  333. }
  334. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  335. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  336. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  337. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  338. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  339. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  340. re, _ := regexp.Compile("<strong.*?>")
  341. annotation = re.ReplaceAllString(annotation, "")
  342. logItem := data_manage.CygxResearchSummaryLog{
  343. ArticleId: int(articleId),
  344. Type: "SSGS",
  345. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  346. CreateTime: time.Now(),
  347. Body: head + company + annotation,
  348. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  349. LinkArticleId: article.LinkArticleId,
  350. }
  351. logItems = append(logItems, &logItem)
  352. }
  353. if len(logItems) > 0 {
  354. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  355. if e != nil {
  356. err = e
  357. return
  358. }
  359. }
  360. }
  361. //买方研选
  362. {
  363. var condition string
  364. var pars []interface{}
  365. condition += ` AND publish_date < ? AND publish_date >= ? `
  366. pars = append(pars, friday, lastfriday)
  367. mfyxList := make([]*data_manage.CygxArticle, 0)
  368. //纪要
  369. {
  370. newCondition := condition + ` AND article_type_id = 1 `
  371. list, e := data_manage.GetReportArticleList(newCondition, pars)
  372. if e != nil {
  373. err = e
  374. fmt.Println("GetReportArticleList err:", e)
  375. return
  376. }
  377. for _, article := range list {
  378. mfyxList = append(mfyxList, article)
  379. }
  380. }
  381. //观点
  382. {
  383. newCondition := condition + ` AND article_type_id = 2 `
  384. list, e := data_manage.GetReportArticleList(newCondition, pars)
  385. if e != nil {
  386. err = e
  387. fmt.Println("GetReportArticleList err:", e)
  388. return
  389. }
  390. for _, article := range list {
  391. mfyxList = append(mfyxList, article)
  392. }
  393. }
  394. //沙龙
  395. {
  396. newCondition := condition + ` AND article_type_id = 13 `
  397. list, e := data_manage.GetReportArticleList(newCondition, pars)
  398. if e != nil {
  399. err = e
  400. fmt.Println("GetReportArticleList err:", e)
  401. return
  402. }
  403. for _, article := range list {
  404. mfyxList = append(mfyxList, article)
  405. }
  406. }
  407. var articleIdStr string
  408. for _, v := range mfyxList {
  409. articleIdStr += strconv.Itoa(v.ArticleId) + ","
  410. }
  411. mapArticleSubject := make(map[int]string)
  412. articleIdStr = strings.TrimRight(articleIdStr, ",")
  413. listSubject, e := data_manage.GetArticleSubjectList(articleIdStr)
  414. if e != nil {
  415. err = e
  416. fmt.Println("GetArticleSubjectList err:", e)
  417. return
  418. }
  419. for _, v := range listSubject {
  420. mapArticleSubject[v.ArticleId] = v.SubjectName
  421. }
  422. var logItems []*data_manage.CygxResearchSummaryLog
  423. for _, article := range mfyxList {
  424. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  425. body := strings.ReplaceAll(article.Body, "<strong>", "")
  426. body = strings.ReplaceAll(body, "</strong>", "")
  427. body = strings.ReplaceAll(body, "</ol>", "</div>")
  428. body = strings.ReplaceAll(body, "<ol>", "<div>")
  429. body = strings.ReplaceAll(body, "</li>", "</p>")
  430. body = strings.ReplaceAll(body, "<li>", "<p>")
  431. re, _ := regexp.Compile("<strong.*?>")
  432. body = re.ReplaceAllString(body, "")
  433. //研选的公司需要单独处理
  434. //sliceSubjects := strings.Split(article.Stock, "/")
  435. var company string
  436. //if sliceSubjects[0] != "" {
  437. // for _, vSubject := range sliceSubjects {
  438. // sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  439. // sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  440. // subject := sliceXiahuaxian[0]
  441. // company += "#" + subject
  442. // }
  443. // company = " <span style=\"color: #ff1720\">" + company + "</span>"
  444. //}
  445. if mapArticleSubject[article.ArticleId] != ""{
  446. company = " <span style=\"color: #ff1720\">"+"#"+mapArticleSubject[article.ArticleId]+"</span>"
  447. }
  448. var plus int
  449. coreIndex := strings.Index(body, "核心观点:")
  450. plus = 15
  451. if coreIndex == -1 {
  452. coreIndex = strings.Index(body, "核心观点:")
  453. plus = 13
  454. }
  455. if coreIndex == -1 {
  456. coreIndex = strings.Index(body, "核心观点")
  457. plus = 12
  458. }
  459. if coreIndex == -1 {
  460. coreIndex = strings.Index(body, "核心结论:")
  461. plus = 15
  462. }
  463. if coreIndex == -1 {
  464. coreIndex = strings.Index(body, "核心结论:")
  465. plus = 13
  466. }
  467. if coreIndex == -1 {
  468. coreIndex = strings.Index(body, "核心结论")
  469. plus = 12
  470. }
  471. endIndex := strings.Index(body, "<hr")
  472. fmt.Println("ID:",article.ArticleId)
  473. fmt.Println("coreIndex:", coreIndex, endIndex)
  474. if coreIndex != -1 && endIndex != -1 {
  475. body = body[coreIndex+plus : endIndex]
  476. logItem := data_manage.CygxResearchSummaryLog{
  477. ArticleId: int(articleId),
  478. Type: "YANX",
  479. ChartPermissionId: articleTypeChartPermissionIdMap[article.ArticleTypeId],
  480. CreateTime: time.Now(),
  481. Body: head + company + body,
  482. ReportLink: "https://details.hzinsights.com/cygx/report?id=" + article.ArticleIdMd5,
  483. LinkArticleId: article.LinkArticleId,
  484. }
  485. logItems = append(logItems, &logItem)
  486. }
  487. }
  488. if len(logItems) > 0 {
  489. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  490. if e != nil {
  491. err = e
  492. return
  493. }
  494. }
  495. }
  496. return
  497. }
  498. func CygxLastWeekSummary(cont context.Context) (err error) {
  499. defer func() {
  500. if err != nil {
  501. go alarm_msg.SendAlarmMsg("CygxLastWeekSummary-定时生成上周纪要汇总失败, ErrMsg:\n"+err.Error(), 3)
  502. fmt.Println(err)
  503. }
  504. }()
  505. tuesday := utils.GetNowWeekTuesday().Add(8 * time.Hour)
  506. lastTuesday := utils.GetLastWeekTuesday().Add(8 * time.Hour)
  507. lastMonth := int(lastTuesday.Month())
  508. month := int(tuesday.Month())
  509. lastDay := lastTuesday.Day()
  510. day := tuesday.Day()
  511. itemCrs := new(data_manage.CygxMinutesSummary)
  512. itemCrs.AdminId = 11
  513. itemCrs.AdminName = "admin"
  514. itemCrs.Title = fmt.Sprintf("上周纪要汇总(%d月%d日至%d月%d日)", lastMonth, lastDay, month, day)
  515. itemCrs.Department = "弘则产品组"
  516. itemCrs.Abstract = ""
  517. itemCrs.PublishStatus = 0
  518. //itemCrs.Periods = strconv.Itoa(total + 1)
  519. itemCrs.CreateTime = time.Now()
  520. itemCrs.LastUpdatedTime = time.Now()
  521. itemCrs.PublishDate = time.Now()
  522. articleId, e := data_manage.AddCygxMinutesSummaryOrm(itemCrs)
  523. if e != nil {
  524. err = e
  525. return
  526. }
  527. mappingList, err := data_manage.CygxReportMappingist()
  528. if err != nil {
  529. return
  530. }
  531. CategoryChartPermissionIdMap := make(map[int]int)
  532. for _, item := range mappingList {
  533. CategoryChartPermissionIdMap[item.CategoryId] = item.ChartPermissionId
  534. }
  535. yanxMappingList, err := data_manage.CygxArticleTypeMappingList()
  536. if err != nil {
  537. return
  538. }
  539. articleTypeChartPermissionIdMap := make(map[int]int)
  540. for _, item := range yanxMappingList {
  541. articleTypeChartPermissionIdMap[item.ArticleTypeId] = item.YanxPermissionId
  542. }
  543. //产业调研纪要
  544. {
  545. var condition string
  546. var pars []interface{}
  547. condition += ` AND publish_date < ? AND publish_date >= ? `
  548. pars = append(pars, tuesday, lastTuesday)
  549. cydyjyList := make([]*data_manage.CygxArticle, 0)
  550. //医药
  551. {
  552. newCondition := condition + ` AND category_id_two IN(28,93,301,71)`
  553. list, e := data_manage.GetReportArticleList(newCondition, pars)
  554. if e != nil {
  555. err = e
  556. fmt.Println("GetReportArticleList err:", e)
  557. return
  558. }
  559. for _, article := range list {
  560. cydyjyList = append(cydyjyList, article)
  561. }
  562. }
  563. //消费
  564. {
  565. newCondition := condition + ` AND category_id_two IN(32,58)`
  566. list, e := data_manage.GetReportArticleList(newCondition, pars)
  567. if e != nil {
  568. err = e
  569. fmt.Println("GetReportArticleList err:", e)
  570. return
  571. }
  572. for _, article := range list {
  573. cydyjyList = append(cydyjyList, article)
  574. }
  575. }
  576. //科技
  577. {
  578. newCondition := condition + ` AND category_id_two IN(79)`
  579. list, e := data_manage.GetReportArticleList(newCondition, pars)
  580. if e != nil {
  581. err = e
  582. fmt.Println("GetReportArticleList err:", e)
  583. return
  584. }
  585. for _, article := range list {
  586. cydyjyList = append(cydyjyList, article)
  587. }
  588. }
  589. //智造
  590. {
  591. newCondition := condition + ` AND category_id_two IN(84)`
  592. list, e := data_manage.GetReportArticleList(newCondition, pars)
  593. if e != nil {
  594. err = e
  595. fmt.Println("GetReportArticleList err:", e)
  596. return
  597. }
  598. for _, article := range list {
  599. cydyjyList = append(cydyjyList, article)
  600. }
  601. }
  602. var logItems []*data_manage.CygxMinutesSummaryLog
  603. for _, article := range cydyjyList {
  604. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  605. sliceSubjects := strings.Split(article.Stock, "/")
  606. var company string
  607. if sliceSubjects[0] != "" {
  608. for _, vSubject := range sliceSubjects {
  609. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  610. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  611. subject := sliceXiahuaxian[0]
  612. company += "#" + subject
  613. }
  614. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  615. }
  616. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  617. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  618. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  619. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  620. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  621. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  622. re, _ := regexp.Compile("<strong.*?>")
  623. annotation = re.ReplaceAllString(annotation, "")
  624. logItem := data_manage.CygxMinutesSummaryLog{
  625. ArticleId: int(articleId),
  626. Type: "CYDYJY",
  627. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  628. CreateTime: time.Now(),
  629. Body: head + company + annotation,
  630. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  631. LinkArticleId: article.LinkArticleId,
  632. }
  633. logItems = append(logItems, &logItem)
  634. }
  635. if len(logItems) > 0 {
  636. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  637. if e != nil {
  638. err = e
  639. return
  640. }
  641. }
  642. }
  643. //上市公司调研纪要
  644. {
  645. var condition string
  646. var pars []interface{}
  647. condition += ` AND publish_date < ? AND publish_date >= ? `
  648. pars = append(pars, tuesday, lastTuesday)
  649. ssgsdyjyList := make([]*data_manage.CygxArticle, 0)
  650. //医药
  651. {
  652. newCondition := condition + ` AND category_id_two IN(74,96)`
  653. list, e := data_manage.GetReportArticleList(newCondition, pars)
  654. if e != nil {
  655. err = e
  656. fmt.Println("GetReportArticleList err:", e)
  657. return
  658. }
  659. for _, article := range list {
  660. ssgsdyjyList = append(ssgsdyjyList, article)
  661. }
  662. }
  663. //消费
  664. {
  665. newCondition := condition + ` AND category_id_two IN(88)`
  666. list, e := data_manage.GetReportArticleList(newCondition, pars)
  667. if e != nil {
  668. err = e
  669. fmt.Println("GetReportArticleList err:", e)
  670. return
  671. }
  672. for _, article := range list {
  673. ssgsdyjyList = append(ssgsdyjyList, article)
  674. }
  675. }
  676. //科技
  677. {
  678. newCondition := condition + ` AND category_id_two IN(45)`
  679. list, e := data_manage.GetReportArticleList(newCondition, pars)
  680. if e != nil {
  681. err = e
  682. fmt.Println("GetReportArticleList err:", e)
  683. return
  684. }
  685. for _, article := range list {
  686. ssgsdyjyList = append(ssgsdyjyList, article)
  687. }
  688. }
  689. //智造
  690. {
  691. newCondition := condition + ` AND category_id_two IN(86)`
  692. list, e := data_manage.GetReportArticleList(newCondition, pars)
  693. if e != nil {
  694. err = e
  695. fmt.Println("GetReportArticleList err:", e)
  696. return
  697. }
  698. for _, article := range list {
  699. ssgsdyjyList = append(ssgsdyjyList, article)
  700. }
  701. }
  702. var logItems []*data_manage.CygxMinutesSummaryLog
  703. for _, article := range ssgsdyjyList {
  704. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  705. sliceSubjects := strings.Split(article.Stock, "/")
  706. var company string
  707. if sliceSubjects[0] != "" {
  708. for _, vSubject := range sliceSubjects {
  709. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  710. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  711. subject := sliceXiahuaxian[0]
  712. company += "#" + subject
  713. }
  714. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  715. }
  716. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  717. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  718. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  719. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  720. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  721. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  722. re, _ := regexp.Compile("<strong.*?>")
  723. annotation = re.ReplaceAllString(annotation, "")
  724. logItem := data_manage.CygxMinutesSummaryLog{
  725. ArticleId: int(articleId),
  726. Type: "SSGS",
  727. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  728. CreateTime: time.Now(),
  729. Body: head + company + annotation,
  730. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  731. LinkArticleId: article.LinkArticleId,
  732. }
  733. logItems = append(logItems, &logItem)
  734. }
  735. if len(logItems) > 0 {
  736. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  737. if e != nil {
  738. err = e
  739. return
  740. }
  741. }
  742. }
  743. //买方研选
  744. {
  745. var condition string
  746. var pars []interface{}
  747. condition += ` AND publish_date < ? AND publish_date >= ? `
  748. pars = append(pars, tuesday, lastTuesday)
  749. mfyxList := make([]*data_manage.CygxArticle, 0)
  750. //纪要
  751. {
  752. newCondition := condition + ` AND article_type_id = 1 `
  753. list, e := data_manage.GetReportArticleList(newCondition, pars)
  754. if e != nil {
  755. err = e
  756. fmt.Println("GetReportArticleList err:", e)
  757. return
  758. }
  759. for _, article := range list {
  760. mfyxList = append(mfyxList, article)
  761. }
  762. }
  763. ////观点
  764. //{
  765. // newCondition := condition + ` AND article_type_id = 2 `
  766. // list ,e := data_manage.GetReportArticleList(newCondition, pars)
  767. // if e != nil {
  768. // err = e
  769. // fmt.Println("GetReportArticleList err:", e)
  770. // return
  771. // }
  772. // for _, article := range list {
  773. // mfyxList = append(mfyxList, article)
  774. // }
  775. //}
  776. ////沙龙
  777. //{
  778. // newCondition := condition + ` AND article_type_id = 13 `
  779. // list ,e := data_manage.GetReportArticleList(newCondition, pars)
  780. // if e != nil {
  781. // err = e
  782. // fmt.Println("GetReportArticleList err:", e)
  783. // return
  784. // }
  785. // for _, article := range list {
  786. // mfyxList = append(mfyxList, article)
  787. // }
  788. //}
  789. fmt.Println("mfyxList:", len(mfyxList))
  790. var articleIdStr string
  791. for _, v := range mfyxList {
  792. articleIdStr += strconv.Itoa(v.ArticleId) + ","
  793. }
  794. mapArticleSubject := make(map[int]string)
  795. articleIdStr = strings.TrimRight(articleIdStr, ",")
  796. listSubject, e := data_manage.GetArticleSubjectList(articleIdStr)
  797. if e != nil {
  798. err = e
  799. fmt.Println("GetArticleSubjectList err:", e)
  800. return
  801. }
  802. for _, v := range listSubject {
  803. mapArticleSubject[v.ArticleId] = v.SubjectName
  804. }
  805. var logItems []*data_manage.CygxMinutesSummaryLog
  806. for _, article := range mfyxList {
  807. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  808. body := strings.ReplaceAll(article.Body, "<strong>", "")
  809. body = strings.ReplaceAll(body, "</strong>", "")
  810. body = strings.ReplaceAll(body, "</ol>", "</div>")
  811. body = strings.ReplaceAll(body, "<ol>", "<div>")
  812. body = strings.ReplaceAll(body, "</li>", "</p>")
  813. body = strings.ReplaceAll(body, "<li>", "<p>")
  814. re, _ := regexp.Compile("<strong.*?>")
  815. body = re.ReplaceAllString(body, "")
  816. //研选的公司需要单独处理
  817. //sliceSubjects := strings.Split(article.Stock, "/")
  818. var company string
  819. //if sliceSubjects[0] != "" {
  820. // for _, vSubject := range sliceSubjects {
  821. // sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  822. // sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  823. // subject := sliceXiahuaxian[0]
  824. // company += "#" + subject
  825. // }
  826. // company = " <span style=\"color: #ff1720\">" + company + "</span>"
  827. //}
  828. if mapArticleSubject[article.ArticleId] != ""{
  829. company = " <span style=\"color: #ff1720\">"+"#"+mapArticleSubject[article.ArticleId]+"</span>"
  830. }
  831. var plus int
  832. coreIndex := strings.Index(body, "核心观点:")
  833. plus = 15
  834. if coreIndex == -1 {
  835. coreIndex = strings.Index(body, "核心观点:")
  836. plus = 13
  837. }
  838. if coreIndex == -1 {
  839. coreIndex = strings.Index(body, "核心观点")
  840. plus = 12
  841. }
  842. if coreIndex == -1 {
  843. coreIndex = strings.Index(body, "核心结论:")
  844. plus = 15
  845. }
  846. if coreIndex == -1 {
  847. coreIndex = strings.Index(body, "核心结论:")
  848. plus = 13
  849. }
  850. if coreIndex == -1 {
  851. coreIndex = strings.Index(body, "核心结论")
  852. plus = 12
  853. }
  854. endIndex := strings.Index(body, "<hr")
  855. if coreIndex != -1 && endIndex != -1 {
  856. body = body[coreIndex+plus:endIndex]
  857. logItem := data_manage.CygxMinutesSummaryLog{
  858. ArticleId: int(articleId),
  859. Type: "YANX",
  860. ChartPermissionId: articleTypeChartPermissionIdMap[article.ArticleTypeId],
  861. CreateTime: time.Now(),
  862. Body: head + company + body,
  863. ReportLink: "https://details.hzinsights.com/cygx/report?id=" + article.ArticleIdMd5,
  864. LinkArticleId: article.LinkArticleId,
  865. }
  866. logItems = append(logItems, &logItem)
  867. }
  868. }
  869. if len(logItems) > 0 {
  870. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  871. if e != nil {
  872. err = e
  873. return
  874. }
  875. }
  876. }
  877. return
  878. }
  879. func Test() {
  880. body := "<div class=\\\"title-content\\\">【科技前言 &bull; 电子251:先进封装调研】 <span style=\\\"color: #ff1720;\\\">#深南电路#兴森科技</span><ol><li class=\\\"ql-align-justify\\\">1、chiplet方式能够在不断提升芯片性能的同时,保证较好的良率并降低成本,包括台积电的InFO、CoWoS封装,以及英特尔的eWLB、EMIB封装等;在数据中心对高性能运算的需求下,chiplet预计将成为先进封装的主流方式。</li><li><br></li><li class=\\\"ql-align-justify\\\">2、先进封装工艺目前主要由台积电、英特尔等晶圆厂和设计公司主导与制造,传统封测厂相对难以切入;但传统封测厂在单颗芯片封装基础上不断提升精密度,集成多个芯片模块,也属于先进封装概念,同样具有特定市场需求。</li><li class=\\\"ql-align-justify\\\"><br></li><li class=\\\"ql-align-justify\\\">3、chiplet工艺对材料的需求相对传统封装有所不同,其中基板须采用FC-BGA板;英特尔的EMIB技术通过在基板上使用硅桥代替硅转接板,成本更低,有望成为未来chiplet的首选技术,对基板厂商带来技术升级。</li></ol></div>"
  881. annotation := strings.ReplaceAll(body, "<strong>", "")
  882. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  883. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  884. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  885. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  886. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  887. fmt.Println(annotation)
  888. }