瀏覽代碼

fix:章节过期时间的同步

Roc 9 月之前
父節點
當前提交
1b2e4d52de
共有 2 個文件被更改,包括 4 次插入4 次删除
  1. 1 1
      models/eta/report_chapter_type.go
  2. 3 3
      services/eta/report_chapter_type.go

+ 1 - 1
models/eta/report_chapter_type.go

@@ -47,7 +47,7 @@ type ReportChapterTypeSyncReq struct {
 }
 
 type ReportChapterTypeRuleSyncReq struct {
-	ResearchType string `description:"研报类型"`
+	ReportClassifyId int `description:"研报分类id"`
 }
 
 // GetReportChapterType 获取章节类型列表

+ 3 - 3
services/eta/report_chapter_type.go

@@ -70,9 +70,9 @@ func SyncReportChapterTypeUpdateRule(req *eta.ReportChapterTypeRuleSyncReq) (err
 	crmOb := new(crm.ReportChapterType)
 	cond := ""
 	pars := make([]interface{}, 0)
-	if req.ResearchType != "" {
-		cond += " research_type = ? "
-		pars = append(pars, req.ResearchType)
+	if req.ReportClassifyId > 0 {
+		cond += " report_classify_id = ? "
+		pars = append(pars, req.ReportClassifyId)
 	}
 
 	list, e := crmOb.GetReportChapterTypeByCondition(cond, pars)