123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- package models
- import (
- "eta/eta_index_lib/utils"
- "fmt"
- "github.com/beego/beego/v2/client/orm"
- "github.com/shopspring/decimal"
- "strconv"
- "strings"
- "time"
- )
- type ManualEdbdata struct {
- TradeCode string `orm:"column(TRADE_CODE);pk" description:"指标编码"`
- Dt string `orm:"column(DT)" description:"日期"`
- Close string `orm:"column(CLOSE)" description:"值"`
- ModifyTime time.Time `orm:"column(modify_time)" description:"修改时间"`
- }
- func GetEdbdataManualByCondition(condition string, pars []interface{}) (item []*ManualEdbdata, err error) {
- sql := ` SELECT * FROM edbdata WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += ` ORDER BY DT DESC `
- o := orm.NewOrmUsingDB("edb")
- _, err = o.Raw(sql, pars).QueryRows(&item)
- return
- }
- func AddEdbDataFromManual(edbCode string) (err error) {
- o := orm.NewOrm()
- var condition string
- var pars []interface{}
- if edbCode != "" {
- condition += " AND TRADE_CODE=? "
- pars = append(pars, edbCode)
- }
- manualDataList, err := GetEdbdataManualByCondition(condition, pars)
- if err != nil {
- return
- }
- dataLen := len(manualDataList)
- if dataLen > 0 {
- var isAdd bool
- addSql := ` INSERT INTO edb_data_manual(edb_info_id,edb_code,data_time,value,create_time,modify_time,data_timestamp) values `
- for i := 0; i < dataLen; i++ {
- item := manualDataList[i]
- eDate := item.Dt
- sValue := item.Close
- tmpDecimal, err := decimal.NewFromString(sValue)
- if err != nil {
- return err
- }
- sValue = tmpDecimal.Round(4).String()
- dataTime, err := time.ParseInLocation(utils.FormatDate, eDate, time.Local)
- if err != nil {
- return err
- }
- timestamp := dataTime.UnixNano() / 1e6
- timeStr := fmt.Sprintf("%d", timestamp)
- addSql += GetAddSql("0", edbCode, eDate, timeStr, sValue)
- isAdd = true
- }
- if isAdd {
- addSql = strings.TrimRight(addSql, ",")
- _, err = o.Raw(addSql).Exec()
- if err != nil {
- return
- }
- }
- }
- return
- }
- func RefreshEdbDataFromManual(edbInfoId int, edbCode, startDate string) (err error) {
- source := utils.DATA_SOURCE_MANUAL
- subSource := utils.DATA_SUB_SOURCE_EDB
- o := orm.NewOrm()
- if err != nil {
- return
- }
- edbInfoIdStr := strconv.Itoa(edbInfoId)
-
- var condition string
- var pars []interface{}
- if edbCode != "" {
- condition += " AND TRADE_CODE=? "
- pars = append(pars, edbCode)
- }
- if startDate != "" {
- condition += " AND DT>=? "
- pars = append(pars, startDate)
- } else {
- condition += " AND DT != ? "
- pars = append(pars, `0000-00-00`)
- }
- manualDataList, err := GetEdbdataManualByCondition(condition, pars)
- if err != nil {
- return
- }
-
- var realDataMaxDate, edbDataInsertConfigDate time.Time
- var edbDataInsertConfig *EdbDataInsertConfig
- var isFindConfigDateRealData bool
- edbDataInsertConfigDateStr := ``
- {
- edbDataInsertConfig, err = GetEdbDataInsertConfigByEdbId(edbInfoId)
- if err != nil && err.Error() != utils.ErrNoRow() {
- return
- }
- if edbDataInsertConfig != nil {
- edbDataInsertConfigDate = edbDataInsertConfig.Date
- edbDataInsertConfigDateStr = edbDataInsertConfig.Date.Format(utils.FormatDate)
- }
- }
- 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, subSource, 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_manual (edb_info_id,edb_code,data_time,value,create_time,modify_time,data_timestamp) values `
- var isAdd bool
- manualMap := make(map[string]*ManualEdbdata)
-
- for _, v := range manualDataList {
- item := v
- eDate := item.Dt
- sValue := item.Close
- tmpDecimal, err := decimal.NewFromString(sValue)
- if err != nil {
- return err
- }
- sValue = tmpDecimal.Round(4).String()
- dataTime, err := time.ParseInLocation(utils.FormatDate, eDate, time.Local)
- if err != nil {
- return err
- }
-
- if findItem, ok := existMap[v.Dt]; !ok {
- timestamp := dataTime.UnixNano() / 1e6
- timeStr := fmt.Sprintf("%d", timestamp)
- addSql += GetAddSql(edbInfoIdStr, edbCode, eDate, timeStr, sValue)
- isAdd = true
- } else {
- if findItem != nil && utils.SubFloatToString(findItem.Value, 30) != item.Close {
- err = ModifyEdbDataById(source, subSource, findItem.EdbDataId, item.Close)
- if err != nil {
- return err
- }
- }
- }
- manualMap[v.Dt] = v
-
- {
- if realDataMaxDate.IsZero() || dataTime.After(realDataMaxDate) {
- realDataMaxDate = dataTime
- }
- if edbDataInsertConfigDate.IsZero() || dataTime.Equal(edbDataInsertConfigDate) {
- isFindConfigDateRealData = true
- }
- }
- }
- for _, v := range existList {
- if _, ok := manualMap[v.DataTime]; !ok {
-
-
- if edbDataInsertConfigDateStr == `` || edbDataInsertConfigDateStr != v.DataTime {
- DeleteEdbDataById(utils.DATA_SOURCE_MANUAL, subSource, v.EdbDataId)
- }
- }
- }
- if isAdd {
- addSql = strings.TrimRight(addSql, ",")
- _, err = o.Raw(addSql).Exec()
- if err != nil {
- fmt.Println("RefreshAllEdbDataByManual add Err", err.Error())
- return
- }
- }
-
- HandleConfigInsertEdbData(realDataMaxDate, edbDataInsertConfig, edbInfoId, source, subSource, existMap, isFindConfigDateRealData)
- return
- }
- func HandleConfigInsertEdbData(realDataMaxDate time.Time, edbDataInsertConfig *EdbDataInsertConfig, edbInfoId, source, subSource int, existMap map[string]*EdbInfoSearchData, isFindConfigDateRealData bool) {
- if edbDataInsertConfig == nil {
- return
- }
- var err error
- defer func() {
- if err != nil {
- fmt.Println("处理手工数据补充的配置失败,err:", err)
- }
- }()
- edbDataInsertConfigDate := edbDataInsertConfig.Date
-
- if realDataMaxDate.After(edbDataInsertConfigDate) || realDataMaxDate.Equal(edbDataInsertConfigDate) {
- go DeleteEdbDataInsertConfigByEdbId(edbInfoId)
- edbDataInsertConfigDateStr := edbDataInsertConfigDate.Format(utils.FormatDate)
-
- if item, ok := existMap[edbDataInsertConfigDateStr]; ok && !isFindConfigDateRealData {
- DeleteEdbDataById(source, subSource, item.EdbDataId)
- }
- } else {
- o := orm.NewOrm()
- edbDataInsertConfig.RealDate = realDataMaxDate
- _, err = o.Update(edbDataInsertConfig, "RealDate")
- }
- return
- }
|