|
@@ -0,0 +1,193 @@
|
|
|
+package models
|
|
|
+
|
|
|
+import (
|
|
|
+ "fmt"
|
|
|
+ "github.com/beego/beego/v2/client/orm"
|
|
|
+ "hongze/hongze_edb_lib/utils"
|
|
|
+ "strconv"
|
|
|
+ "strings"
|
|
|
+ "time"
|
|
|
+)
|
|
|
+
|
|
|
+type BaseFromCoalmineIndex struct {
|
|
|
+ BaseFromCoalmineCompanyIndexId int
|
|
|
+ IndexName string `description:"持买单量指标名称"`
|
|
|
+ IndexCode string `description:"持买单量指标编码"`
|
|
|
+ DealValue string `description:"成交量"`
|
|
|
+ DataTime string `description:"数据日期"`
|
|
|
+ Source string `description:"来源"`
|
|
|
+ Province string `description:"省份"`
|
|
|
+ City string `description:"城市"`
|
|
|
+ GroupName string `description:"集团名称"`
|
|
|
+ Unit string `description:"单位"`
|
|
|
+ Frequency string `description:"频率"`
|
|
|
+ CreateTime string `description:"插入时间"`
|
|
|
+ ModifyTime string `description:"修改时间"`
|
|
|
+}
|
|
|
+
|
|
|
+func GetBaseFromCoalIndexByCode(suffix, indexCode string) (items []*BaseFromCoalmineIndex, err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ sql := `SELECT * FROM base_from_coalmine_%s WHERE index_code=? `
|
|
|
+ sql = fmt.Sprintf(sql, suffix)
|
|
|
+ _, err = o.Raw(sql, indexCode).QueryRows(&items)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func GetCoalDataByTradeCode(suffix, condition string, pars []interface{}) (item []*BaseFromCoalmineIndex, err error) {
|
|
|
+ sql := ` SELECT * FROM base_from_trade_%s WHERE 1=1 `
|
|
|
+ sql = fmt.Sprintf(sql, suffix)
|
|
|
+ o := orm.NewOrm()
|
|
|
+ if condition != "" {
|
|
|
+ sql += condition
|
|
|
+ }
|
|
|
+ sql += ` ORDER BY data_time DESC `
|
|
|
+ _, err = o.Raw(sql, pars).QueryRows(&item)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func AddEdbDataFromCoal(edbCode string) (err error) {
|
|
|
+ var suffix string
|
|
|
+ if strings.Contains(edbCode, "jsm") {
|
|
|
+ suffix = "jsm_index"
|
|
|
+ } else if strings.Contains(edbCode, "company") {
|
|
|
+ suffix = "company_index"
|
|
|
+ } else if strings.Contains(edbCode, "firm") {
|
|
|
+ suffix = "firm_index"
|
|
|
+ } else if strings.Contains(edbCode, "coastal") {
|
|
|
+ suffix = "coastal_index"
|
|
|
+ } else if strings.Contains(edbCode, "inland") {
|
|
|
+ suffix = "inland_index"
|
|
|
+ }
|
|
|
+
|
|
|
+ o := orm.NewOrm()
|
|
|
+
|
|
|
+ coalBaseDataAll, err := GetBaseFromCoalIndexByCode(suffix, edbCode)
|
|
|
+ if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ var isAdd bool
|
|
|
+ addSql := ` INSERT INTO edb_data_coal(edb_info_id,edb_code,data_time,value,create_time,modify_time,data_timestamp) values `
|
|
|
+ existMap := make(map[string]string)
|
|
|
+ for _, sv := range coalBaseDataAll {
|
|
|
+ eDate := sv.DataTime
|
|
|
+ dataTime, err := time.Parse(utils.FormatDate, eDate)
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println("time.Parse Err:" + eDate)
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ timestamp := dataTime.UnixNano() / 1e6
|
|
|
+ timeStr := fmt.Sprintf("%d", timestamp)
|
|
|
+ if _, ok := existMap[eDate]; !ok {
|
|
|
+ addSql += GetAddSql("0", edbCode, eDate, timeStr, sv.DealValue)
|
|
|
+ isAdd = true
|
|
|
+ }
|
|
|
+ existMap[eDate] = sv.DealValue
|
|
|
+ }
|
|
|
+ if isAdd {
|
|
|
+ addSql = strings.TrimRight(addSql, ",")
|
|
|
+ utils.FileLog.Info("addSql:" + addSql)
|
|
|
+ _, err = o.Raw(addSql).Exec()
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func RefreshEdbDataFromCoal(edbInfoId int, edbCode, startDate string) (err error) {
|
|
|
+ source := utils.DATA_SOURCE_YS
|
|
|
+ o := orm.NewOrm()
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ var suffix string
|
|
|
+ if strings.Contains(edbCode, "jsm") {
|
|
|
+ suffix = "jsm_index"
|
|
|
+ } else if strings.Contains(edbCode, "company") {
|
|
|
+ suffix = "company_index"
|
|
|
+ } else if strings.Contains(edbCode, "firm") {
|
|
|
+ suffix = "firm_index"
|
|
|
+ } else if strings.Contains(edbCode, "coastal") {
|
|
|
+ suffix = "coastal_index"
|
|
|
+ } else if strings.Contains(edbCode, "inland") {
|
|
|
+ suffix = "inland_index"
|
|
|
+ }
|
|
|
+ edbInfoIdStr := strconv.Itoa(edbInfoId)
|
|
|
+ //计算数据
|
|
|
+ var condition string
|
|
|
+ var pars []interface{}
|
|
|
+
|
|
|
+ if edbCode != "" {
|
|
|
+ pars = append(pars, edbCode)
|
|
|
+ }
|
|
|
+
|
|
|
+ if startDate != "" {
|
|
|
+ condition += " AND data_time>=? "
|
|
|
+ pars = append(pars, startDate)
|
|
|
+ }
|
|
|
+
|
|
|
+ glDataList, err := GetCoalDataByTradeCode(suffix, condition, pars)
|
|
|
+
|
|
|
+ //获取指标所有数据
|
|
|
+ var existCondition string
|
|
|
+ var existPars []interface{}
|
|
|
+
|
|
|
+ existCondition += " AND edb_info_id=? "
|
|
|
+ existPars = append(existPars, edbInfoId)
|
|
|
+ if startDate != "" {
|
|
|
+ existCondition += " AND data_time>=? "
|
|
|
+ existPars = append(existPars, startDate)
|
|
|
+ }
|
|
|
+
|
|
|
+ existList, err := GetEdbDataByCondition(source, existCondition, existPars)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ existMap := make(map[string]*EdbInfoSearchData)
|
|
|
+ for _, v := range existList {
|
|
|
+ existMap[v.DataTime] = v
|
|
|
+ }
|
|
|
+
|
|
|
+ addSql := ` INSERT INTO edb_data_coal(edb_info_id,edb_code,data_time,value,create_time,modify_time,data_timestamp) values `
|
|
|
+ var isAdd bool
|
|
|
+ for _, v := range glDataList {
|
|
|
+ var value string
|
|
|
+ value = v.DealValue
|
|
|
+ item := v
|
|
|
+ itemValue := value
|
|
|
+ if _, ok := existMap[v.DataTime]; !ok {
|
|
|
+ eDate := item.DataTime
|
|
|
+ sValue := itemValue
|
|
|
+ if sValue != "" {
|
|
|
+ dataTime, err := time.Parse(utils.FormatDate, eDate)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ timestamp := dataTime.UnixNano() / 1e6
|
|
|
+ timeStr := fmt.Sprintf("%d", timestamp)
|
|
|
+ saveValue := sValue
|
|
|
+
|
|
|
+ if findItem, ok := existMap[eDate]; !ok {
|
|
|
+ addSql += GetAddSql(edbInfoIdStr, edbCode, eDate, timeStr, saveValue)
|
|
|
+ isAdd = true
|
|
|
+ } else {
|
|
|
+ if findItem != nil && utils.SubFloatToString(findItem.Value, 30) != sValue {
|
|
|
+ err = ModifyEdbDataById(source, findItem.EdbDataId, sValue)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if isAdd {
|
|
|
+ addSql = strings.TrimRight(addSql, ",")
|
|
|
+ _, err = o.Raw(addSql).Exec()
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|