浏览代码

智能研报继承

hsun 1 年之前
父节点
当前提交
3c59ba3f8f
共有 1 个文件被更改,包括 18 次插入0 次删除
  1. 18 0
      controllers/smart_report/smart_report.go

+ 18 - 0
controllers/smart_report/smart_report.go

@@ -94,6 +94,24 @@ func (this *SmartReportController) Add() {
 	item.LastModifyAdminName = sysUser.AdminName
 	item.CreateTime = time.Now().Local()
 	item.ModifyTime = time.Now().Local()
+	// 继承报告
+	if req.AddType == 2 {
+		ob := new(smart_report.SmartReport)
+		cond := ` AND classify_id_first = ? AND classify_id_second = ? AND state = 2`
+		pars := make([]interface{}, 0)
+		pars = append(pars, req.ClassifyIdFirst, req.ClassifyIdSecond)
+		lastReport, e := ob.GetItemByCondition(cond, pars)
+		if e != nil && e.Error() != utils.ErrNoRow() {
+			br.Msg = "获取失败"
+			br.ErrMsg = "获取往期研报失败, Err: " + e.Error()
+			return
+		}
+		if lastReport != nil {
+			item.Content = lastReport.Content
+			item.ContentSub = lastReport.ContentSub
+			item.ContentStruct = lastReport.ContentStruct
+		}
+	}
 	if e = item.Create(); e != nil {
 		br.Msg = "操作失败"
 		br.ErrMsg = "新增研报失败, Err: " + e.Error()