chart_extra_config.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. package data
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "eta/eta_api/models/data_manage"
  6. "eta/eta_api/services/google"
  7. "eta/eta_api/utils"
  8. "fmt"
  9. "sort"
  10. "strconv"
  11. "strings"
  12. "time"
  13. )
  14. func HandleExtraConfig(chartType int, extraConfigStr string) (newExtraConfigStr string, newAllExtraConfigStr string, err error, errMsg string) {
  15. newExtraConfigStr = extraConfigStr
  16. switch chartType {
  17. case 10: // 截面散点图
  18. var tmpExtraConfig data_manage.SectionScatterReq
  19. if extraConfigStr == `` {
  20. errMsg = "截面散点图未配置"
  21. err = errors.New(errMsg)
  22. return
  23. }
  24. err = json.Unmarshal([]byte(extraConfigStr), &tmpExtraConfig)
  25. if err != nil {
  26. errMsg = "截面散点配置异常"
  27. err = errors.New(errMsg)
  28. return
  29. }
  30. newExtraConfigStr, err, errMsg = handleSectionScatterChartData(tmpExtraConfig)
  31. case utils.CHART_TYPE_SECTION_COMBINE:
  32. //整理组合图的配置信息,将部分信息存入其他表
  33. // 预览和详情都走这个接口
  34. var sectionExtraConfig data_manage.ChartSectionAllExtraConf
  35. if extraConfigStr == `` {
  36. errMsg = "截面组合图未配置"
  37. err = errors.New(errMsg)
  38. return
  39. }
  40. err = json.Unmarshal([]byte(extraConfigStr), &sectionExtraConfig)
  41. if err != nil {
  42. errMsg = "截面组合图配置异常"
  43. err = errors.New(errMsg)
  44. return
  45. }
  46. newAllExtraConfig, e, msg := handleChartSectionCombineData(sectionExtraConfig)
  47. if e != nil {
  48. err = e
  49. errMsg = msg
  50. return
  51. }
  52. newAllExtraConfigByte, e := json.Marshal(newAllExtraConfig)
  53. if e != nil {
  54. err = e
  55. return
  56. }
  57. newAllExtraConfigStr = string(newAllExtraConfigByte)
  58. newExtraConfig := &data_manage.ChartSectionExtraConf{
  59. DateConfList: newAllExtraConfig.DateConfList,
  60. IsHeap: newAllExtraConfig.IsHeap,
  61. XDataList: newAllExtraConfig.XDataList,
  62. UnitList: newAllExtraConfig.UnitList,
  63. BaseChartSeriesName: newAllExtraConfig.BaseChartSeriesName,
  64. SortType: newAllExtraConfig.SortType,
  65. }
  66. extraConfigByte, e := json.Marshal(newExtraConfig)
  67. if e != nil {
  68. err = e
  69. return
  70. }
  71. newExtraConfigStr = string(extraConfigByte)
  72. }
  73. return
  74. }
  75. // handleSectionScatterChartData 截面散点图的数据处理
  76. func handleSectionScatterChartData(extraConfig data_manage.SectionScatterReq) (extraConfigStr string, err error, errMsg string) {
  77. translateNameList := make([]string, 0)
  78. translateNameMap := make(map[string]bool, 0)
  79. if extraConfig.XNameEn == `` {
  80. if _, ok := translateNameMap[extraConfig.XName]; !ok {
  81. translateNameMap[extraConfig.XName] = true
  82. tmpName := strings.TrimSuffix(extraConfig.XName, " ")
  83. tmpName = strings.TrimPrefix(tmpName, " ")
  84. translateNameList = append(translateNameList, tmpName)
  85. }
  86. }
  87. if extraConfig.XUnitNameEn == `` {
  88. if _, ok := translateNameMap[extraConfig.XUnitName]; !ok {
  89. translateNameMap[extraConfig.XUnitName] = true
  90. tmpName := strings.TrimSuffix(extraConfig.XUnitName, " ")
  91. tmpName = strings.TrimPrefix(tmpName, " ")
  92. translateNameList = append(translateNameList, tmpName)
  93. }
  94. }
  95. if extraConfig.YNameEn == `` {
  96. if _, ok := translateNameMap[extraConfig.YName]; !ok {
  97. translateNameMap[extraConfig.YName] = true
  98. tmpName := strings.TrimSuffix(extraConfig.YName, " ")
  99. tmpName = strings.TrimPrefix(tmpName, " ")
  100. translateNameList = append(translateNameList, tmpName)
  101. }
  102. }
  103. if extraConfig.YUnitNameEn == `` {
  104. if _, ok := translateNameMap[extraConfig.YUnitName]; !ok {
  105. translateNameMap[extraConfig.YUnitName] = true
  106. tmpName := strings.TrimSuffix(extraConfig.YUnitName, " ")
  107. tmpName = strings.TrimPrefix(tmpName, " ")
  108. translateNameList = append(translateNameList, tmpName)
  109. }
  110. }
  111. for _, v := range extraConfig.SeriesList {
  112. if v.NameEn == `` {
  113. if _, ok := translateNameMap[v.Name]; !ok {
  114. translateNameMap[v.Name] = true
  115. tmpName := strings.TrimSuffix(v.Name, " ")
  116. tmpName = strings.TrimPrefix(tmpName, " ")
  117. translateNameList = append(translateNameList, tmpName)
  118. }
  119. }
  120. for _, edbInfo := range v.EdbInfoList {
  121. if edbInfo.NameEn == `` {
  122. if _, ok := translateNameMap[edbInfo.Name]; !ok {
  123. translateNameMap[edbInfo.Name] = true
  124. tmpName := strings.TrimSuffix(edbInfo.Name, " ")
  125. tmpName = strings.TrimPrefix(tmpName, " ")
  126. translateNameList = append(translateNameList, tmpName)
  127. }
  128. }
  129. }
  130. }
  131. // 获取英文名称map
  132. enNameMap, _, _ := GetEnNameMapByCnNameList(translateNameList)
  133. for k, seriesItem := range extraConfig.SeriesList {
  134. if len(seriesItem.EdbInfoList) <= 0 {
  135. errMsg = "指标不能为空"
  136. err = errors.New(errMsg)
  137. return
  138. }
  139. for edbIndex, edbConf := range seriesItem.EdbInfoList {
  140. if edbConf.NameEn == `` { //标签英文名称
  141. if tmpNameEn, ok := enNameMap[edbConf.Name]; ok {
  142. edbConf.NameEn = tmpNameEn
  143. }
  144. }
  145. seriesItem.EdbInfoList[edbIndex] = edbConf
  146. }
  147. if seriesItem.NameEn == `` { //系列英文名称
  148. if tmpNameEn, ok := enNameMap[seriesItem.Name]; ok {
  149. seriesItem.NameEn = tmpNameEn
  150. }
  151. }
  152. extraConfig.SeriesList[k] = seriesItem
  153. }
  154. if extraConfig.XNameEn == `` {
  155. if tmpNameEn, ok := enNameMap[extraConfig.XName]; ok {
  156. extraConfig.XNameEn = tmpNameEn
  157. }
  158. }
  159. if extraConfig.XUnitNameEn == `` {
  160. if tmpNameEn, ok := enNameMap[extraConfig.XUnitName]; ok {
  161. extraConfig.XUnitNameEn = tmpNameEn
  162. }
  163. }
  164. if extraConfig.YNameEn == `` {
  165. if tmpNameEn, ok := enNameMap[extraConfig.YName]; ok {
  166. extraConfig.YNameEn = tmpNameEn
  167. }
  168. }
  169. if extraConfig.YUnitNameEn == `` {
  170. if tmpNameEn, ok := enNameMap[extraConfig.YUnitName]; ok {
  171. extraConfig.YUnitNameEn = tmpNameEn
  172. }
  173. }
  174. extraConfigByte, err := json.Marshal(extraConfig)
  175. if err != nil {
  176. return
  177. }
  178. extraConfigStr = string(extraConfigByte)
  179. return
  180. }
  181. // GetEnNameMapByCnNameList 根据中文名称列表获取英文名称map
  182. func GetEnNameMapByCnNameList(cnNameList []string) (contentEnMap map[string]string, err error, errMsg string) {
  183. // 返回参初始化
  184. contentEnMap = make(map[string]string)
  185. // 英文临时赋值变量
  186. tmpContentEnMapAll := make(map[string]string)
  187. count := 0
  188. contentMap := make(map[string]string, 0)
  189. for k, v := range cnNameList {
  190. //如果单条翻译的字符数超过1000,则直接翻译,否则批量翻译
  191. if count >= 50 { //待翻译的条数不能超过50; 单条翻译字符数不能超过1000字符
  192. tmpContentEnMap, tmpErr, tmpErrMsg := google.BatchTranslateHandlerByGoogle(contentMap)
  193. if tmpErr != nil {
  194. err = tmpErr
  195. errMsg = tmpErrMsg
  196. return
  197. }
  198. for tmpK, contentEn := range tmpContentEnMap {
  199. tmpContentEnMapAll[tmpK] = contentEn
  200. }
  201. contentMap = make(map[string]string, 0)
  202. count = 0
  203. }
  204. contentMap[strconv.Itoa(k)] = v
  205. count += 1
  206. }
  207. //剩余不满50条的content
  208. if count > 0 {
  209. tmpContentEnMap, tmpErr, tmpErrMsg := google.BatchTranslateHandlerByGoogle(contentMap)
  210. if tmpErr != nil {
  211. err = tmpErr
  212. errMsg = tmpErrMsg
  213. return
  214. }
  215. for tmpK, contentEn := range tmpContentEnMap {
  216. tmpContentEnMapAll[tmpK] = contentEn
  217. }
  218. }
  219. // 重新组装拼接返回
  220. lenCnNameList := len(cnNameList)
  221. for k, v := range tmpContentEnMapAll {
  222. tmpIndex, _ := strconv.Atoi(k)
  223. if tmpIndex < lenCnNameList {
  224. contentEnMap[cnNameList[tmpIndex]] = v
  225. }
  226. }
  227. return
  228. }
  229. // handleSectionScatterChartData 截面组合图的英文文案处理
  230. func handleChartSectionCombineData(extraConfig data_manage.ChartSectionAllExtraConf) (newExtraConfig data_manage.ChartSectionAllExtraConf, err error, errMsg string) {
  231. dateConfListMapSave := make(map[string]bool)
  232. for k, v := range extraConfig.DateConfList {
  233. if v.DateConfNameEn == "" {
  234. extraConfig.DateConfList[k].DateConfNameEn = v.DateConfName
  235. }
  236. }
  237. if extraConfig.UnitList.LeftNameEn == "" {
  238. extraConfig.UnitList.LeftNameEn = extraConfig.UnitList.LeftName
  239. }
  240. if extraConfig.UnitList.RightNameEn == "" {
  241. extraConfig.UnitList.RightNameEn = extraConfig.UnitList.RightName
  242. }
  243. if extraConfig.UnitList.RightTwoNameEn == "" {
  244. extraConfig.UnitList.RightTwoNameEn = extraConfig.UnitList.RightTwoName
  245. }
  246. for k, v := range extraConfig.XDataList {
  247. if v.NameEn == "" {
  248. extraConfig.XDataList[k].NameEn = v.Name
  249. }
  250. }
  251. for k, v := range extraConfig.SeriesList {
  252. if v.SeriesNameEn == `` {
  253. extraConfig.SeriesList[k].SeriesNameEn = v.SeriesName
  254. }
  255. for _, info := range v.EdbInfoList {
  256. if info.DateConfType == 1 && info.DateConfName != "" {
  257. dateConfListMapSave[info.DateConfName] = true
  258. }
  259. }
  260. }
  261. newExtraConfig = extraConfig
  262. // 去掉没有被引用的配置
  263. newExtraConfig.DateConfList = make([]*data_manage.ChartSectionDateConfItem, 0)
  264. for _, v := range extraConfig.DateConfList {
  265. if _, ok := dateConfListMapSave[v.DateConfName]; ok {
  266. newExtraConfig.DateConfList = append(newExtraConfig.DateConfList, v)
  267. }
  268. }
  269. return
  270. }
  271. // GetChartSectionCombineData 截面组合图的数据处理
  272. func GetChartSectionCombineData(chartInfo *data_manage.ChartInfo, mappingList []*data_manage.ChartEdbInfoMapping, edbDataListMap map[int][]*data_manage.EdbDataList, extraConfig data_manage.ChartSectionAllExtraConf) (edbIdList []int, dataListResp data_manage.ChartSectionCombineDataResp, err error) {
  273. // 指标数据数组(10086:{"2022-12-02":100.01,"2022-12-01":102.3})
  274. edbDataMap := make(map[int]map[string]float64)
  275. for edbInfoId, edbDataList := range edbDataListMap {
  276. edbDateData := make(map[string]float64)
  277. for _, edbData := range edbDataList {
  278. edbDateData[edbData.DataTime] = edbData.Value
  279. }
  280. edbDataMap[edbInfoId] = edbDateData
  281. }
  282. // edbIdList 指标展示顺序;x轴的指标顺序
  283. edbIdList = make([]int, 0)
  284. edbMappingMap := make(map[int]*data_manage.ChartEdbInfoMapping)
  285. for _, v := range mappingList {
  286. edbIdList = append(edbIdList, v.EdbInfoId)
  287. edbMappingMap[v.EdbInfoId] = v
  288. }
  289. // 确定好截面散点图返回的数据格式
  290. // 获取所有的引用日期设置
  291. dateConfListMap := make(map[string]*data_manage.ChartSectionDateConfItem)
  292. dateConfEdbIds := make([]int, 0)
  293. for _, v := range extraConfig.DateConfList {
  294. if v.EdbInfoId > 0 {
  295. dateConfEdbIds = append(dateConfEdbIds, v.EdbInfoId)
  296. }
  297. dateConfListMap[v.DateConfName] = v
  298. }
  299. // 遍历每个系列
  300. // 遍历每个指标,根据选中的日期,进行日期变换得到最终的日期,根据最终的日期获取对应的值
  301. // 组装数据
  302. baseSeries := new(data_manage.ChartSectionSeriesItem) //y轴的系列
  303. var firstUnit, leftUnit, rightUnit, right2Unit *data_manage.XData
  304. var (
  305. LeftMin float64
  306. LeftMax float64
  307. RightMin float64
  308. RightMax float64
  309. Right2Min float64
  310. Right2Max float64
  311. )
  312. seriesDataListMap := make(map[string][]float64)
  313. seriesNoDataIndexMap := make(map[string][]int)
  314. for _, seriesItem := range extraConfig.SeriesList {
  315. var maxDate time.Time
  316. var minVal, maxVal float64
  317. noDataEdbIndex := make([]int, 0)
  318. dataList := make([]float64, len(seriesItem.EdbInfoList))
  319. for index, edbConf := range seriesItem.EdbInfoList {
  320. edbInfoId := edbConf.EdbInfoId //X轴的指标
  321. edbMappingInfo, ok := edbMappingMap[edbInfoId]
  322. if !ok {
  323. continue
  324. }
  325. seriesItem.EdbInfoList[index].EdbName = edbMappingInfo.EdbName
  326. seriesItem.EdbInfoList[index].EdbNameEn = edbMappingInfo.EdbNameEn
  327. seriesItem.EdbInfoList[index].EdbInfoType = edbMappingInfo.EdbInfoCategoryType
  328. seriesItem.EdbInfoList[index].Unit = edbMappingInfo.Unit
  329. seriesItem.EdbInfoList[index].UnitEn = edbMappingInfo.UnitEn
  330. if index == 0 {
  331. firstUnit = &data_manage.XData{
  332. Name: edbMappingInfo.Unit,
  333. NameEn: edbMappingInfo.UnitEn,
  334. }
  335. }
  336. edbDataList, ok3 := edbDataListMap[edbInfoId]
  337. if !ok3 {
  338. err = fmt.Errorf("指标%d的日期数据不存在", edbInfoId)
  339. return
  340. }
  341. //日期变换处理,判断用指标的最新日期还是,直接获取引用日期
  342. var findDate string
  343. if edbConf.DateConfType == 0 {
  344. if edbInfoId == 0 {
  345. err = fmt.Errorf("请选择指标")
  346. return
  347. }
  348. findDate, err = GetChartSectionSeriesDateByDateChange(edbInfoId, edbDataList, edbConf.DateConf.DateChange, edbConf.DateConf.MoveForward)
  349. if err != nil {
  350. err = fmt.Errorf("指标%d的日期变换处理失败", edbInfoId)
  351. return
  352. }
  353. } else {
  354. // 获取日期配置
  355. dateConfItem, ok1 := dateConfListMap[edbConf.DateConfName]
  356. if !ok1 {
  357. err = fmt.Errorf("引用日期配置不存在")
  358. return
  359. }
  360. // todo 根据日期变换得到最终日期
  361. edbDataListTmp := make([]*data_manage.EdbDataList, 0)
  362. if dateConfItem.EdbInfoId > 0 {
  363. edbDataListTmp, ok1 = edbDataListMap[dateConfItem.EdbInfoId]
  364. if !ok1 {
  365. err = fmt.Errorf("指标%d的日期数据不存在", dateConfItem.EdbInfoId)
  366. return
  367. }
  368. }
  369. findDate, err = GetChartSectionSeriesDateByDateChange(dateConfItem.EdbInfoId, edbDataListTmp, dateConfItem.DateChange, dateConfItem.MoveForward)
  370. if err != nil {
  371. err = fmt.Errorf("指标%d的日期变换处理失败", dateConfItem.EdbInfoId)
  372. return
  373. }
  374. }
  375. findDateTime, _ := time.ParseInLocation(utils.FormatDate, findDate, time.Local)
  376. if maxDate.IsZero() {
  377. maxDate = findDateTime
  378. } else {
  379. if findDateTime.After(maxDate) {
  380. maxDate = findDateTime
  381. }
  382. }
  383. if tmpValue, ok := edbDataMap[edbInfoId][findDate]; ok {
  384. dataList[index] = tmpValue
  385. if index == 0 {
  386. minVal = tmpValue
  387. maxVal = tmpValue
  388. } else {
  389. if tmpValue < minVal {
  390. minVal = tmpValue
  391. }
  392. if tmpValue > maxVal {
  393. maxVal = tmpValue
  394. }
  395. }
  396. } else {
  397. dataList[index] = 0
  398. noDataEdbIndex = append(noDataEdbIndex, index)
  399. continue
  400. }
  401. }
  402. seriesDataListMap[seriesItem.SeriesName] = dataList
  403. seriesNoDataIndexMap[seriesItem.SeriesName] = noDataEdbIndex
  404. seriesItem.DataList = dataList
  405. seriesItem.MinData = minVal
  406. seriesItem.MaxData = maxVal
  407. seriesItem.NoDataEdbIndex = noDataEdbIndex
  408. if extraConfig.BaseChartSeriesName == seriesItem.SeriesName {
  409. baseSeries = seriesItem
  410. }
  411. if seriesItem.IsAxis == 1 && leftUnit == nil { //左轴,右轴
  412. leftUnit = firstUnit
  413. } else if seriesItem.IsAxis == 0 && rightUnit == nil {
  414. rightUnit = firstUnit
  415. } else if seriesItem.IsAxis == 2 && right2Unit == nil {
  416. right2Unit = firstUnit
  417. }
  418. //处理上下限
  419. var minData, maxData float64
  420. for _, d := range seriesItem.DataList {
  421. if minData > d {
  422. minData = d
  423. }
  424. if maxData < d {
  425. maxData = d
  426. }
  427. }
  428. if seriesItem.IsAxis == 1 {
  429. if LeftMin > minData {
  430. LeftMin = minData
  431. }
  432. if LeftMax < maxData {
  433. LeftMax = maxData
  434. }
  435. } else if seriesItem.IsAxis == 0 {
  436. if RightMin > minData {
  437. RightMin = minData
  438. }
  439. if RightMax < maxData {
  440. RightMax = maxData
  441. }
  442. } else {
  443. if Right2Min > minData {
  444. Right2Min = minData
  445. }
  446. if Right2Max < maxData {
  447. Right2Max = maxData
  448. }
  449. }
  450. }
  451. // 处理横轴
  452. // 遍历基准系列,判断有几个横轴名称
  453. if baseSeries == nil {
  454. err = fmt.Errorf("基准系列不存在")
  455. return
  456. }
  457. // 处理系列排序
  458. if extraConfig.SortType > 0 {
  459. newSeriesDataListMap, newSeriesNoDataIndexMap := SortChartSeriesDataSet(baseSeries.SeriesName, baseSeries.DataList, baseSeries.NoDataEdbIndex, seriesDataListMap, seriesNoDataIndexMap, extraConfig.SortType)
  460. for k, item := range extraConfig.SeriesList {
  461. dataList, ok := newSeriesDataListMap[item.SeriesName]
  462. if ok {
  463. extraConfig.SeriesList[k].DataList = dataList
  464. }
  465. noIndex, ok := newSeriesNoDataIndexMap[item.SeriesName]
  466. if ok {
  467. extraConfig.SeriesList[k].NoDataEdbIndex = noIndex
  468. }
  469. }
  470. }
  471. xDataList := make([]data_manage.XData, 0)
  472. for index, item := range baseSeries.EdbInfoList {
  473. if index == 0 {
  474. firstUnit = &data_manage.XData{
  475. Name: item.Unit,
  476. NameEn: item.UnitEn,
  477. }
  478. }
  479. tmp := data_manage.XData{
  480. Name: item.EdbName,
  481. NameEn: item.EdbNameEn,
  482. }
  483. // 如果已经设置了横轴名称,则用设置的名称替换
  484. if len(extraConfig.XDataList) > index {
  485. newItem := extraConfig.XDataList[index]
  486. if newItem.Name != "" {
  487. tmp = newItem
  488. }
  489. }
  490. xDataList = append(xDataList, tmp)
  491. }
  492. dataListResp.XDataList = xDataList
  493. unitList := new(data_manage.ChartSectionCombineUnit)
  494. if baseSeries.IsAxis == 1 { //左轴,右轴
  495. leftUnit = firstUnit
  496. } else if baseSeries.IsAxis == 2 {
  497. rightUnit = firstUnit
  498. } else {
  499. right2Unit = firstUnit
  500. }
  501. if leftUnit != nil {
  502. unitList.LeftName = leftUnit.Name
  503. unitList.LeftNameEn = leftUnit.NameEn
  504. }
  505. if rightUnit != nil {
  506. unitList.RightName = rightUnit.Name
  507. unitList.RightNameEn = rightUnit.NameEn
  508. }
  509. if right2Unit != nil {
  510. unitList.RightTwoName = right2Unit.Name
  511. unitList.RightTwoNameEn = right2Unit.NameEn
  512. }
  513. if extraConfig.UnitList.LeftName != "" {
  514. unitList.LeftName = extraConfig.UnitList.LeftName
  515. unitList.LeftNameEn = extraConfig.UnitList.LeftNameEn
  516. }
  517. if extraConfig.UnitList.RightName != "" {
  518. unitList.RightName = extraConfig.UnitList.RightName
  519. unitList.RightNameEn = extraConfig.UnitList.RightNameEn
  520. }
  521. if extraConfig.UnitList.RightTwoName != "" {
  522. unitList.RightTwoName = extraConfig.UnitList.RightTwoName
  523. unitList.RightTwoNameEn = extraConfig.UnitList.RightTwoNameEn
  524. }
  525. if chartInfo != nil && chartInfo.MinMaxSave == 1 {
  526. dataListResp.LeftMin = chartInfo.LeftMin
  527. dataListResp.LeftMax = chartInfo.LeftMax
  528. dataListResp.RightMin = chartInfo.RightMin
  529. dataListResp.RightMax = chartInfo.RightMax
  530. dataListResp.Right2Min = chartInfo.Right2Min
  531. dataListResp.Right2Max = chartInfo.Right2Max
  532. } else {
  533. dataListResp.LeftMin = strconv.FormatFloat(LeftMin, 'f', -1, 64)
  534. dataListResp.LeftMax = strconv.FormatFloat(LeftMax, 'f', -1, 64)
  535. dataListResp.RightMin = strconv.FormatFloat(RightMin, 'f', -1, 64)
  536. dataListResp.RightMax = strconv.FormatFloat(RightMax, 'f', -1, 64)
  537. dataListResp.Right2Min = strconv.FormatFloat(Right2Min, 'f', -1, 64)
  538. dataListResp.Right2Max = strconv.FormatFloat(Right2Max, 'f', -1, 64)
  539. }
  540. // 查询引用日期里的指标信息
  541. if len(dateConfEdbIds) > 0 {
  542. dateConfEdbList, e := data_manage.GetEdbInfoByIdList(dateConfEdbIds)
  543. if e != nil {
  544. err = fmt.Errorf("查询引用日期里的指标信息失败,错误信息:%s", e.Error())
  545. return
  546. }
  547. dateConfEdbMap := make(map[int]*data_manage.EdbInfo)
  548. for _, dateConfEdb := range dateConfEdbList {
  549. dateConfEdbMap[dateConfEdb.EdbInfoId] = dateConfEdb
  550. }
  551. for i, dateConf := range extraConfig.DateConfList {
  552. if dateConf.EdbInfoId > 0 {
  553. edbItem, ok := dateConfEdbMap[dateConf.EdbInfoId]
  554. if ok {
  555. extraConfig.DateConfList[i].EdbName = edbItem.EdbName
  556. extraConfig.DateConfList[i].EdbInfoId = edbItem.EdbInfoId
  557. extraConfig.DateConfList[i].EdbInfoType = edbItem.EdbInfoType
  558. extraConfig.DateConfList[i].Frequency = edbItem.Frequency
  559. extraConfig.DateConfList[i].EndDate = edbItem.EndDate
  560. }
  561. }
  562. }
  563. }
  564. dataListResp.SeriesList = extraConfig.SeriesList
  565. dataListResp.DateConfList = extraConfig.DateConfList
  566. dataListResp.BaseChartSeriesName = extraConfig.BaseChartSeriesName
  567. dataListResp.UnitList = unitList
  568. dataListResp.IsHeap = extraConfig.IsHeap
  569. dataListResp.SortType = extraConfig.SortType
  570. return
  571. }
  572. // GetChartSectionSeriesDateByDateChange 获取日期变换后的日期edbInfoId 1指标日期,2 系统日期
  573. func GetChartSectionSeriesDateByDateChange(edbInfoId int, dataList []*data_manage.EdbDataList, dateChange []*data_manage.ChartSectionDateChange, moveForward int) (newDate string, err error) {
  574. if edbInfoId > 0 { //指标日期
  575. newDate = GetEdbDateByMoveForward(moveForward, dataList)
  576. } else {
  577. //系统日期
  578. newDate = time.Now().Format(utils.FormatDate)
  579. }
  580. if newDate != "" && len(dateChange) > 0 {
  581. newDate, err = HandleChartSectionSeriesDateChange(newDate, dateChange)
  582. }
  583. return
  584. }
  585. func GetEdbDateByMoveForward(moveForward int, edbDataList []*data_manage.EdbDataList) (date string) {
  586. dateList := make([]string, 0)
  587. for _, v := range edbDataList {
  588. dateList = append(dateList, v.DataTime)
  589. }
  590. date = GetEdbDateByMoveForwardByDateList(moveForward, dateList)
  591. return
  592. }
  593. func GetEdbDateByMoveForwardByDateList(moveForward int, dateList []string) (date string) {
  594. // 根据日期进行排序
  595. index := len(dateList) - 1 - moveForward
  596. for k, v := range dateList {
  597. if k == index {
  598. date = v
  599. return
  600. }
  601. }
  602. return
  603. }
  604. // HandleChartSectionSeriesDateChange 处理日期变换
  605. func HandleChartSectionSeriesDateChange(date string, dateChange []*data_manage.ChartSectionDateChange) (newDate string, err error) {
  606. newDate = date
  607. if newDate != "" {
  608. if len(dateChange) > 0 {
  609. var dateTime time.Time
  610. dateTime, err = time.ParseInLocation(utils.FormatDate, newDate, time.Local)
  611. if err != nil {
  612. err = fmt.Errorf("日期解析失败: %s", err.Error())
  613. return
  614. }
  615. for _, v := range dateChange {
  616. if v.ChangeType == 1 {
  617. dateTime = dateTime.AddDate(v.Year, v.Month, v.Day)
  618. newDate = dateTime.Format(utils.FormatDate)
  619. } else if v.ChangeType == 2 {
  620. newDate, err, _ = handleSystemAppointDateT(dateTime, v.FrequencyDay, v.Frequency)
  621. if err != nil {
  622. return
  623. }
  624. dateTime, err = time.ParseInLocation(utils.FormatDate, newDate, time.Local)
  625. if err != nil {
  626. err = fmt.Errorf("日期解析失败: %s", err.Error())
  627. return
  628. }
  629. }
  630. }
  631. }
  632. }
  633. return
  634. }
  635. // handleSystemAppointDateT
  636. // @Description: 处理系统日期相关的指定频率(所在周/旬/月/季/半年/年的最后/最早一天)
  637. // @author: Roc
  638. // @datetime2023-10-27 09:31:35
  639. // @param Frequency string
  640. // @param Day string
  641. // @return date string
  642. // @return err error
  643. // @return errMsg string
  644. func handleSystemAppointDateT(currDate time.Time, appointDay, frequency string) (date string, err error, errMsg string) {
  645. //currDate := time.Now()
  646. switch frequency {
  647. case "本周":
  648. day := int(currDate.Weekday())
  649. if day == 0 { // 周日
  650. day = 7
  651. }
  652. num := 0
  653. switch appointDay {
  654. case "周一":
  655. num = 1
  656. case "周二":
  657. num = 2
  658. case "周三":
  659. num = 3
  660. case "周四":
  661. num = 4
  662. case "周五":
  663. num = 5
  664. case "周六":
  665. num = 6
  666. case "周日":
  667. num = 7
  668. }
  669. day = num - day
  670. date = currDate.AddDate(0, 0, day).Format(utils.FormatDate)
  671. case "本旬":
  672. day := currDate.Day()
  673. var tmpDate time.Time
  674. switch appointDay {
  675. case "第一天":
  676. if day <= 10 {
  677. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  678. } else if day <= 20 {
  679. tmpDate = time.Date(currDate.Year(), currDate.Month(), 11, 0, 0, 0, 0, currDate.Location())
  680. } else {
  681. tmpDate = time.Date(currDate.Year(), currDate.Month(), 21, 0, 0, 0, 0, currDate.Location())
  682. }
  683. case "最后一天":
  684. if day <= 10 {
  685. tmpDate = time.Date(currDate.Year(), currDate.Month(), 10, 0, 0, 0, 0, currDate.Location())
  686. } else if day <= 20 {
  687. tmpDate = time.Date(currDate.Year(), currDate.Month(), 20, 0, 0, 0, 0, currDate.Location())
  688. } else {
  689. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  690. }
  691. }
  692. date = tmpDate.Format(utils.FormatDate)
  693. case "本月":
  694. var tmpDate time.Time
  695. switch appointDay {
  696. case "第一天":
  697. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  698. case "最后一天":
  699. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  700. }
  701. date = tmpDate.Format(utils.FormatDate)
  702. case "本季":
  703. month := currDate.Month()
  704. var tmpDate time.Time
  705. switch appointDay {
  706. case "第一天":
  707. if month <= 3 {
  708. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  709. } else if month <= 6 {
  710. tmpDate = time.Date(currDate.Year(), 4, 1, 0, 0, 0, 0, currDate.Location())
  711. } else if month <= 9 {
  712. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  713. } else {
  714. tmpDate = time.Date(currDate.Year(), 10, 1, 0, 0, 0, 0, currDate.Location())
  715. }
  716. case "最后一天":
  717. if month <= 3 {
  718. tmpDate = time.Date(currDate.Year(), 3, 31, 0, 0, 0, 0, currDate.Location())
  719. } else if month <= 6 {
  720. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  721. } else if month <= 9 {
  722. tmpDate = time.Date(currDate.Year(), 9, 30, 0, 0, 0, 0, currDate.Location())
  723. } else {
  724. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  725. }
  726. }
  727. date = tmpDate.Format(utils.FormatDate)
  728. case "本半年":
  729. month := currDate.Month()
  730. var tmpDate time.Time
  731. switch appointDay {
  732. case "第一天":
  733. if month <= 6 {
  734. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  735. } else {
  736. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  737. }
  738. case "最后一天":
  739. if month <= 6 {
  740. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  741. } else {
  742. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  743. }
  744. }
  745. date = tmpDate.Format(utils.FormatDate)
  746. case "本年":
  747. var tmpDate time.Time
  748. switch appointDay {
  749. case "第一天":
  750. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  751. case "最后一天":
  752. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  753. }
  754. date = tmpDate.Format(utils.FormatDate)
  755. default:
  756. errMsg = "错误的日期频度:" + frequency
  757. err = errors.New(errMsg)
  758. return
  759. }
  760. return
  761. }
  762. // sortTripleDataSet 以第一组数据为基准,排序之后,空数组的位置也要同步变更
  763. func SortChartSeriesDataSet(baseName string, baseDataList []float64, baseSeriesNoDataIndexList []int, dataListMap map[string][]float64, noDataListIndexMap map[string][]int, asc int) (newDataListMap map[string][]float64, newNoDataListIndexMap map[string][]int) {
  764. newDataListMap = make(map[string][]float64)
  765. newNoDataListIndexMap = make(map[string][]int)
  766. indices := make([]int, len(baseDataList))
  767. newIndices := make([]int, len(baseDataList)-len(baseSeriesNoDataIndexList))
  768. // 初始化indices
  769. for i := range indices {
  770. indices[i] = i
  771. }
  772. if len(baseSeriesNoDataIndexList) > 0 { //把空值移动到最右边
  773. j := 0
  774. for i := range indices {
  775. isEmpty := false
  776. for _, v := range baseSeriesNoDataIndexList {
  777. if i == v {
  778. isEmpty = true
  779. break
  780. }
  781. }
  782. if isEmpty {
  783. continue
  784. }
  785. newIndices[j] = i
  786. j += 1
  787. }
  788. newIndices = append(newIndices, baseSeriesNoDataIndexList...)
  789. // 根据排序后的indices重新排列所有组的数据
  790. for i, idx := range newIndices {
  791. for k, _ := range dataListMap {
  792. if _, ok := newDataListMap[k]; !ok {
  793. newDataListMap[k] = make([]float64, len(baseDataList))
  794. }
  795. if utils.InArrayByInt(noDataListIndexMap[k], idx) { //如果i位置上的数据为空,那么
  796. newNoDataListIndexMap[k] = append(newNoDataListIndexMap[k], i)
  797. }
  798. newDataListMap[k][i] = dataListMap[k][idx]
  799. }
  800. }
  801. dataListMap = newDataListMap
  802. noDataListIndexMap = newNoDataListIndexMap
  803. newDataListMap = make(map[string][]float64)
  804. newNoDataListIndexMap = make(map[string][]int)
  805. baseDataList, _ = dataListMap[baseName]
  806. //先把空的数据移动到最后面
  807. indices = make([]int, len(baseDataList)-len(baseSeriesNoDataIndexList)) //空值不参与排序
  808. newIndices = make([]int, len(baseDataList)) //空值不参与排序
  809. // 初始化indices
  810. for i := range indices {
  811. indices[i] = i
  812. }
  813. }
  814. length := len(indices)
  815. baseDataSortList := make([]data_manage.ChartSectionSeriesValSort, length)
  816. for i, value := range baseDataList {
  817. if i < length {
  818. baseDataSortList[i] = data_manage.ChartSectionSeriesValSort{Index: i, Value: value}
  819. }
  820. }
  821. if asc == 1 {
  822. // 使用sort.Sort进行排序
  823. sort.Sort(data_manage.ChartSectionSeriesValSortAsc(baseDataSortList))
  824. } else {
  825. sort.Sort(data_manage.ChartSectionSeriesValSortDesc(baseDataSortList))
  826. }
  827. for k, v := range baseDataSortList {
  828. indices[k] = v.Index
  829. }
  830. for i := range newIndices {
  831. if i < length {
  832. newIndices[i] = indices[i]
  833. } else {
  834. newIndices[i] = i
  835. }
  836. }
  837. // 根据排序后的indices重新排列所有组的数据
  838. for i, idx := range newIndices {
  839. for k, _ := range dataListMap {
  840. if _, ok := newDataListMap[k]; !ok {
  841. newDataListMap[k] = make([]float64, len(baseDataList))
  842. }
  843. if utils.InArrayByInt(noDataListIndexMap[k], idx) { //如果i位置上的数据为空,那么
  844. newNoDataListIndexMap[k] = append(newNoDataListIndexMap[k], i)
  845. }
  846. newDataListMap[k][i] = dataListMap[k][idx]
  847. }
  848. }
  849. return
  850. }