|
@@ -5,6 +5,8 @@ import (
|
|
|
"eta/eta_api/models/data_manage"
|
|
|
"eta/eta_api/utils"
|
|
|
"fmt"
|
|
|
+ "github.com/rdlucklib/rdluck_tools/paging"
|
|
|
+ "strings"
|
|
|
)
|
|
|
|
|
|
|
|
@@ -220,8 +222,6 @@ func (c *EdbInfoController) RefreshClassifyList() {
|
|
|
br.Data = list
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
|
|
|
func buildTree(items []*data_manage.BaseClassifyItems, parentId int) []*data_manage.BaseClassifyItems {
|
|
|
var result []*data_manage.BaseClassifyItems
|
|
@@ -239,3 +239,193 @@ func buildTree(items []*data_manage.BaseClassifyItems, parentId int) []*data_man
|
|
|
|
|
|
return result
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (c *EdbInfoController) RefreshEdbList() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+
|
|
|
+ defer func() {
|
|
|
+ c.Data["json"] = br
|
|
|
+ c.ServeJSON()
|
|
|
+ }()
|
|
|
+
|
|
|
+ source, _ := c.GetInt("Source")
|
|
|
+ subSource, _ := c.GetInt("SubSource")
|
|
|
+ classifyId, _ := c.GetInt("ClassifyId")
|
|
|
+ terminalCode := c.GetString("TerminalCode")
|
|
|
+ sysUserId := c.GetString("SysUserId")
|
|
|
+ frequency := c.GetString("Frequency")
|
|
|
+ keyword := c.GetString("Keyword")
|
|
|
+
|
|
|
+ pageSize, _ := c.GetInt("PageSize")
|
|
|
+ currentIndex, _ := c.GetInt("CurrentIndex")
|
|
|
+ var startSize int
|
|
|
+
|
|
|
+ if pageSize <= 0 {
|
|
|
+ pageSize = utils.PageSize20
|
|
|
+ }
|
|
|
+ if currentIndex <= 0 {
|
|
|
+ currentIndex = 1
|
|
|
+ }
|
|
|
+ startSize = utils.StartIndex(currentIndex, pageSize)
|
|
|
+
|
|
|
+ var pars []interface{}
|
|
|
+ var condition string
|
|
|
+
|
|
|
+ var total int
|
|
|
+ list := make([]*data_manage.BaseEdbInfo, 0)
|
|
|
+ var err error
|
|
|
+
|
|
|
+ switch source {
|
|
|
+ case utils.DATA_SOURCE_MYSTEEL_CHEMICAL:
|
|
|
+ if classifyId > 0 {
|
|
|
+ condition += " AND base_from_mysteel_chemical_classify_id = ? "
|
|
|
+ pars = append(pars, classifyId)
|
|
|
+ }
|
|
|
+ if terminalCode != `` {
|
|
|
+ condition += " AND terminal_code = ? "
|
|
|
+ pars = append(pars, terminalCode)
|
|
|
+ }
|
|
|
+ if sysUserId != `` {
|
|
|
+ sysUserIdSlice := strings.Split(sysUserId, ",")
|
|
|
+ condition += ` AND sys_user_id IN (` + utils.GetOrmInReplace(len(sysUserIdSlice)) + `)`
|
|
|
+ pars = append(pars, sysUserIdSlice)
|
|
|
+ }
|
|
|
+ if frequency != `` {
|
|
|
+ condition += " AND frequency = ? "
|
|
|
+ pars = append(pars, frequency)
|
|
|
+ }
|
|
|
+ if keyword != `` {
|
|
|
+ keywordSlice := strings.Split(keyword, ",")
|
|
|
+ if len(keywordSlice) > 0 {
|
|
|
+ tmpConditionSlice := make([]string, 0)
|
|
|
+ tmpConditionSlice = append(tmpConditionSlice, ` index_name like ? or index_code like ? `)
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, keyword, 2)
|
|
|
+
|
|
|
+ for _, v := range keywordSlice {
|
|
|
+ tmpConditionSlice = append(tmpConditionSlice, ` index_name like ? or index_code like ? `)
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, v, 2)
|
|
|
+ }
|
|
|
+ condition += ` AND (` + strings.Join(tmpConditionSlice, " or ") + `)`
|
|
|
+
|
|
|
+ } else {
|
|
|
+ condition += ` index_name like ? or index_code like ? `
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, keyword, 2)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ total, list, err = data_manage.GetMysteelChemicalBaseInfo(condition, pars, startSize, pageSize)
|
|
|
+ if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ case utils.DATA_SOURCE_YS:
|
|
|
+ if classifyId > 0 {
|
|
|
+ condition += " AND classify_id = ? "
|
|
|
+ pars = append(pars, classifyId)
|
|
|
+ }
|
|
|
+ if terminalCode != `` {
|
|
|
+ condition += " AND terminal_code = ? "
|
|
|
+ pars = append(pars, terminalCode)
|
|
|
+ }
|
|
|
+ if frequency != `` {
|
|
|
+ condition += " AND frequency = ? "
|
|
|
+ pars = append(pars, frequency)
|
|
|
+ }
|
|
|
+ if keyword != `` {
|
|
|
+ keywordSlice := strings.Split(keyword, ",")
|
|
|
+ if len(keywordSlice) > 0 {
|
|
|
+ tmpConditionSlice := make([]string, 0)
|
|
|
+ tmpConditionSlice = append(tmpConditionSlice, ` index_name like ? or index_code like ? `)
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, keyword, 2)
|
|
|
+
|
|
|
+ for _, v := range keywordSlice {
|
|
|
+ tmpConditionSlice = append(tmpConditionSlice, ` index_name like ? or index_code like ? `)
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, v, 2)
|
|
|
+ }
|
|
|
+ condition += ` AND (` + strings.Join(tmpConditionSlice, " or ") + `)`
|
|
|
+
|
|
|
+ } else {
|
|
|
+ condition += ` index_name like ? or index_code like ? `
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, keyword, 2)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ total, list, err = data_manage.GetSmmBaseInfo(condition, pars, startSize, pageSize)
|
|
|
+ if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ default:
|
|
|
+ condition += ` AND source = ? AND sub_source = ? `
|
|
|
+ pars = append(pars, source, subSource)
|
|
|
+
|
|
|
+ if classifyId > 0 {
|
|
|
+ condition += " AND classify_id = ? "
|
|
|
+ pars = append(pars, classifyId)
|
|
|
+ }
|
|
|
+ if terminalCode != `` {
|
|
|
+ condition += " AND terminal_code = ? "
|
|
|
+ pars = append(pars, terminalCode)
|
|
|
+ }
|
|
|
+ if sysUserId != `` {
|
|
|
+ sysUserIdSlice := strings.Split(sysUserId, ",")
|
|
|
+ condition += ` AND sys_user_id IN (` + utils.GetOrmInReplace(len(sysUserIdSlice)) + `)`
|
|
|
+ pars = append(pars, sysUserIdSlice)
|
|
|
+ }
|
|
|
+ if frequency != `` {
|
|
|
+ condition += " AND frequency = ? "
|
|
|
+ pars = append(pars, frequency)
|
|
|
+ }
|
|
|
+ if keyword != `` {
|
|
|
+ keywordSlice := strings.Split(keyword, ",")
|
|
|
+ if len(keywordSlice) > 0 {
|
|
|
+ tmpConditionSlice := make([]string, 0)
|
|
|
+ tmpConditionSlice = append(tmpConditionSlice, ` edb_name like ? or edb_code like ? `)
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, keyword, 2)
|
|
|
+
|
|
|
+ for _, v := range keywordSlice {
|
|
|
+ tmpConditionSlice = append(tmpConditionSlice, ` edb_name like ? or edb_code like ? `)
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, v, 2)
|
|
|
+ }
|
|
|
+ condition += ` AND (` + strings.Join(tmpConditionSlice, " or ") + `)`
|
|
|
+
|
|
|
+ } else {
|
|
|
+ condition += ` edb_name like ? or edb_code like ? `
|
|
|
+ pars = utils.GetLikeKeywordPars(pars, keyword, 2)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ total, list, err = data_manage.GetEdbBaseInfo(condition, pars, startSize, pageSize)
|
|
|
+ if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ page := paging.GetPaging(currentIndex, pageSize, total)
|
|
|
+
|
|
|
+ resp := data_manage.RefreshBaseEdbInfoResp{
|
|
|
+ Paging: page,
|
|
|
+ List: list,
|
|
|
+ }
|
|
|
+
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+}
|