|
@@ -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()
|