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