excel_edb_mapping.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. package excel
  2. import (
  3. "eta/eta_api/utils"
  4. "fmt"
  5. "github.com/beego/beego/v2/client/orm"
  6. "time"
  7. )
  8. // ExcelEdbMapping excel与指标的关系表
  9. type ExcelEdbMapping struct {
  10. ExcelEdbMappingId int `orm:"column(excel_edb_mapping_id);pk"`
  11. ExcelInfoId int `description:"excel的id"`
  12. Source int `description:"表格来源,1:excel插件的表格,2:自定义表格,3:混合表格,4:自定义分析,默认:1"`
  13. EdbInfoId int `description:"计算指标id"`
  14. CreateTime time.Time `description:"创建时间"`
  15. ModifyTime time.Time `description:"修改时间"`
  16. }
  17. // AddExcelEdbMappingMulti 批量添加excel与指标的关系
  18. func AddExcelEdbMappingMulti(items []*ExcelEdbMapping) (err error) {
  19. o := orm.NewOrmUsingDB("data")
  20. _, err = o.InsertMulti(len(items), items)
  21. return
  22. }
  23. // Add 添加excel与指标的关系
  24. func (e *ExcelEdbMapping) Add() (err error) {
  25. o := orm.NewOrmUsingDB("data")
  26. _, err = o.Insert(e)
  27. return
  28. }
  29. // GetExcelEdbMappingByEdbInfoId 根据指标id获取配置关系
  30. func GetExcelEdbMappingByEdbInfoId(edbInfoId int) (item *ExcelEdbMapping, err error) {
  31. o := orm.NewOrmUsingDB("data")
  32. sql := ` SELECT * FROM excel_edb_mapping WHERE 1=1 AND edb_info_id = ? `
  33. err = o.Raw(sql, edbInfoId).QueryRow(&item)
  34. return
  35. }
  36. // GetExcelEdbMappingByExcelInfoId 根据excel的id获取配置关系
  37. func GetExcelEdbMappingByExcelInfoId(excelInfoId int) (items []*ExcelEdbMapping, err error) {
  38. o := orm.NewOrmUsingDB("data")
  39. sql := ` SELECT * FROM excel_edb_mapping AS a
  40. join edb_info as b on a.edb_info_id = b.edb_info_id
  41. WHERE 1=1 AND a.excel_info_id = ? `
  42. _, err = o.Raw(sql, excelInfoId).QueryRows(&items)
  43. return
  44. }
  45. type ExcelEdbMappingItem struct {
  46. EdbInfoId int `description:"指标id"`
  47. UniqueCode string `description:"唯一编码"`
  48. EdbName string `description:"指标名称"`
  49. ClassifyId int `description:"分类id"`
  50. Frequency string `description:"频度"`
  51. Unit string `description:"单位"`
  52. CalculateFormula string `json:"-"`
  53. DateSequenceStr string `description:"日期序列公式"`
  54. DataSequenceStr string `description:"数据序列公式"`
  55. }
  56. // CalculateFormula 计算公式
  57. type CalculateFormula struct {
  58. DateSequenceStr string `json:"DateSequenceStr"`
  59. DataSequenceStr string `json:"DataSequenceStr"`
  60. }
  61. // GetAllExcelEdbMappingItemByExcelInfoId 根据品种id获取所有的指标结果集
  62. func GetAllExcelEdbMappingItemByExcelInfoId(excelInfoId int) (items []*ExcelEdbMappingItem, err error) {
  63. o := orm.NewOrmUsingDB("data")
  64. sql := `SELECT a.edb_info_id,a.unique_code,a.edb_name,a.classify_id,a.frequency,a.unit,calculate_formula FROM edb_info AS a
  65. JOIN excel_edb_mapping AS b ON a.edb_info_id=b.edb_info_id
  66. WHERE b.excel_info_id = ? ORDER BY b.excel_edb_mapping_id ASC `
  67. _, err = o.Raw(sql, excelInfoId).QueryRows(&items)
  68. return
  69. }
  70. // GetNoCustomAnalysisExcelEdbMappingCount 根据指标id获取非自定义分析的关联关系
  71. func GetNoCustomAnalysisExcelEdbMappingCount(edbInfoId int) (count int, err error) {
  72. o := orm.NewOrmUsingDB("data")
  73. sql := ` SELECT COUNT(1) AS count FROM excel_edb_mapping a
  74. join excel_info b on a.excel_info_id=b.excel_info_id
  75. WHERE edb_info_id=? AND a.source != 4 AND b.is_delete = 0`
  76. err = o.Raw(sql, edbInfoId).QueryRow(&count)
  77. return
  78. }
  79. func GetNoCustomAnalysisExcelEdbMapping(edbInfoId int) (ids []int, err error) {
  80. o := orm.NewOrmUsingDB("data")
  81. sql := ` SELECT b.excel_info_id FROM excel_edb_mapping a
  82. join excel_info b on a.excel_info_id=b.excel_info_id
  83. WHERE edb_info_id=? AND a.source != 4 AND b.is_delete = 0`
  84. _, err = o.Raw(sql, edbInfoId).QueryRows(&ids)
  85. return
  86. }
  87. // GetAllExcelEdbMappingByExcelInfoId 根据excel的id获取所有的指标
  88. func GetAllExcelEdbMappingByExcelInfoId(excelInfoId int) (items []*ExcelEdbMapping, err error) {
  89. o := orm.NewOrmUsingDB("data")
  90. sql := `SELECT a.* FROM excel_edb_mapping a
  91. WHERE a.excel_info_id = ? ORDER BY a.excel_edb_mapping_id ASC `
  92. _, err = o.Raw(sql, excelInfoId).QueryRows(&items)
  93. return
  94. }
  95. // DeleteCustomAnalysisExcelEdbMappingByEdbInfoId
  96. // @Description: 根据指标id删除与自定义分析表格的关系
  97. // @author: Roc
  98. // @datetime 2023-11-02 13:20:02
  99. // @param excelInfoId int
  100. // @return err error
  101. func DeleteCustomAnalysisExcelEdbMappingByEdbInfoId(excelInfoId int) (err error) {
  102. o := orm.NewOrmUsingDB("data")
  103. sql := `DELETE FROM excel_edb_mapping WHERE source = ? AND edb_info_id = ? LIMIT 1`
  104. _, err = o.Raw(sql, utils.CUSTOM_ANALYSIS_TABLE, excelInfoId).Exec()
  105. return
  106. }
  107. // GetExcelEdbMappingItemByExcelInfoIdOrKeyword 根据表格ID或关键词获取指标
  108. func GetExcelEdbMappingItemByExcelInfoIdOrKeyword(excelInfoId int, keyword string) (items []*ExcelEdbMappingItem, err error) {
  109. o := orm.NewOrmUsingDB("data")
  110. cond := `b.excel_info_id = ?`
  111. pars := make([]interface{}, 0)
  112. pars = append(pars, excelInfoId)
  113. if keyword != "" {
  114. cond += ` AND (a.edb_code LIKE ? OR a.edb_name LIKE ?)`
  115. pars = append(pars, keyword, keyword)
  116. }
  117. sql := fmt.Sprintf(`SELECT
  118. a.edb_info_id,
  119. a.unique_code,
  120. a.edb_name,
  121. a.classify_id,
  122. a.frequency,
  123. a.unit,
  124. calculate_formula
  125. FROM
  126. edb_info AS a
  127. JOIN excel_edb_mapping AS b ON a.edb_info_id = b.edb_info_id
  128. WHERE
  129. %s
  130. ORDER BY
  131. b.excel_edb_mapping_id ASC`, cond)
  132. _, err = o.Raw(sql, pars).QueryRows(&items)
  133. return
  134. }