|
@@ -1,6 +1,7 @@
|
|
|
package models
|
|
|
|
|
|
import (
|
|
|
+ "encoding/json"
|
|
|
"errors"
|
|
|
"eta_gn/eta_api/global"
|
|
|
"eta_gn/eta_api/utils"
|
|
@@ -43,7 +44,7 @@ type Report struct {
|
|
|
Abstract string `gorm:"column:abstract" description:"摘要"`
|
|
|
Author string `gorm:"column:author" description:"作者"`
|
|
|
Frequency string `gorm:"column:frequency" description:"频度"`
|
|
|
- CreateTime string `gorm:"column:create_time" description:"创建时间"`
|
|
|
+ CreateTime time.Time `gorm:"column:create_time" description:"创建时间"`
|
|
|
ModifyTime time.Time `gorm:"column:modify_time;autoUpdateTime" description:"修改时间"`
|
|
|
State int `gorm:"column:state" description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
|
|
|
PublishTime time.Time `gorm:"column:publish_time" description:"发布时间"`
|
|
@@ -102,10 +103,10 @@ type ReportList struct {
|
|
|
Abstract string `gorm:"column:abstract" description:"摘要"`
|
|
|
Author string `gorm:"column:author" description:"作者"`
|
|
|
Frequency string `gorm:"column:frequency" description:"频度"`
|
|
|
- CreateTime string `gorm:"column:create_time" description:"创建时间"`
|
|
|
- ModifyTime time.Time `gorm:"column:modify_time;autoUpdateTime" description:"修改时间"`
|
|
|
+ CreateTime *global.LocalTime `gorm:"column:create_time" description:"创建时间"`
|
|
|
+ ModifyTime *global.LocalTime `gorm:"column:modify_time;autoUpdateTime" description:"修改时间"`
|
|
|
State int `gorm:"column:state" description:"1:未发布;2:已发布;3-待提交;4-待审批;5-已驳回;6-已通过"`
|
|
|
- PublishTime string `gorm:"column:publish_time" description:"发布时间"`
|
|
|
+ PublishTime *global.LocalTime `gorm:"column:publish_time" description:"发布时间"`
|
|
|
PrePublishTime string `gorm:"column:pre_publish_time" description:"预发布时间"`
|
|
|
Stage int `gorm:"column:stage" description:"期数"`
|
|
|
MsgIsSend int `gorm:"column:msg_is_send" description:"模板消息是否已发送,0:否,1:是"`
|
|
@@ -124,33 +125,33 @@ type ReportList struct {
|
|
|
ChapterType string `gorm:"column:chapter_type" description:"章节类型 day-晨报 week-周报"`
|
|
|
ChapterVideoList []*ReportChapterVideoList `gorm:"-" description:"章节音频列表"`
|
|
|
OldReportId int `gorm:"column:old_report_id" description:"research_report表ID, 大于0则表示该报告为老后台同步过来的"`
|
|
|
- MsgSendTime string `gorm:"column:msg_send_time" description:"模版消息发送时间"`
|
|
|
+ MsgSendTime *global.LocalTime `gorm:"column:msg_send_time" description:"模版消息发送时间"`
|
|
|
CanEdit bool `gorm:"column:can_edit" description:"是否可编辑"`
|
|
|
HasAuth bool `gorm:"column:has_auth" description:"是否可操作"`
|
|
|
Editor string `gorm:"column:editor" description:"编辑人"`
|
|
|
AdminId int `gorm:"column:admin_id" description:"创建者账号"`
|
|
|
AdminRealName string `gorm:"column:admin_real_name" description:"创建者姓名"`
|
|
|
- ApproveTime string `gorm:"column:approve_time" description:"审批时间"`
|
|
|
+ ApproveTime *global.LocalTime `gorm:"column:approve_time" description:"审批时间"`
|
|
|
DetailImgUrl string `gorm:"column:detail_img_url" description:"报告详情长图地址"`
|
|
|
DetailPdfUrl string `gorm:"column:detail_pdf_url" description:"报告详情PDF地址"`
|
|
|
|
|
|
- CollaborateType int8 `gorm:"column:collaborate_type" description:"协作方式,1:个人,2:多人协作。默认:1"`
|
|
|
- ReportLayout int8 `gorm:"column:report_layout" description:"报告布局,1:常规布局,2:智能布局。默认:1"`
|
|
|
- IsPublicPublish int8 `gorm:"column:is_public_publish" description:"是否公开发布,1:是,2:否"`
|
|
|
- ReportCreateTime time.Time `gorm:"column:report_create_time" description:"报告时间创建时间"`
|
|
|
- ContentStruct string `gorm:"column:content_struct" description:"内容组件"`
|
|
|
- LastModifyAdminId int `gorm:"column:last_modify_admin_id" description:"最后更新人ID"`
|
|
|
- LastModifyAdminName string `gorm:"column:last_modify_admin_name" description:"最后更新人姓名"`
|
|
|
- ContentModifyTime time.Time `gorm:"column:content_modify_time" description:"内容更新时间"`
|
|
|
- HeadImg string `gorm:"column:head_img" description:"报告头图地址"`
|
|
|
- EndImg string `gorm:"column:end_img" description:"报告尾图地址"`
|
|
|
- CanvasColor string `gorm:"column:canvas_color" description:"画布颜色"`
|
|
|
- NeedSplice int `gorm:"column:need_splice" description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
|
|
|
- HeadResourceId int `gorm:"column:head_resource_id" description:"版头资源ID"`
|
|
|
- EndResourceId int `gorm:"column:end_resource_id" description:"版尾资源ID"`
|
|
|
- ClassifyIdThird int `gorm:"column:classify_id_third" description:"三级分类id"`
|
|
|
- ClassifyNameThird string `gorm:"column:classify_name_third" description:"三级分类名称"`
|
|
|
- InheritReportId int `gorm:"column:inherit_report_id" description:"待继承的报告ID"`
|
|
|
+ CollaborateType int8 `gorm:"column:collaborate_type" description:"协作方式,1:个人,2:多人协作。默认:1"`
|
|
|
+ ReportLayout int8 `gorm:"column:report_layout" description:"报告布局,1:常规布局,2:智能布局。默认:1"`
|
|
|
+ IsPublicPublish int8 `gorm:"column:is_public_publish" description:"是否公开发布,1:是,2:否"`
|
|
|
+ ReportCreateTime *global.LocalTime `gorm:"column:report_create_time" description:"报告时间创建时间"`
|
|
|
+ ContentStruct string `gorm:"column:content_struct" description:"内容组件"`
|
|
|
+ LastModifyAdminId int `gorm:"column:last_modify_admin_id" description:"最后更新人ID"`
|
|
|
+ LastModifyAdminName string `gorm:"column:last_modify_admin_name" description:"最后更新人姓名"`
|
|
|
+ ContentModifyTime *global.LocalTime `gorm:"column:content_modify_time" description:"内容更新时间"`
|
|
|
+ HeadImg string `gorm:"column:head_img" description:"报告头图地址"`
|
|
|
+ EndImg string `gorm:"column:end_img" description:"报告尾图地址"`
|
|
|
+ CanvasColor string `gorm:"column:canvas_color" description:"画布颜色"`
|
|
|
+ NeedSplice int `gorm:"column:need_splice" description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
|
|
|
+ HeadResourceId int `gorm:"column:head_resource_id" description:"版头资源ID"`
|
|
|
+ EndResourceId int `gorm:"column:end_resource_id" description:"版尾资源ID"`
|
|
|
+ ClassifyIdThird int `gorm:"column:classify_id_third" description:"三级分类id"`
|
|
|
+ ClassifyNameThird string `gorm:"column:classify_name_third" description:"三级分类名称"`
|
|
|
+ InheritReportId int `gorm:"column:inherit_report_id" description:"待继承的报告ID"`
|
|
|
}
|
|
|
|
|
|
type ReportListResp struct {
|
|
@@ -316,7 +317,6 @@ func DeleteReport(reportIds int) (err error) {
|
|
|
}
|
|
|
|
|
|
type ReportDetail struct {
|
|
|
- gorm.Model
|
|
|
Id int `gorm:"column:id;primary_key;autoIncrement" description:"报告Id"`
|
|
|
AddType int `gorm:"column:add_type" description:"新增方式:1:新增报告,2:继承报告"`
|
|
|
ClassifyIdFirst int `gorm:"column:classify_id_first" description:"一级分类id"`
|
|
@@ -348,36 +348,74 @@ type ReportDetail struct {
|
|
|
ReportCode string `gorm:"column:report_code" description:"报告唯一编码"`
|
|
|
|
|
|
|
|
|
- ContentStruct string `gorm:"column:content_struct" description:"内容组件"`
|
|
|
- LastModifyAdminId int `gorm:"column:last_modify_admin_id" description:"最后更新人ID"`
|
|
|
- LastModifyAdminName string `gorm:"column:last_modify_admin_name" description:"最后更新人姓名"`
|
|
|
- ContentModifyTime time.Time `gorm:"column:content_modify_time" description:"内容更新时间"`
|
|
|
- Pv int `gorm:"column:pv" description:"pv"`
|
|
|
- Uv int `gorm:"column:uv" description:"uv"`
|
|
|
- HeadImg string `gorm:"column:head_img" description:"报告头图地址"`
|
|
|
- EndImg string `gorm:"column:end_img" description:"报告尾图地址"`
|
|
|
- HeadStyle string `gorm:"column:head_style" description:"版头样式"`
|
|
|
- EndStyle string `gorm:"column:end_style" description:"版尾样式"`
|
|
|
- CanvasColor string `gorm:"column:canvas_color" description:"画布颜色"`
|
|
|
- NeedSplice int `gorm:"column:need_splice" description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
|
|
|
- HeadResourceId int `gorm:"column:head_resource_id" description:"版头资源ID"`
|
|
|
- EndResourceId int `gorm:"column:end_resource_id" description:"版尾资源ID"`
|
|
|
- ClassifyIdThird int `gorm:"column:classify_id_third" description:"三级分类id"`
|
|
|
- ClassifyNameThird string `gorm:"column:classify_name_third" description:"三级分类名称"`
|
|
|
- CollaborateType int8 `gorm:"column:collaborate_type" description:"协作方式,1:个人,2:多人协作。默认:1"`
|
|
|
- ReportLayout int8 `gorm:"column:report_layout" description:"报告布局,1:常规布局,2:智能布局。默认:1"`
|
|
|
- IsPublicPublish int8 `gorm:"column:is_public_publish" description:"是否公开发布,1:是,2:否"`
|
|
|
- ReportCreateTime time.Time `gorm:"column:report_create_time" description:"报告时间创建时间"`
|
|
|
+ ContentStruct string `gorm:"column:content_struct" description:"内容组件"`
|
|
|
+ LastModifyAdminId int `gorm:"column:last_modify_admin_id" description:"最后更新人ID"`
|
|
|
+ LastModifyAdminName string `gorm:"column:last_modify_admin_name" description:"最后更新人姓名"`
|
|
|
+ ContentModifyTime string `gorm:"column:content_modify_time" description:"内容更新时间"`
|
|
|
+ Pv int `gorm:"column:pv" description:"pv"`
|
|
|
+ Uv int `gorm:"column:uv" description:"uv"`
|
|
|
+ HeadImg string `gorm:"column:head_img" description:"报告头图地址"`
|
|
|
+ EndImg string `gorm:"column:end_img" description:"报告尾图地址"`
|
|
|
+ HeadStyle string `gorm:"column:head_style" description:"版头样式"`
|
|
|
+ EndStyle string `gorm:"column:end_style" description:"版尾样式"`
|
|
|
+ CanvasColor string `gorm:"column:canvas_color" description:"画布颜色"`
|
|
|
+ NeedSplice int `gorm:"column:need_splice" description:"是否拼接版头版位的标记,主要是为了兼容历史报告。0-不需要 1-需要"`
|
|
|
+ HeadResourceId int `gorm:"column:head_resource_id" description:"版头资源ID"`
|
|
|
+ EndResourceId int `gorm:"column:end_resource_id" description:"版尾资源ID"`
|
|
|
+ ClassifyIdThird int `gorm:"column:classify_id_third" description:"三级分类id"`
|
|
|
+ ClassifyNameThird string `gorm:"column:classify_name_third" description:"三级分类名称"`
|
|
|
+ CollaborateType int8 `gorm:"column:collaborate_type" description:"协作方式,1:个人,2:多人协作。默认:1"`
|
|
|
+ ReportLayout int8 `gorm:"column:report_layout" description:"报告布局,1:常规布局,2:智能布局。默认:1"`
|
|
|
+ IsPublicPublish int8 `gorm:"column:is_public_publish" description:"是否公开发布,1:是,2:否"`
|
|
|
+ ReportCreateTime string `gorm:"column:report_create_time" description:"报告时间创建时间"`
|
|
|
}
|
|
|
|
|
|
func GetReportById(reportId int) (item *ReportDetail, err error) {
|
|
|
-
|
|
|
- sql := `SELECT * FROM report WHERE id=?`
|
|
|
-
|
|
|
- err = global.DmSQL["rddp"].Raw(sql, reportId).First(&item).Error
|
|
|
+ reportInfo, err := GetReportByReportId(reportId)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ item, err = convertReportToReportDetail(*reportInfo)
|
|
|
+
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+func convertReportToReportDetail(report Report) (*ReportDetail, error) {
|
|
|
+ jsonBytes, err := json.Marshal(report)
|
|
|
+ if err != nil {
|
|
|
+ return nil, fmt.Errorf("failed to marshal input: %w", err)
|
|
|
+ }
|
|
|
+
|
|
|
+ reportDetail := new(ReportDetail)
|
|
|
+ err = json.Unmarshal(jsonBytes, reportDetail)
|
|
|
+ if err != nil {
|
|
|
+ return nil, fmt.Errorf("failed to unmarshal input: %w", err)
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ reportDetail.CreateTime = report.CreateTime.Format(utils.FormatDateTime)
|
|
|
+ reportDetail.ModifyTime = report.ModifyTime.Format(utils.FormatDateTime)
|
|
|
+ if !report.PublishTime.IsZero() {
|
|
|
+ reportDetail.PublishTime = report.PublishTime.Format(utils.FormatDateTime)
|
|
|
+ } else {
|
|
|
+ reportDetail.PublishTime = ``
|
|
|
+ }
|
|
|
+ if !report.ContentModifyTime.IsZero() {
|
|
|
+ reportDetail.ContentModifyTime = report.ContentModifyTime.Format(utils.FormatDateTime)
|
|
|
+ } else {
|
|
|
+ reportDetail.ContentModifyTime = ``
|
|
|
+ }
|
|
|
+
|
|
|
+ if !report.ReportCreateTime.IsZero() {
|
|
|
+ reportDetail.ReportCreateTime = report.ReportCreateTime.Format(utils.FormatDateTime)
|
|
|
+ } else {
|
|
|
+ reportDetail.ReportCreateTime = ``
|
|
|
+ }
|
|
|
+
|
|
|
+ return reportDetail, nil
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
func GetSimpleReportByIds(reportIds []int) (list []*Report, err error) {
|
|
|
if len(reportIds) == 0 {
|
|
@@ -623,7 +661,7 @@ func ModifyReportVideo(reportId int, videoUrl, videoName, videoSize string, play
|
|
|
|
|
|
func ModifyReportVideoByNoVideo(reportId int, videoUrl, videoName, videoSize string, playSeconds float64) (err error) {
|
|
|
|
|
|
- sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? AND video_url=""`
|
|
|
+ sql := `UPDATE report SET video_url=?,video_name=?,video_play_seconds=?,video_size=? WHERE id=? AND video_url=''`
|
|
|
|
|
|
err = global.DmSQL["rddp"].Exec(sql, videoUrl, videoName, playSeconds, videoSize, reportId).Error
|
|
|
return
|
|
@@ -1012,7 +1050,7 @@ func UpdateReportPublishTime(reportId int, videoNameDate string) (err error) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !="" and video_name is not null)`
|
|
|
+ sql2 := ` UPDATE report SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE id = ? and (video_name !='' and video_name is not null)`
|
|
|
|
|
|
err = global.DmSQL["rddp"].Exec(sql2, reportId).Error
|
|
|
return
|
|
@@ -1027,7 +1065,7 @@ func UpdateReportChapterPublishTime(reportId int, videoNameDate string) (err err
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- sql2 := ` UPDATE report_chapter SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE report_id = ? and (video_name !="" and video_name is not null)`
|
|
|
+ sql2 := ` UPDATE report_chapter SET video_name=CONCAT(SUBSTRING_INDEX(video_name,"(",1),"` + videoNameDate + `") WHERE report_id = ? and (video_name !='' and video_name is not null)`
|
|
|
|
|
|
err = global.DmSQL["rddp"].Exec(sql2, reportId).Error
|
|
|
return
|