|
@@ -164,6 +164,10 @@ func GetReportDetail(userinfo *models.WxUserItem, reportId int) (reportDetail fi
|
|
|
reportItem.ArticleId = detailArticle.ArticleId
|
|
|
reportItem.Disclaimer = GetConfigCodeDisclaimer()
|
|
|
|
|
|
+ if reportInfo.ClassifyNameFirst == "晨会纪要" && reportInfo.ClassifyNameSecond == "晨会纪要" {
|
|
|
+ reportItem.Title = "FICC/周期品晨会纪要"
|
|
|
+ }
|
|
|
+
|
|
|
//版头版尾样式
|
|
|
{
|
|
|
if reportInfo.HeadResourceId > 0 {
|
|
@@ -476,6 +480,9 @@ func GetFiccRreportToCygxArticle(cont context.Context) (err error) {
|
|
|
item.ReportId = v.Id
|
|
|
item.PublishDate = v.PublishTime.Format(utils.FormatDateTime)
|
|
|
item.Title = v.Title
|
|
|
+ if v.ClassifyNameFirst == "晨会纪要" && v.ClassifyNameSecond == "晨会纪要" {
|
|
|
+ item.Title = "FICC/周期品晨会纪要"
|
|
|
+ }
|
|
|
item.Body = v.Content
|
|
|
item.Abstract = v.Abstract
|
|
|
item.CreateDate = time.Now().Format(utils.FormatDate)
|