base_from_manual.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. package models
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/client/orm"
  5. "hongze/hongze_edb_lib/utils"
  6. "strconv"
  7. "strings"
  8. "time"
  9. )
  10. //弘则手工数据
  11. type ManualEdbdata struct {
  12. TradeCode string `orm:"column(TRADE_CODE);pk" description:"指标编码"`
  13. Dt string `orm:"column(DT)" description:"日期"`
  14. Close string `orm:"column(CLOSE)" description:"值"`
  15. ModifyTime time.Time `orm:"column(modify_time)" description:"修改时间"`
  16. }
  17. func GetEdbdataManualByCondition(condition string, pars []interface{}) (item []*ManualEdbdata, err error) {
  18. sql := ` SELECT * FROM edbdata WHERE 1=1 `
  19. if condition != "" {
  20. sql += condition
  21. }
  22. sql += ` ORDER BY DT DESC `
  23. o := orm.NewOrmUsingDB("edb")
  24. _, err = o.Raw(sql, pars).QueryRows(&item)
  25. return
  26. }
  27. // AddEdbDataFromManual 新增弘则手工指标数据
  28. func AddEdbDataFromManual(edbCode string) (err error) {
  29. o := orm.NewOrm()
  30. var condition string
  31. var pars []interface{}
  32. if edbCode != "" {
  33. condition += " AND TRADE_CODE=? "
  34. pars = append(pars, edbCode)
  35. }
  36. manualDataList, err := GetEdbdataManualByCondition(condition, pars)
  37. if err != nil {
  38. return
  39. }
  40. dataLen := len(manualDataList)
  41. if dataLen > 0 {
  42. var isAdd bool
  43. addSql := ` INSERT INTO edb_data_manual(edb_info_id,edb_code,data_time,value,create_time,modify_time,data_timestamp) values `
  44. for i := 0; i < dataLen; i++ {
  45. item := manualDataList[i]
  46. eDate := item.Dt
  47. sValue := item.Close
  48. dataTime, err := time.ParseInLocation(utils.FormatDate, eDate, time.Local)
  49. if err != nil {
  50. return err
  51. }
  52. timestamp := dataTime.UnixNano() / 1e6
  53. timeStr := fmt.Sprintf("%d", timestamp)
  54. addSql += GetAddSql("0", edbCode, eDate, timeStr, sValue)
  55. isAdd = true
  56. }
  57. if isAdd {
  58. addSql = strings.TrimRight(addSql, ",")
  59. _, err = o.Raw(addSql).Exec()
  60. if err != nil {
  61. return
  62. }
  63. }
  64. }
  65. return
  66. }
  67. // RefreshEdbDataFromManual 刷新手工指标数据
  68. func RefreshEdbDataFromManual(edbInfoId int, edbCode, startDate string) (err error) {
  69. source := utils.DATA_SOURCE_MANUAL
  70. o := orm.NewOrm()
  71. if err != nil {
  72. return
  73. }
  74. edbInfoIdStr := strconv.Itoa(edbInfoId)
  75. //计算数据
  76. var condition string
  77. var pars []interface{}
  78. if edbCode != "" {
  79. condition += " AND TRADE_CODE=? "
  80. pars = append(pars, edbCode)
  81. }
  82. if startDate != "" {
  83. condition += " AND DT>=? "
  84. pars = append(pars, startDate)
  85. } else {
  86. condition += " AND DT != ? "
  87. pars = append(pars, `0000-00-00`)
  88. }
  89. manualDataList, err := GetEdbdataManualByCondition(condition, pars)
  90. if err != nil {
  91. return
  92. }
  93. // 真实数据的最大日期 , 插入规则配置的日期
  94. var realDataMaxDate, edbDataInsertConfigDate time.Time
  95. var edbDataInsertConfig *EdbDataInsertConfig
  96. var isFindConfigDateRealData bool //是否找到配置日期的实际数据的值
  97. edbDataInsertConfigDateStr := ``
  98. {
  99. edbDataInsertConfig, err = GetEdbDataInsertConfigByEdbId(edbInfoId)
  100. if err != nil && err.Error() != utils.ErrNoRow() {
  101. return
  102. }
  103. if edbDataInsertConfig != nil {
  104. edbDataInsertConfigDate = edbDataInsertConfig.Date
  105. edbDataInsertConfigDateStr = edbDataInsertConfig.Date.Format(utils.FormatDate)
  106. }
  107. }
  108. var existCondition string
  109. var existPars []interface{}
  110. existCondition += " AND edb_info_id=? "
  111. existPars = append(existPars, edbInfoId)
  112. if startDate != "" {
  113. existCondition += " AND data_time>=? "
  114. existPars = append(existPars, startDate)
  115. }
  116. existList, err := GetEdbDataByCondition(source, existCondition, existPars)
  117. if err != nil {
  118. return err
  119. }
  120. existMap := make(map[string]*EdbInfoSearchData)
  121. for _, v := range existList {
  122. existMap[v.DataTime] = v
  123. }
  124. addSql := ` INSERT INTO edb_data_manual (edb_info_id,edb_code,data_time,value,create_time,modify_time,data_timestamp) values `
  125. var isAdd bool
  126. manualMap := make(map[string]*ManualEdbdata)
  127. //fmt.Println("manualDataList:", len(manualDataList))
  128. for _, v := range manualDataList {
  129. item := v
  130. eDate := item.Dt
  131. sValue := item.Close
  132. dataTime, err := time.ParseInLocation(utils.FormatDate, eDate, time.Local)
  133. if err != nil {
  134. return err
  135. }
  136. //fmt.Println("Item:", item.Dt, item.Close, item.TradeCode, item.ModifyTime)
  137. if findItem, ok := existMap[v.Dt]; !ok {
  138. timestamp := dataTime.UnixNano() / 1e6
  139. timeStr := fmt.Sprintf("%d", timestamp)
  140. addSql += GetAddSql(edbInfoIdStr, edbCode, eDate, timeStr, sValue)
  141. isAdd = true
  142. } else {
  143. if findItem != nil && utils.SubFloatToString(findItem.Value, 30) != item.Close {
  144. err = ModifyEdbDataById(source, findItem.EdbDataId, item.Close)
  145. if err != nil {
  146. return err
  147. }
  148. }
  149. }
  150. manualMap[v.Dt] = v
  151. // 下面代码主要目的是处理掉手动插入的数据判断
  152. {
  153. if realDataMaxDate.IsZero() || dataTime.After(realDataMaxDate) {
  154. realDataMaxDate = dataTime
  155. }
  156. if edbDataInsertConfigDate.IsZero() || dataTime.Equal(edbDataInsertConfigDate) {
  157. isFindConfigDateRealData = true
  158. }
  159. }
  160. }
  161. for _, v := range existList {
  162. if _, ok := manualMap[v.DataTime]; !ok {
  163. // 正常来讲,如果来源数据移除了该日期的数据,也需要删除ETA指标的值
  164. // 但是由于引入手动插入最新值,那么需要判断该日期值,是否等于,如果等于,则不删除该日期值
  165. if edbDataInsertConfigDateStr == `` || edbDataInsertConfigDateStr != v.DataTime {
  166. DeleteEdbDataById(utils.DATA_SOURCE_MANUAL, v.EdbDataId)
  167. }
  168. }
  169. }
  170. if isAdd {
  171. addSql = strings.TrimRight(addSql, ",")
  172. _, err = o.Raw(addSql).Exec()
  173. if err != nil {
  174. fmt.Println("RefreshAllEdbDataByManual add Err", err.Error())
  175. return
  176. }
  177. }
  178. // 处理手工数据补充的配置
  179. HandleConfigInsertEdbData(realDataMaxDate, edbDataInsertConfig, edbInfoId, source, existMap, isFindConfigDateRealData)
  180. return
  181. }
  182. // HandleConfigInsertEdbData 处理手工数据补充的配置
  183. func HandleConfigInsertEdbData(realDataMaxDate time.Time, edbDataInsertConfig *EdbDataInsertConfig, edbInfoId, source int, existMap map[string]*EdbInfoSearchData, isFindConfigDateRealData bool) {
  184. if edbDataInsertConfig == nil {
  185. return
  186. }
  187. var err error
  188. defer func() {
  189. if err != nil {
  190. fmt.Println("处理手工数据补充的配置失败,err:", err)
  191. }
  192. }()
  193. edbDataInsertConfigDate := edbDataInsertConfig.Date // 配置的日期
  194. // 如果存在真实数据的最大日期 && 存在配置插入数据的最大日期 && 真实数据的最大日期 晚于/等于 配置插入数据的最大日期
  195. if realDataMaxDate.After(edbDataInsertConfigDate) || realDataMaxDate.Equal(edbDataInsertConfigDate) {
  196. go DeleteEdbDataInsertConfigByEdbId(edbInfoId)
  197. edbDataInsertConfigDateStr := edbDataInsertConfigDate.Format(utils.FormatDate)
  198. // 如果没有找到找到配置日期的实际数据,那么就直接删除
  199. if item, ok := existMap[edbDataInsertConfigDateStr]; ok && !isFindConfigDateRealData {
  200. DeleteEdbDataById(source, item.EdbDataId)
  201. }
  202. } else {
  203. o := orm.NewOrm()
  204. edbDataInsertConfig.RealDate = realDataMaxDate
  205. _, err = o.Update(edbDataInsertConfig, "RealDate")
  206. }
  207. return
  208. }