cygx_research_summary.go 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  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. ids, e := data_manage.GetYanXuanArticleIdList()
  370. if e != nil {
  371. err = e
  372. fmt.Println("GetReportArticleList err:", e)
  373. return
  374. }
  375. var condition string
  376. var pars []interface{}
  377. condition += ` AND publish_date < ? AND publish_date >= ? `
  378. pars = append(pars, friday, lastfriday)
  379. mfyxList := make([]*data_manage.CygxArticle, 0)
  380. //9.23新增研选所有类型的报告都要
  381. newCondition := condition + ` AND article_type_id IN (`+ *ids +`) `
  382. list, e := data_manage.GetReportArticleList(newCondition, pars)
  383. if e != nil {
  384. err = e
  385. fmt.Println("GetReportArticleList err:", e)
  386. return
  387. }
  388. for _, article := range list {
  389. mfyxList = append(mfyxList, article)
  390. }
  391. ////纪要
  392. //{
  393. // newCondition := condition + ` AND article_type_id = 1 `
  394. // list, e := data_manage.GetReportArticleList(newCondition, pars)
  395. // if e != nil {
  396. // err = e
  397. // fmt.Println("GetReportArticleList err:", e)
  398. // return
  399. // }
  400. // for _, article := range list {
  401. // mfyxList = append(mfyxList, article)
  402. // }
  403. //}
  404. ////观点
  405. //{
  406. // newCondition := condition + ` AND article_type_id = 2 `
  407. // list, e := data_manage.GetReportArticleList(newCondition, pars)
  408. // if e != nil {
  409. // err = e
  410. // fmt.Println("GetReportArticleList err:", e)
  411. // return
  412. // }
  413. // for _, article := range list {
  414. // mfyxList = append(mfyxList, article)
  415. // }
  416. //}
  417. ////沙龙
  418. //{
  419. // newCondition := condition + ` AND article_type_id = 13 `
  420. // list, e := data_manage.GetReportArticleList(newCondition, pars)
  421. // if e != nil {
  422. // err = e
  423. // fmt.Println("GetReportArticleList err:", e)
  424. // return
  425. // }
  426. // for _, article := range list {
  427. // mfyxList = append(mfyxList, article)
  428. // }
  429. //}
  430. var articleIdStr string
  431. for _, v := range mfyxList {
  432. articleIdStr += strconv.Itoa(v.ArticleId) + ","
  433. }
  434. mapArticleSubject := make(map[int]string)
  435. articleIdStr = strings.TrimRight(articleIdStr, ",")
  436. listSubject, e := data_manage.GetArticleSubjectList(articleIdStr)
  437. if e != nil {
  438. err = e
  439. fmt.Println("GetArticleSubjectList err:", e)
  440. return
  441. }
  442. for _, v := range listSubject {
  443. mapArticleSubject[v.ArticleId] = v.SubjectName
  444. }
  445. var logItems []*data_manage.CygxResearchSummaryLog
  446. for _, article := range mfyxList {
  447. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  448. body := strings.ReplaceAll(article.Body, "<strong>", "")
  449. body = strings.ReplaceAll(body, "</strong>", "")
  450. body = strings.ReplaceAll(body, "</ol>", "</div>")
  451. body = strings.ReplaceAll(body, "<ol>", "<div>")
  452. body = strings.ReplaceAll(body, "</li>", "</p>")
  453. body = strings.ReplaceAll(body, "<li>", "<p>")
  454. re, _ := regexp.Compile("<strong.*?>")
  455. body = re.ReplaceAllString(body, "")
  456. reLi, _ := regexp.Compile("<li.*?>")
  457. body = reLi.ReplaceAllString(body, "")
  458. //研选的公司需要单独处理
  459. //sliceSubjects := strings.Split(article.Stock, "/")
  460. var company string
  461. //if sliceSubjects[0] != "" {
  462. // for _, vSubject := range sliceSubjects {
  463. // sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  464. // sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  465. // subject := sliceXiahuaxian[0]
  466. // company += "#" + subject
  467. // }
  468. // company = " <span style=\"color: #ff1720\">" + company + "</span>"
  469. //}
  470. if mapArticleSubject[article.ArticleId] != "" {
  471. company = " <span style=\"color: #ff1720\">" + "#" + mapArticleSubject[article.ArticleId] + "</span>"
  472. }
  473. var plus int
  474. coreIndex := strings.Index(body, "核心观点:")
  475. plus = 15
  476. if coreIndex == -1 {
  477. coreIndex = strings.Index(body, "核心观点:")
  478. plus = 13
  479. }
  480. if coreIndex == -1 {
  481. coreIndex = strings.Index(body, "核心观点")
  482. plus = 12
  483. }
  484. if coreIndex == -1 {
  485. coreIndex = strings.Index(body, "核心结论:")
  486. plus = 15
  487. }
  488. if coreIndex == -1 {
  489. coreIndex = strings.Index(body, "核心结论:")
  490. plus = 13
  491. }
  492. if coreIndex == -1 {
  493. coreIndex = strings.Index(body, "核心结论")
  494. plus = 12
  495. }
  496. endIndex := strings.Index(body, "<hr")
  497. fmt.Println("ID:", article.ArticleId)
  498. fmt.Println("coreIndex:", coreIndex, endIndex)
  499. if coreIndex != -1 && endIndex != -1 {
  500. body = body[coreIndex+plus : endIndex]
  501. logItem := data_manage.CygxResearchSummaryLog{
  502. ArticleId: int(articleId),
  503. Type: "YANX",
  504. ChartPermissionId: articleTypeChartPermissionIdMap[article.ArticleTypeId],
  505. CreateTime: time.Now(),
  506. Body: head + company + body,
  507. ReportLink: "https://details.hzinsights.com/cygx/report?id=" + article.ArticleIdMd5,
  508. LinkArticleId: article.LinkArticleId,
  509. }
  510. logItems = append(logItems, &logItem)
  511. }
  512. }
  513. if len(logItems) > 0 {
  514. _, e := data_manage.AddCygxResearchSummaryLogOrm(logItems)
  515. if e != nil {
  516. err = e
  517. return
  518. }
  519. }
  520. }
  521. return
  522. }
  523. func CygxLastWeekSummary(cont context.Context) (err error) {
  524. defer func() {
  525. if err != nil {
  526. go alarm_msg.SendAlarmMsg("CygxLastWeekSummary-定时生成上周纪要汇总失败, ErrMsg:\n"+err.Error(), 3)
  527. fmt.Println(err)
  528. }
  529. }()
  530. tuesday := utils.GetNowWeekTuesday().Add(8 * time.Hour)
  531. lastTuesday := utils.GetLastWeekTuesday().Add(8 * time.Hour)
  532. lastMonth := int(lastTuesday.Month())
  533. month := int(tuesday.Month())
  534. lastDay := lastTuesday.Day()
  535. day := tuesday.Day()
  536. itemCrs := new(data_manage.CygxMinutesSummary)
  537. itemCrs.AdminId = 11
  538. itemCrs.AdminName = "admin"
  539. itemCrs.Title = fmt.Sprintf("上周纪要汇总(%d月%d日至%d月%d日)", lastMonth, lastDay, month, day)
  540. itemCrs.Department = "弘则产品组"
  541. itemCrs.Abstract = ""
  542. itemCrs.PublishStatus = 0
  543. //itemCrs.Periods = strconv.Itoa(total + 1)
  544. itemCrs.CreateTime = time.Now()
  545. itemCrs.LastUpdatedTime = time.Now()
  546. itemCrs.PublishDate = time.Now()
  547. articleId, e := data_manage.AddCygxMinutesSummaryOrm(itemCrs)
  548. if e != nil {
  549. err = e
  550. return
  551. }
  552. mappingList, err := data_manage.CygxReportMappingist()
  553. if err != nil {
  554. return
  555. }
  556. CategoryChartPermissionIdMap := make(map[int]int)
  557. for _, item := range mappingList {
  558. CategoryChartPermissionIdMap[item.CategoryId] = item.ChartPermissionId
  559. }
  560. yanxMappingList, err := data_manage.CygxArticleTypeMappingList()
  561. if err != nil {
  562. return
  563. }
  564. articleTypeChartPermissionIdMap := make(map[int]int)
  565. for _, item := range yanxMappingList {
  566. articleTypeChartPermissionIdMap[item.ArticleTypeId] = item.YanxPermissionId
  567. }
  568. //产业调研纪要
  569. {
  570. var condition string
  571. var pars []interface{}
  572. condition += ` AND publish_date < ? AND publish_date >= ? `
  573. pars = append(pars, tuesday, lastTuesday)
  574. cydyjyList := make([]*data_manage.CygxArticle, 0)
  575. //医药
  576. {
  577. newCondition := condition + ` AND category_id_two IN(28,93,301,71)`
  578. list, e := data_manage.GetReportArticleList(newCondition, pars)
  579. if e != nil {
  580. err = e
  581. fmt.Println("GetReportArticleList err:", e)
  582. return
  583. }
  584. for _, article := range list {
  585. cydyjyList = append(cydyjyList, article)
  586. }
  587. }
  588. //消费
  589. {
  590. newCondition := condition + ` AND category_id_two IN(32,58)`
  591. list, e := data_manage.GetReportArticleList(newCondition, pars)
  592. if e != nil {
  593. err = e
  594. fmt.Println("GetReportArticleList err:", e)
  595. return
  596. }
  597. for _, article := range list {
  598. cydyjyList = append(cydyjyList, article)
  599. }
  600. }
  601. //科技
  602. {
  603. newCondition := condition + ` AND category_id_two IN(79)`
  604. list, e := data_manage.GetReportArticleList(newCondition, pars)
  605. if e != nil {
  606. err = e
  607. fmt.Println("GetReportArticleList err:", e)
  608. return
  609. }
  610. for _, article := range list {
  611. cydyjyList = append(cydyjyList, article)
  612. }
  613. }
  614. //智造
  615. {
  616. newCondition := condition + ` AND category_id_two IN(84)`
  617. list, e := data_manage.GetReportArticleList(newCondition, pars)
  618. if e != nil {
  619. err = e
  620. fmt.Println("GetReportArticleList err:", e)
  621. return
  622. }
  623. for _, article := range list {
  624. cydyjyList = append(cydyjyList, article)
  625. }
  626. }
  627. var logItems []*data_manage.CygxMinutesSummaryLog
  628. for _, article := range cydyjyList {
  629. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  630. sliceSubjects := strings.Split(article.Stock, "/")
  631. var company string
  632. if sliceSubjects[0] != "" {
  633. for _, vSubject := range sliceSubjects {
  634. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  635. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  636. subject := sliceXiahuaxian[0]
  637. company += "#" + subject
  638. }
  639. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  640. }
  641. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  642. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  643. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  644. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  645. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  646. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  647. re, _ := regexp.Compile("<strong.*?>")
  648. annotation = re.ReplaceAllString(annotation, "")
  649. reLi, _ := regexp.Compile("<li.*?>")
  650. annotation = reLi.ReplaceAllString(annotation, "")
  651. logItem := data_manage.CygxMinutesSummaryLog{
  652. ArticleId: int(articleId),
  653. Type: "CYDYJY",
  654. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  655. CreateTime: time.Now(),
  656. Body: head + company + annotation,
  657. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  658. LinkArticleId: article.LinkArticleId,
  659. }
  660. logItems = append(logItems, &logItem)
  661. }
  662. if len(logItems) > 0 {
  663. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  664. if e != nil {
  665. err = e
  666. return
  667. }
  668. }
  669. }
  670. //上市公司调研纪要
  671. {
  672. var condition string
  673. var pars []interface{}
  674. condition += ` AND publish_date < ? AND publish_date >= ? `
  675. pars = append(pars, tuesday, lastTuesday)
  676. ssgsdyjyList := make([]*data_manage.CygxArticle, 0)
  677. //医药
  678. {
  679. newCondition := condition + ` AND category_id_two IN(74,96)`
  680. list, e := data_manage.GetReportArticleList(newCondition, pars)
  681. if e != nil {
  682. err = e
  683. fmt.Println("GetReportArticleList err:", e)
  684. return
  685. }
  686. for _, article := range list {
  687. ssgsdyjyList = append(ssgsdyjyList, article)
  688. }
  689. }
  690. //消费
  691. {
  692. newCondition := condition + ` AND category_id_two IN(88)`
  693. list, e := data_manage.GetReportArticleList(newCondition, pars)
  694. if e != nil {
  695. err = e
  696. fmt.Println("GetReportArticleList err:", e)
  697. return
  698. }
  699. for _, article := range list {
  700. ssgsdyjyList = append(ssgsdyjyList, article)
  701. }
  702. }
  703. //科技
  704. {
  705. newCondition := condition + ` AND category_id_two IN(45)`
  706. list, e := data_manage.GetReportArticleList(newCondition, pars)
  707. if e != nil {
  708. err = e
  709. fmt.Println("GetReportArticleList err:", e)
  710. return
  711. }
  712. for _, article := range list {
  713. ssgsdyjyList = append(ssgsdyjyList, article)
  714. }
  715. }
  716. //智造
  717. {
  718. newCondition := condition + ` AND category_id_two IN(86)`
  719. list, e := data_manage.GetReportArticleList(newCondition, pars)
  720. if e != nil {
  721. err = e
  722. fmt.Println("GetReportArticleList err:", e)
  723. return
  724. }
  725. for _, article := range list {
  726. ssgsdyjyList = append(ssgsdyjyList, article)
  727. }
  728. }
  729. var logItems []*data_manage.CygxMinutesSummaryLog
  730. for _, article := range ssgsdyjyList {
  731. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  732. sliceSubjects := strings.Split(article.Stock, "/")
  733. var company string
  734. if sliceSubjects[0] != "" {
  735. for _, vSubject := range sliceSubjects {
  736. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  737. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  738. subject := sliceXiahuaxian[0]
  739. company += "#" + subject
  740. }
  741. company = " <span style=\"color: #ff1720\">" + company + "</span>"
  742. }
  743. annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
  744. annotation = strings.ReplaceAll(annotation, "</strong>", "")
  745. annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
  746. annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
  747. annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
  748. annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
  749. re, _ := regexp.Compile("<strong.*?>")
  750. annotation = re.ReplaceAllString(annotation, "")
  751. reLi, _ := regexp.Compile("<li.*?>")
  752. annotation = reLi.ReplaceAllString(annotation, "")
  753. logItem := data_manage.CygxMinutesSummaryLog{
  754. ArticleId: int(articleId),
  755. Type: "SSGS",
  756. ChartPermissionId: CategoryChartPermissionIdMap[article.CategoryIdTwo],
  757. CreateTime: time.Now(),
  758. Body: head + company + annotation,
  759. ReportLink: "https://vmp.hzinsights.com/v2/articles/" + strconv.Itoa(article.ArticleId),
  760. LinkArticleId: article.LinkArticleId,
  761. }
  762. logItems = append(logItems, &logItem)
  763. }
  764. if len(logItems) > 0 {
  765. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  766. if e != nil {
  767. err = e
  768. return
  769. }
  770. }
  771. }
  772. //买方研选
  773. {
  774. var condition string
  775. var pars []interface{}
  776. condition += ` AND publish_date < ? AND publish_date >= ? `
  777. pars = append(pars, tuesday, lastTuesday)
  778. mfyxList := make([]*data_manage.CygxArticle, 0)
  779. //纪要
  780. {
  781. newCondition := condition + ` AND article_type_id = 1 `
  782. list, e := data_manage.GetReportArticleList(newCondition, pars)
  783. if e != nil {
  784. err = e
  785. fmt.Println("GetReportArticleList err:", e)
  786. return
  787. }
  788. for _, article := range list {
  789. mfyxList = append(mfyxList, article)
  790. }
  791. }
  792. ////观点
  793. //{
  794. // newCondition := condition + ` AND article_type_id = 2 `
  795. // list ,e := data_manage.GetReportArticleList(newCondition, pars)
  796. // if e != nil {
  797. // err = e
  798. // fmt.Println("GetReportArticleList err:", e)
  799. // return
  800. // }
  801. // for _, article := range list {
  802. // mfyxList = append(mfyxList, article)
  803. // }
  804. //}
  805. ////沙龙
  806. //{
  807. // newCondition := condition + ` AND article_type_id = 13 `
  808. // list ,e := data_manage.GetReportArticleList(newCondition, pars)
  809. // if e != nil {
  810. // err = e
  811. // fmt.Println("GetReportArticleList err:", e)
  812. // return
  813. // }
  814. // for _, article := range list {
  815. // mfyxList = append(mfyxList, article)
  816. // }
  817. //}
  818. fmt.Println("mfyxList:", len(mfyxList))
  819. var articleIdStr string
  820. for _, v := range mfyxList {
  821. articleIdStr += strconv.Itoa(v.ArticleId) + ","
  822. }
  823. mapArticleSubject := make(map[int]string)
  824. articleIdStr = strings.TrimRight(articleIdStr, ",")
  825. listSubject, e := data_manage.GetArticleSubjectList(articleIdStr)
  826. if e != nil {
  827. err = e
  828. fmt.Println("GetArticleSubjectList err:", e)
  829. return
  830. }
  831. for _, v := range listSubject {
  832. mapArticleSubject[v.ArticleId] = v.SubjectName
  833. }
  834. var logItems []*data_manage.CygxMinutesSummaryLog
  835. for _, article := range mfyxList {
  836. head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
  837. body := strings.ReplaceAll(article.Body, "<strong>", "")
  838. body = strings.ReplaceAll(body, "</strong>", "")
  839. body = strings.ReplaceAll(body, "</ol>", "</div>")
  840. body = strings.ReplaceAll(body, "<ol>", "<div>")
  841. body = strings.ReplaceAll(body, "</li>", "</p>")
  842. body = strings.ReplaceAll(body, "<li>", "<p>")
  843. re, _ := regexp.Compile("<strong.*?>")
  844. body = re.ReplaceAllString(body, "")
  845. reLi, _ := regexp.Compile("<li.*?>")
  846. body = reLi.ReplaceAllString(body, "")
  847. //研选的公司需要单独处理
  848. //sliceSubjects := strings.Split(article.Stock, "/")
  849. var company string
  850. //if sliceSubjects[0] != "" {
  851. // for _, vSubject := range sliceSubjects {
  852. // sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  853. // sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  854. // subject := sliceXiahuaxian[0]
  855. // company += "#" + subject
  856. // }
  857. // company = " <span style=\"color: #ff1720\">" + company + "</span>"
  858. //}
  859. if mapArticleSubject[article.ArticleId] != "" {
  860. company = " <span style=\"color: #ff1720\">" + "#" + mapArticleSubject[article.ArticleId] + "</span>"
  861. }
  862. var plus int
  863. coreIndex := strings.Index(body, "核心观点:")
  864. plus = 15
  865. if coreIndex == -1 {
  866. coreIndex = strings.Index(body, "核心观点:")
  867. plus = 13
  868. }
  869. if coreIndex == -1 {
  870. coreIndex = strings.Index(body, "核心观点")
  871. plus = 12
  872. }
  873. if coreIndex == -1 {
  874. coreIndex = strings.Index(body, "核心结论:")
  875. plus = 15
  876. }
  877. if coreIndex == -1 {
  878. coreIndex = strings.Index(body, "核心结论:")
  879. plus = 13
  880. }
  881. if coreIndex == -1 {
  882. coreIndex = strings.Index(body, "核心结论")
  883. plus = 12
  884. }
  885. endIndex := strings.Index(body, "<hr")
  886. if coreIndex != -1 && endIndex != -1 {
  887. body = body[coreIndex+plus : endIndex]
  888. logItem := data_manage.CygxMinutesSummaryLog{
  889. ArticleId: int(articleId),
  890. Type: "YANX",
  891. ChartPermissionId: articleTypeChartPermissionIdMap[article.ArticleTypeId],
  892. CreateTime: time.Now(),
  893. Body: head + company + body,
  894. ReportLink: "https://details.hzinsights.com/cygx/report?id=" + article.ArticleIdMd5,
  895. LinkArticleId: article.LinkArticleId,
  896. }
  897. logItems = append(logItems, &logItem)
  898. }
  899. }
  900. if len(logItems) > 0 {
  901. _, e := data_manage.AddCygxMinutesSummaryLogOrm(logItems)
  902. if e != nil {
  903. err = e
  904. return
  905. }
  906. }
  907. }
  908. return
  909. }