|
@@ -3,7 +3,6 @@ package logic
|
|
|
import (
|
|
|
"errors"
|
|
|
"eta/eta_index_lib/models"
|
|
|
- "eta/eta_index_lib/services"
|
|
|
"eta/eta_index_lib/utils"
|
|
|
"fmt"
|
|
|
"strconv"
|
|
@@ -67,7 +66,7 @@ func AddPredictEdbInfo(sourceEdbInfoId, classifyId int, edbName, dataDateType st
|
|
|
edbCode := sourceEdbInfo.EdbCode + "_" + time.Now().Format(utils.FormatShortDateTimeUnSpace)
|
|
|
|
|
|
// 根据指标名称和指标ID校验库中是否还存在其他同名指标
|
|
|
- existEdbName, err := services.CheckExistByEdbNameAndEdbInfoId(0, 0, edbName, lang)
|
|
|
+ existEdbName, err := CheckExistByEdbNameAndEdbInfoId(0, 0, edbName, lang)
|
|
|
if err != nil {
|
|
|
errMsg = "判断指标名称是否存在失败"
|
|
|
err = errors.New("判断指标名称是否存在失败,Err:" + err.Error())
|
|
@@ -443,7 +442,7 @@ func EditPredictEdbInfo(edbInfoId, classifyId int, edbName, dataDateType string,
|
|
|
}
|
|
|
|
|
|
// 根据指标名称和指标ID校验库中是否还存在其他同名指标
|
|
|
- existEdbName, err := services.CheckExistByEdbNameAndEdbInfoId(1, edbInfoId, edbName, lang)
|
|
|
+ existEdbName, err := CheckExistByEdbNameAndEdbInfoId(1, edbInfoId, edbName, lang)
|
|
|
if err != nil {
|
|
|
errMsg = "判断指标名称是否存在失败"
|
|
|
err = errors.New("判断指标名称是否存在失败,Err:" + err.Error())
|
|
@@ -978,3 +977,103 @@ func RefreshPredictEdbInfo(edbInfoId int) (edbInfo *models.EdbInfo, err error, e
|
|
|
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+// checkExistByEdbName
|
|
|
+// @Description: 根据指标名称校验该指标是否存在库中
|
|
|
+// @author: Roc
|
|
|
+// @datetime 2024-04-18 14:58:52
|
|
|
+// @param edbInfoType int
|
|
|
+// @param edbName string
|
|
|
+// @param lang string
|
|
|
+// @return has bool
|
|
|
+// @return err error
|
|
|
+func checkExistByEdbName(edbInfoType int, edbName, lang string) (has bool, err error) {
|
|
|
+ var condition string
|
|
|
+ var pars []interface{}
|
|
|
+
|
|
|
+ condition += " AND edb_info_type=? "
|
|
|
+ pars = append(pars, 0)
|
|
|
+
|
|
|
+ switch lang {
|
|
|
+ case utils.EnLangVersion:
|
|
|
+ condition += " AND edb_name_en = ? "
|
|
|
+ default:
|
|
|
+ condition += " AND edb_name=? "
|
|
|
+ }
|
|
|
+
|
|
|
+ pars = append(pars, edbName)
|
|
|
+
|
|
|
+ count, err := models.GetEdbInfoCountByCondition(condition, pars)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ if count > 0 {
|
|
|
+ has = true
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// checkExistByEdbNameAndEdbInfoId
|
|
|
+// @Description: 根据指标名称和指标ID校验库中是否还存在其他同名指标
|
|
|
+// @author: Roc
|
|
|
+// @datetime 2024-04-18 15:00:19
|
|
|
+// @param edbInfoType int
|
|
|
+// @param edbInfoId int
|
|
|
+// @param edbName string
|
|
|
+// @param lang string
|
|
|
+// @return has bool
|
|
|
+// @return err error
|
|
|
+func checkExistByEdbNameAndEdbInfoId(edbInfoType, edbInfoId int, edbName, lang string) (has bool, err error) {
|
|
|
+ var condition string
|
|
|
+ var pars []interface{}
|
|
|
+ condition += " AND edb_info_type=? "
|
|
|
+ pars = append(pars, edbInfoType)
|
|
|
+
|
|
|
+ condition += " AND edb_info_id<>? "
|
|
|
+ pars = append(pars, edbInfoId)
|
|
|
+
|
|
|
+ switch lang {
|
|
|
+ case utils.EnLangVersion:
|
|
|
+ condition += " AND edb_name_en = ? "
|
|
|
+ default:
|
|
|
+ condition += " AND edb_name=? "
|
|
|
+ }
|
|
|
+
|
|
|
+ pars = append(pars, edbName)
|
|
|
+
|
|
|
+ count, err := models.GetEdbInfoCountByCondition(condition, pars)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ if count > 0 {
|
|
|
+ has = true
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// CheckExistByEdbNameAndEdbInfoId
|
|
|
+// @Description: 根据指标名称和指标ID校验库中是否还存在其他同名指标
|
|
|
+// @author: Roc
|
|
|
+// @datetime 2024-04-18 15:01:44
|
|
|
+// @param edbInfoType int
|
|
|
+// @param edbInfoId int
|
|
|
+// @param edbName string
|
|
|
+// @param lang string
|
|
|
+// @return has bool
|
|
|
+// @return err error
|
|
|
+func CheckExistByEdbNameAndEdbInfoId(edbInfoType, edbInfoId int, edbName, lang string) (has bool, err error) {
|
|
|
+ // 指标没有入库的情况
|
|
|
+ if edbInfoId == 0 {
|
|
|
+ return checkExistByEdbName(edbInfoType, edbName, lang)
|
|
|
+ }
|
|
|
+
|
|
|
+ //指标已经入库的情况
|
|
|
+ return checkExistByEdbNameAndEdbInfoId(edbInfoType, edbInfoId, edbName, lang)
|
|
|
+}
|