|
@@ -333,12 +333,12 @@ func (this *SciHqDataController) BatchIndexList() {
|
|
}
|
|
}
|
|
if req.IsSelectAll {
|
|
if req.IsSelectAll {
|
|
if len(req.SelectedId) > 0 {
|
|
if len(req.SelectedId) > 0 {
|
|
- condition += ` AND base_from_sci_hq_index_id NOT IN (` + utils.GetOrmInReplace(len(req.SelectedId)) + `)`
|
|
+ condition += ` AND base_from_sci_hq_index_id NOT IN (?)`
|
|
pars = append(pars, req.SelectedId)
|
|
pars = append(pars, req.SelectedId)
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
if len(req.SelectedId) > 0 {
|
|
if len(req.SelectedId) > 0 {
|
|
- condition += ` AND base_from_sci_hq_index_id IN (` + utils.GetOrmInReplace(len(req.SelectedId)) + `)`
|
|
+ condition += ` AND base_from_sci_hq_index_id IN (?)`
|
|
pars = append(pars, req.SelectedId)
|
|
pars = append(pars, req.SelectedId)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -353,11 +353,13 @@ func (this *SciHqDataController) BatchIndexList() {
|
|
br.ErrMsg = "获取分类失败,Err:" + err.Error()
|
|
br.ErrMsg = "获取分类失败,Err:" + err.Error()
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if len(childClassify) > 0 {
|
|
+ var childIds []int
|
|
- condition += `AND classify_id IN (` + utils.GetOrmInReplace(len(childClassify)) + `)`
|
|
+ for _, v := range childClassify {
|
|
- for _, child := range childClassify {
|
|
+ childIds = append(childIds, v.ClassifyId)
|
|
- pars = append(pars, child.ClassifyId)
|
|
+ }
|
|
- }
|
|
+ if len(childIds) > 0 {
|
|
|
|
+ condition += `AND classify_id IN (?)`
|
|
|
|
+ pars = append(pars, childIds)
|
|
} else {
|
|
} else {
|
|
condition += ` AND classify_id=?`
|
|
condition += ` AND classify_id=?`
|
|
pars = append(pars, req.ClassifyId)
|
|
pars = append(pars, req.ClassifyId)
|
|
@@ -762,6 +764,19 @@ func (this *SciHqDataController) AddEdbInfo() {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ refreshRes, e := data.RefreshEdbData(edbInfo.EdbInfoId, edbInfo.Source, edbInfo.SubSource, edbInfo.EdbCode, "")
|
|
|
|
+ if e != nil {
|
|
|
|
+ br.Msg = "操作失败"
|
|
|
|
+ br.ErrMsg = fmt.Sprintf("刷新指标数据失败, %v", e)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if refreshRes != nil && refreshRes.Ret != 200 {
|
|
|
|
+ br.Msg = "操作失败"
|
|
|
|
+ br.ErrMsg = fmt.Sprintf("刷新指标数据失败, Ret: %d, Msg: %s, ErrMsg: %s", refreshRes.Ret, refreshRes.Msg, refreshRes.ErrMsg)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
adminItem, e := system.GetSysAdminById(sysUser.AdminId)
|
|
adminItem, e := system.GetSysAdminById(sysUser.AdminId)
|
|
if e != nil {
|
|
if e != nil {
|
|
@@ -1096,6 +1111,19 @@ func (this *SciHqDataController) BatchAdd() {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ refreshRes, e := data.RefreshEdbData(edbInfo.EdbInfoId, edbInfo.Source, edbInfo.SubSource, edbInfo.EdbCode, "")
|
|
|
|
+ if e != nil {
|
|
|
|
+ br.Msg = "操作失败"
|
|
|
|
+ br.ErrMsg = fmt.Sprintf("刷新指标数据失败, %v", e)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if refreshRes != nil && refreshRes.Ret != 200 {
|
|
|
|
+ br.Msg = "操作失败"
|
|
|
|
+ br.ErrMsg = fmt.Sprintf("刷新指标数据失败, Ret: %d, Msg: %s, ErrMsg: %s", refreshRes.Ret, refreshRes.Msg, refreshRes.ErrMsg)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
if utils.BusinessCode == utils.BusinessCodeSandbox {
|
|
if utils.BusinessCode == utils.BusinessCodeSandbox {
|
|
go func() {
|
|
go func() {
|
|
@@ -1422,11 +1450,13 @@ func (this *SciHqDataController) ExportSciHqList() {
|
|
br.ErrMsg = "获取分类失败,Err:" + err.Error()
|
|
br.ErrMsg = "获取分类失败,Err:" + err.Error()
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if len(childClassify) > 0 {
|
|
+ var childIds []int
|
|
- condition += `AND classify_id IN (` + utils.GetOrmInReplace(len(childClassify)) + `)`
|
|
+ for _, v := range childClassify {
|
|
- for _, child := range childClassify {
|
|
+ childIds = append(childIds, v.ClassifyId)
|
|
- pars = append(pars, child.ClassifyId)
|
|
+ }
|
|
- }
|
|
+ if len(childIds) > 0 {
|
|
|
|
+ condition += `AND classify_id IN (?)`
|
|
|
|
+ pars = append(pars, childIds)
|
|
} else {
|
|
} else {
|
|
condition += ` AND classify_id=?`
|
|
condition += ` AND classify_id=?`
|
|
pars = append(pars, classifyId)
|
|
pars = append(pars, classifyId)
|