|
@@ -317,6 +317,7 @@ func (this *EdbSourceStatController) EdbUpdateLog() {
|
|
|
sortParamReq := this.GetString("SortParam", "")
|
|
|
sortType := this.GetString("SortType", "desc")
|
|
|
createTime := this.GetString("CreateTime", "")
|
|
|
+ updateType, _ := this.GetInt("UpdateType", -1)
|
|
|
|
|
|
pageSize, _ := this.GetInt("PageSize")
|
|
|
currentIndex, _ := this.GetInt("CurrentIndex")
|
|
@@ -345,7 +346,10 @@ func (this *EdbSourceStatController) EdbUpdateLog() {
|
|
|
condition += " AND create_time >= ? AND create_time < ?"
|
|
|
pars = append(pars, createTime, endT.Format(utils.FormatDate))
|
|
|
}
|
|
|
-
|
|
|
+ if updateType >= 0 {
|
|
|
+ condition += " AND update_type =? "
|
|
|
+ pars = append(pars, updateType)
|
|
|
+ }
|
|
|
sortStr := ``
|
|
|
sortParam := ``
|
|
|
if sortParamReq != `` {
|
|
@@ -557,7 +561,7 @@ func (this *EdbSourceStatController) EdbUpdateStat() {
|
|
|
err = nil
|
|
|
}
|
|
|
}
|
|
|
- list := make([]*data_stat.EdbInfoUpdateStatItem, 0)
|
|
|
+ list := make([]*data_stat.EdbInfoUpdateStatItemMore, 0)
|
|
|
page := paging.GetPaging(currentIndex, pageSize, total)
|
|
|
if total == 0 {
|
|
|
resp := data_stat.GetEdbUpdateStatResp{
|
|
@@ -577,8 +581,28 @@ func (this *EdbSourceStatController) EdbUpdateStat() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ // 获取初始数据源名称
|
|
|
+ var edbCodeList []string
|
|
|
+ for _, v := range tmpList {
|
|
|
+ edbCodeList = append(edbCodeList, v.EdbCode)
|
|
|
+ }
|
|
|
+ initSourceMap := make(map[string]string)
|
|
|
+ if len(edbCodeList) > 0 {
|
|
|
+ baseCond := " and index_code in (" + utils.GetOrmInReplace(len(edbCodeList)) + ")"
|
|
|
+ var basePars []interface{}
|
|
|
+ basePars = append(basePars, edbCodeList)
|
|
|
+ indexList, tErr := data_manage.GetMysteelChemicalIndexList(baseCond, basePars, 0, 1000)
|
|
|
+ if tErr != nil {
|
|
|
+ br.Msg = "获取初始指标信息失败"
|
|
|
+ br.ErrMsg = "获取初始指标信息失败,Err:" + tErr.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, v := range indexList {
|
|
|
+ initSourceMap[v.IndexCode] = v.Source
|
|
|
+ }
|
|
|
+ }
|
|
|
for _, v := range tmpList {
|
|
|
- tmp := new(data_stat.EdbInfoUpdateStatItem)
|
|
|
+ tmp := new(data_stat.EdbInfoUpdateStatItemMore)
|
|
|
tmp.Id = v.Id
|
|
|
tmp.EdbInfoId = v.EdbInfoId
|
|
|
tmp.SourceName = v.SourceName
|
|
@@ -608,6 +632,7 @@ func (this *EdbSourceStatController) EdbUpdateStat() {
|
|
|
tmp.IsAdd = v.IsAdd
|
|
|
tmp.NeedRefresh = v.NeedRefresh
|
|
|
tmp.HasRefresh = v.HasRefresh
|
|
|
+ tmp.InitSourceName, _ = initSourceMap[v.EdbCode]
|
|
|
list = append(list, tmp)
|
|
|
}
|
|
|
|
|
@@ -916,7 +941,7 @@ func (this *EdbSourceStatController) EdbUpdateFailedDetailList() {
|
|
|
err = nil
|
|
|
}
|
|
|
}
|
|
|
- list := make([]*data_stat.EdbInfoUpdateStatItem, 0)
|
|
|
+ list := make([]*data_stat.EdbInfoUpdateStatItemMore, 0)
|
|
|
page := paging.GetPaging(currentIndex, pageSize, total)
|
|
|
if total == 0 {
|
|
|
resp := data_stat.GetEdbUpdateStatResp{
|
|
@@ -937,7 +962,7 @@ func (this *EdbSourceStatController) EdbUpdateFailedDetailList() {
|
|
|
}
|
|
|
|
|
|
for _, v := range tmpList {
|
|
|
- tmp := new(data_stat.EdbInfoUpdateStatItem)
|
|
|
+ tmp := new(data_stat.EdbInfoUpdateStatItemMore)
|
|
|
tmp.Id = v.Id
|
|
|
tmp.EdbInfoId = v.EdbInfoId
|
|
|
tmp.SourceName = v.SourceName
|