chart_extra_config.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  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(chartInfoId int, 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(chartInfoId, 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(chartInfoId int, 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. if chartInfoId > 0 {
  262. // 查询表里的系列信息
  263. chartSectionCombineEdbList, e := data_manage.GetChartSeriesEdbByChartInfoId(chartInfoId)
  264. if e != nil {
  265. err = e
  266. errMsg = "查询图表系列信息失败"
  267. return
  268. }
  269. for _, info := range chartSectionCombineEdbList {
  270. if info.DateConfType == 1 && info.DateConfName != "" {
  271. dateConfListMapSave[info.DateConfName] = true
  272. }
  273. }
  274. }
  275. newExtraConfig = extraConfig
  276. // 去掉没有被引用的配置
  277. newExtraConfig.DateConfList = make([]*data_manage.ChartSectionDateConfItem, 0)
  278. for _, v := range extraConfig.DateConfList {
  279. if _, ok := dateConfListMapSave[v.DateConfName]; ok {
  280. newExtraConfig.DateConfList = append(newExtraConfig.DateConfList, v)
  281. }
  282. }
  283. return
  284. }
  285. // GetChartSectionCombineData 截面组合图的数据处理
  286. 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) {
  287. // 指标数据数组(10086:{"2022-12-02":100.01,"2022-12-01":102.3})
  288. edbDataMap := make(map[int]map[string]float64)
  289. for edbInfoId, edbDataList := range edbDataListMap {
  290. edbDateData := make(map[string]float64)
  291. for _, edbData := range edbDataList {
  292. edbDateData[edbData.DataTime] = edbData.Value
  293. }
  294. edbDataMap[edbInfoId] = edbDateData
  295. }
  296. // edbIdList 指标展示顺序;x轴的指标顺序
  297. edbIdList = make([]int, 0)
  298. edbMappingMap := make(map[int]*data_manage.ChartEdbInfoMapping)
  299. for _, v := range mappingList {
  300. edbIdList = append(edbIdList, v.EdbInfoId)
  301. edbMappingMap[v.EdbInfoId] = v
  302. }
  303. // 确定好截面散点图返回的数据格式
  304. // 获取所有的引用日期设置
  305. dateConfListMap := make(map[string]*data_manage.ChartSectionDateConfItem)
  306. dateConfEdbIds := make([]int, 0)
  307. for _, v := range extraConfig.DateConfList {
  308. if v.EdbInfoId > 0 {
  309. dateConfEdbIds = append(dateConfEdbIds, v.EdbInfoId)
  310. }
  311. dateConfListMap[v.DateConfName] = v
  312. }
  313. // 遍历每个系列
  314. // 遍历每个指标,根据选中的日期,进行日期变换得到最终的日期,根据最终的日期获取对应的值
  315. // 组装数据
  316. baseSeries := new(data_manage.ChartSectionSeriesItem) //y轴的系列
  317. var firstUnit, leftUnit, rightUnit, right2Unit *data_manage.XData
  318. var (
  319. LeftMin float64
  320. LeftMax float64
  321. RightMin float64
  322. RightMax float64
  323. Right2Min float64
  324. Right2Max float64
  325. )
  326. seriesDataListMap := make(map[string][]float64)
  327. seriesNoDataIndexMap := make(map[string][]int)
  328. for _, seriesItem := range extraConfig.SeriesList {
  329. var maxDate time.Time
  330. var minVal, maxVal float64
  331. noDataEdbIndex := make([]int, 0)
  332. dataList := make([]float64, len(seriesItem.EdbInfoList))
  333. for index, edbConf := range seriesItem.EdbInfoList {
  334. edbInfoId := edbConf.EdbInfoId //X轴的指标
  335. edbMappingInfo, ok := edbMappingMap[edbInfoId]
  336. if !ok {
  337. continue
  338. }
  339. seriesItem.EdbInfoList[index].EdbName = edbMappingInfo.EdbName
  340. seriesItem.EdbInfoList[index].EdbNameEn = edbMappingInfo.EdbNameEn
  341. seriesItem.EdbInfoList[index].EdbInfoType = edbMappingInfo.EdbInfoCategoryType
  342. seriesItem.EdbInfoList[index].Unit = edbMappingInfo.Unit
  343. seriesItem.EdbInfoList[index].UnitEn = edbMappingInfo.UnitEn
  344. if index == 0 {
  345. firstUnit = &data_manage.XData{
  346. Name: edbMappingInfo.Unit,
  347. NameEn: edbMappingInfo.UnitEn,
  348. }
  349. }
  350. edbDataList, ok3 := edbDataListMap[edbInfoId]
  351. if !ok3 {
  352. err = fmt.Errorf("指标%d的日期数据不存在", edbInfoId)
  353. return
  354. }
  355. //日期变换处理,判断用指标的最新日期还是,直接获取引用日期
  356. var findDate string
  357. if edbConf.DateConfType == 0 {
  358. if edbInfoId == 0 {
  359. err = fmt.Errorf("请选择指标")
  360. return
  361. }
  362. findDate, err = GetChartSectionSeriesDateByDateChange(edbInfoId, edbDataList, edbConf.DateConf.DateChange, edbConf.DateConf.MoveForward)
  363. if err != nil {
  364. err = fmt.Errorf("指标%d的日期变换处理失败", edbInfoId)
  365. return
  366. }
  367. } else {
  368. // 获取日期配置
  369. dateConfItem, ok1 := dateConfListMap[edbConf.DateConfName]
  370. if !ok1 {
  371. err = fmt.Errorf("引用日期配置不存在")
  372. return
  373. }
  374. // todo 根据日期变换得到最终日期
  375. edbDataListTmp := make([]*data_manage.EdbDataList, 0)
  376. if dateConfItem.EdbInfoId > 0 {
  377. edbDataListTmp, ok1 = edbDataListMap[dateConfItem.EdbInfoId]
  378. if !ok1 {
  379. err = fmt.Errorf("指标%d的日期数据不存在", dateConfItem.EdbInfoId)
  380. return
  381. }
  382. }
  383. findDate, err = GetChartSectionSeriesDateByDateChange(dateConfItem.EdbInfoId, edbDataListTmp, dateConfItem.DateChange, dateConfItem.MoveForward)
  384. if err != nil {
  385. err = fmt.Errorf("指标%d的日期变换处理失败", dateConfItem.EdbInfoId)
  386. return
  387. }
  388. }
  389. findDateTime, _ := time.ParseInLocation(utils.FormatDate, findDate, time.Local)
  390. if maxDate.IsZero() {
  391. maxDate = findDateTime
  392. } else {
  393. if findDateTime.After(maxDate) {
  394. maxDate = findDateTime
  395. }
  396. }
  397. if tmpValue, ok := edbDataMap[edbInfoId][findDate]; ok {
  398. dataList[index] = tmpValue
  399. if index == 0 {
  400. minVal = tmpValue
  401. maxVal = tmpValue
  402. } else {
  403. if tmpValue < minVal {
  404. minVal = tmpValue
  405. }
  406. if tmpValue > maxVal {
  407. maxVal = tmpValue
  408. }
  409. }
  410. } else {
  411. dataList[index] = 0
  412. noDataEdbIndex = append(noDataEdbIndex, index)
  413. continue
  414. }
  415. }
  416. seriesDataListMap[seriesItem.SeriesName] = dataList
  417. seriesNoDataIndexMap[seriesItem.SeriesName] = noDataEdbIndex
  418. seriesItem.DataList = dataList
  419. seriesItem.MinData = minVal
  420. seriesItem.MaxData = maxVal
  421. seriesItem.NoDataEdbIndex = noDataEdbIndex
  422. if extraConfig.BaseChartSeriesName == seriesItem.SeriesName {
  423. baseSeries = seriesItem
  424. }
  425. if seriesItem.IsAxis == 1 && leftUnit == nil { //左轴,右轴
  426. leftUnit = firstUnit
  427. } else if seriesItem.IsAxis == 0 && rightUnit == nil {
  428. rightUnit = firstUnit
  429. } else if seriesItem.IsAxis == 2 && right2Unit == nil {
  430. right2Unit = firstUnit
  431. }
  432. //处理上下限
  433. var minData, maxData float64
  434. for _, d := range seriesItem.DataList {
  435. if minData > d {
  436. minData = d
  437. }
  438. if maxData < d {
  439. maxData = d
  440. }
  441. }
  442. if seriesItem.IsAxis == 1 {
  443. if LeftMin > minData {
  444. LeftMin = minData
  445. }
  446. if LeftMax < maxData {
  447. LeftMax = maxData
  448. }
  449. } else if seriesItem.IsAxis == 0 {
  450. if RightMin > minData {
  451. RightMin = minData
  452. }
  453. if RightMax < maxData {
  454. RightMax = maxData
  455. }
  456. } else {
  457. if Right2Min > minData {
  458. Right2Min = minData
  459. }
  460. if Right2Max < maxData {
  461. Right2Max = maxData
  462. }
  463. }
  464. }
  465. // 处理横轴
  466. // 遍历基准系列,判断有几个横轴名称
  467. if baseSeries == nil {
  468. err = fmt.Errorf("基准系列不存在")
  469. return
  470. }
  471. // 处理系列排序
  472. if extraConfig.SortType > 0 {
  473. newSeriesDataListMap, newSeriesNoDataIndexMap := SortChartSeriesDataSet(baseSeries.SeriesName, baseSeries.DataList, baseSeries.NoDataEdbIndex, seriesDataListMap, seriesNoDataIndexMap, extraConfig.SortType)
  474. for k, item := range extraConfig.SeriesList {
  475. dataList, ok := newSeriesDataListMap[item.SeriesName]
  476. if ok {
  477. extraConfig.SeriesList[k].DataList = dataList
  478. }
  479. noIndex, ok := newSeriesNoDataIndexMap[item.SeriesName]
  480. if ok {
  481. extraConfig.SeriesList[k].NoDataEdbIndex = noIndex
  482. }
  483. }
  484. }
  485. xDataList := make([]data_manage.XData, 0)
  486. for index, item := range baseSeries.EdbInfoList {
  487. if index == 0 {
  488. firstUnit = &data_manage.XData{
  489. Name: item.Unit,
  490. NameEn: item.UnitEn,
  491. }
  492. }
  493. tmp := data_manage.XData{
  494. Name: item.EdbName,
  495. NameEn: item.EdbNameEn,
  496. }
  497. // 如果已经设置了横轴名称,则用设置的名称替换
  498. if len(extraConfig.XDataList) > index {
  499. newItem := extraConfig.XDataList[index]
  500. if newItem.Name != "" {
  501. tmp = newItem
  502. }
  503. }
  504. xDataList = append(xDataList, tmp)
  505. }
  506. dataListResp.XDataList = xDataList
  507. unitList := new(data_manage.ChartSectionCombineUnit)
  508. if baseSeries.IsAxis == 1 { //左轴,右轴
  509. leftUnit = firstUnit
  510. } else if baseSeries.IsAxis == 2 {
  511. rightUnit = firstUnit
  512. } else {
  513. right2Unit = firstUnit
  514. }
  515. if leftUnit != nil {
  516. unitList.LeftName = leftUnit.Name
  517. unitList.LeftNameEn = leftUnit.NameEn
  518. }
  519. if rightUnit != nil {
  520. unitList.RightName = rightUnit.Name
  521. unitList.RightNameEn = rightUnit.NameEn
  522. }
  523. if right2Unit != nil {
  524. unitList.RightTwoName = right2Unit.Name
  525. unitList.RightTwoNameEn = right2Unit.NameEn
  526. }
  527. if extraConfig.UnitList.LeftName != "" {
  528. unitList.LeftName = extraConfig.UnitList.LeftName
  529. unitList.LeftNameEn = extraConfig.UnitList.LeftNameEn
  530. }
  531. if extraConfig.UnitList.RightName != "" {
  532. unitList.RightName = extraConfig.UnitList.RightName
  533. unitList.RightNameEn = extraConfig.UnitList.RightNameEn
  534. }
  535. if extraConfig.UnitList.RightTwoName != "" {
  536. unitList.RightTwoName = extraConfig.UnitList.RightTwoName
  537. unitList.RightTwoNameEn = extraConfig.UnitList.RightTwoNameEn
  538. }
  539. if chartInfo != nil && chartInfo.MinMaxSave == 1 {
  540. dataListResp.LeftMin = chartInfo.LeftMin
  541. dataListResp.LeftMax = chartInfo.LeftMax
  542. dataListResp.RightMin = chartInfo.RightMin
  543. dataListResp.RightMax = chartInfo.RightMax
  544. dataListResp.Right2Min = chartInfo.Right2Min
  545. dataListResp.Right2Max = chartInfo.Right2Max
  546. } else {
  547. dataListResp.LeftMin = strconv.FormatFloat(LeftMin, 'f', -1, 64)
  548. dataListResp.LeftMax = strconv.FormatFloat(LeftMax, 'f', -1, 64)
  549. dataListResp.RightMin = strconv.FormatFloat(RightMin, 'f', -1, 64)
  550. dataListResp.RightMax = strconv.FormatFloat(RightMax, 'f', -1, 64)
  551. dataListResp.Right2Min = strconv.FormatFloat(Right2Min, 'f', -1, 64)
  552. dataListResp.Right2Max = strconv.FormatFloat(Right2Max, 'f', -1, 64)
  553. }
  554. // 查询引用日期里的指标信息
  555. if len(dateConfEdbIds) > 0 {
  556. dateConfEdbList, e := data_manage.GetEdbInfoByIdList(dateConfEdbIds)
  557. if e != nil {
  558. err = fmt.Errorf("查询引用日期里的指标信息失败,错误信息:%s", e.Error())
  559. return
  560. }
  561. dateConfEdbMap := make(map[int]*data_manage.EdbInfo)
  562. for _, dateConfEdb := range dateConfEdbList {
  563. dateConfEdbMap[dateConfEdb.EdbInfoId] = dateConfEdb
  564. }
  565. for i, dateConf := range extraConfig.DateConfList {
  566. if dateConf.EdbInfoId > 0 {
  567. edbItem, ok := dateConfEdbMap[dateConf.EdbInfoId]
  568. if ok {
  569. extraConfig.DateConfList[i].EdbName = edbItem.EdbName
  570. extraConfig.DateConfList[i].EdbInfoId = edbItem.EdbInfoId
  571. extraConfig.DateConfList[i].EdbInfoType = edbItem.EdbInfoType
  572. extraConfig.DateConfList[i].Frequency = edbItem.Frequency
  573. extraConfig.DateConfList[i].EndDate = edbItem.EndDate
  574. }
  575. }
  576. }
  577. }
  578. dataListResp.SeriesList = extraConfig.SeriesList
  579. dataListResp.DateConfList = extraConfig.DateConfList
  580. dataListResp.BaseChartSeriesName = extraConfig.BaseChartSeriesName
  581. dataListResp.UnitList = unitList
  582. dataListResp.IsHeap = extraConfig.IsHeap
  583. dataListResp.SortType = extraConfig.SortType
  584. return
  585. }
  586. // GetChartSectionSeriesDateByDateChange 获取日期变换后的日期edbInfoId 1指标日期,2 系统日期
  587. func GetChartSectionSeriesDateByDateChange(edbInfoId int, dataList []*data_manage.EdbDataList, dateChange []*data_manage.ChartSectionDateChange, moveForward int) (newDate string, err error) {
  588. if edbInfoId > 0 { //指标日期
  589. newDate = GetEdbDateByMoveForward(moveForward, dataList)
  590. } else {
  591. //系统日期
  592. newDate = time.Now().Format(utils.FormatDate)
  593. }
  594. if newDate != "" && len(dateChange) > 0 {
  595. newDate, err = HandleChartSectionSeriesDateChange(newDate, dateChange)
  596. }
  597. return
  598. }
  599. func GetEdbDateByMoveForward(moveForward int, edbDataList []*data_manage.EdbDataList) (date string) {
  600. dateList := make([]string, 0)
  601. for _, v := range edbDataList {
  602. dateList = append(dateList, v.DataTime)
  603. }
  604. date = GetEdbDateByMoveForwardByDateList(moveForward, dateList)
  605. return
  606. }
  607. func GetEdbDateByMoveForwardByDateList(moveForward int, dateList []string) (date string) {
  608. // 根据日期进行排序
  609. index := len(dateList) - 1 - moveForward
  610. for k, v := range dateList {
  611. if k == index {
  612. date = v
  613. return
  614. }
  615. }
  616. return
  617. }
  618. // HandleChartSectionSeriesDateChange 处理日期变换
  619. func HandleChartSectionSeriesDateChange(date string, dateChange []*data_manage.ChartSectionDateChange) (newDate string, err error) {
  620. newDate = date
  621. if newDate != "" {
  622. if len(dateChange) > 0 {
  623. var dateTime time.Time
  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. for _, v := range dateChange {
  630. if v.ChangeType == 1 {
  631. dateTime = dateTime.AddDate(v.Year, v.Month, v.Day)
  632. newDate = dateTime.Format(utils.FormatDate)
  633. } else if v.ChangeType == 2 {
  634. newDate, err, _ = handleSystemAppointDateT(dateTime, v.FrequencyDay, v.Frequency)
  635. if err != nil {
  636. return
  637. }
  638. dateTime, err = time.ParseInLocation(utils.FormatDate, newDate, time.Local)
  639. if err != nil {
  640. err = fmt.Errorf("日期解析失败: %s", err.Error())
  641. return
  642. }
  643. }
  644. }
  645. }
  646. }
  647. return
  648. }
  649. // handleSystemAppointDateT
  650. // @Description: 处理系统日期相关的指定频率(所在周/旬/月/季/半年/年的最后/最早一天)
  651. // @author: Roc
  652. // @datetime2023-10-27 09:31:35
  653. // @param Frequency string
  654. // @param Day string
  655. // @return date string
  656. // @return err error
  657. // @return errMsg string
  658. func handleSystemAppointDateT(currDate time.Time, appointDay, frequency string) (date string, err error, errMsg string) {
  659. //currDate := time.Now()
  660. switch frequency {
  661. case "本周":
  662. day := int(currDate.Weekday())
  663. if day == 0 { // 周日
  664. day = 7
  665. }
  666. num := 0
  667. switch appointDay {
  668. case "周一":
  669. num = 1
  670. case "周二":
  671. num = 2
  672. case "周三":
  673. num = 3
  674. case "周四":
  675. num = 4
  676. case "周五":
  677. num = 5
  678. case "周六":
  679. num = 6
  680. case "周日":
  681. num = 7
  682. }
  683. day = num - day
  684. date = currDate.AddDate(0, 0, day).Format(utils.FormatDate)
  685. case "本旬":
  686. day := currDate.Day()
  687. var tmpDate time.Time
  688. switch appointDay {
  689. case "第一天":
  690. if day <= 10 {
  691. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  692. } else if day <= 20 {
  693. tmpDate = time.Date(currDate.Year(), currDate.Month(), 11, 0, 0, 0, 0, currDate.Location())
  694. } else {
  695. tmpDate = time.Date(currDate.Year(), currDate.Month(), 21, 0, 0, 0, 0, currDate.Location())
  696. }
  697. case "最后一天":
  698. if day <= 10 {
  699. tmpDate = time.Date(currDate.Year(), currDate.Month(), 10, 0, 0, 0, 0, currDate.Location())
  700. } else if day <= 20 {
  701. tmpDate = time.Date(currDate.Year(), currDate.Month(), 20, 0, 0, 0, 0, currDate.Location())
  702. } else {
  703. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  704. }
  705. }
  706. date = tmpDate.Format(utils.FormatDate)
  707. case "本月":
  708. var tmpDate time.Time
  709. switch appointDay {
  710. case "第一天":
  711. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  712. case "最后一天":
  713. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  714. }
  715. date = tmpDate.Format(utils.FormatDate)
  716. case "本季":
  717. month := currDate.Month()
  718. var tmpDate time.Time
  719. switch appointDay {
  720. case "第一天":
  721. if month <= 3 {
  722. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  723. } else if month <= 6 {
  724. tmpDate = time.Date(currDate.Year(), 4, 1, 0, 0, 0, 0, currDate.Location())
  725. } else if month <= 9 {
  726. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  727. } else {
  728. tmpDate = time.Date(currDate.Year(), 10, 1, 0, 0, 0, 0, currDate.Location())
  729. }
  730. case "最后一天":
  731. if month <= 3 {
  732. tmpDate = time.Date(currDate.Year(), 3, 31, 0, 0, 0, 0, currDate.Location())
  733. } else if month <= 6 {
  734. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  735. } else if month <= 9 {
  736. tmpDate = time.Date(currDate.Year(), 9, 30, 0, 0, 0, 0, currDate.Location())
  737. } else {
  738. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  739. }
  740. }
  741. date = tmpDate.Format(utils.FormatDate)
  742. case "本半年":
  743. month := currDate.Month()
  744. var tmpDate time.Time
  745. switch appointDay {
  746. case "第一天":
  747. if month <= 6 {
  748. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  749. } else {
  750. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  751. }
  752. case "最后一天":
  753. if month <= 6 {
  754. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  755. } else {
  756. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  757. }
  758. }
  759. date = tmpDate.Format(utils.FormatDate)
  760. case "本年":
  761. var tmpDate time.Time
  762. switch appointDay {
  763. case "第一天":
  764. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  765. case "最后一天":
  766. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  767. }
  768. date = tmpDate.Format(utils.FormatDate)
  769. default:
  770. errMsg = "错误的日期频度:" + frequency
  771. err = errors.New(errMsg)
  772. return
  773. }
  774. return
  775. }
  776. // sortTripleDataSet 以第一组数据为基准,排序之后,空数组的位置也要同步变更
  777. 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) {
  778. newDataListMap = make(map[string][]float64)
  779. newNoDataListIndexMap = make(map[string][]int)
  780. indices := make([]int, len(baseDataList))
  781. newIndices := make([]int, len(baseDataList)-len(baseSeriesNoDataIndexList))
  782. // 初始化indices
  783. for i := range indices {
  784. indices[i] = i
  785. }
  786. if len(baseSeriesNoDataIndexList) > 0 { //把空值移动到最右边
  787. j := 0
  788. for i := range indices {
  789. isEmpty := false
  790. for _, v := range baseSeriesNoDataIndexList {
  791. if i == v {
  792. isEmpty = true
  793. break
  794. }
  795. }
  796. if isEmpty {
  797. continue
  798. }
  799. newIndices[j] = i
  800. j += 1
  801. }
  802. newIndices = append(newIndices, baseSeriesNoDataIndexList...)
  803. // 根据排序后的indices重新排列所有组的数据
  804. for i, idx := range newIndices {
  805. for k, _ := range dataListMap {
  806. if _, ok := newDataListMap[k]; !ok {
  807. newDataListMap[k] = make([]float64, len(baseDataList))
  808. }
  809. if utils.InArrayByInt(noDataListIndexMap[k], idx) { //如果i位置上的数据为空,那么
  810. newNoDataListIndexMap[k] = append(newNoDataListIndexMap[k], i)
  811. }
  812. newDataListMap[k][i] = dataListMap[k][idx]
  813. }
  814. }
  815. dataListMap = newDataListMap
  816. noDataListIndexMap = newNoDataListIndexMap
  817. newDataListMap = make(map[string][]float64)
  818. newNoDataListIndexMap = make(map[string][]int)
  819. baseDataList, _ = dataListMap[baseName]
  820. //先把空的数据移动到最后面
  821. indices = make([]int, len(baseDataList)-len(baseSeriesNoDataIndexList)) //空值不参与排序
  822. newIndices = make([]int, len(baseDataList)) //空值不参与排序
  823. // 初始化indices
  824. for i := range indices {
  825. indices[i] = i
  826. }
  827. }
  828. length := len(indices)
  829. baseDataSortList := make([]data_manage.ChartSectionSeriesValSort, length)
  830. for i, value := range baseDataList {
  831. if i < length {
  832. baseDataSortList[i] = data_manage.ChartSectionSeriesValSort{Index: i, Value: value}
  833. }
  834. }
  835. if asc == 1 {
  836. // 使用sort.Sort进行排序
  837. sort.Sort(data_manage.ChartSectionSeriesValSortAsc(baseDataSortList))
  838. } else {
  839. sort.Sort(data_manage.ChartSectionSeriesValSortDesc(baseDataSortList))
  840. }
  841. for k, v := range baseDataSortList {
  842. indices[k] = v.Index
  843. }
  844. for i := range newIndices {
  845. if i < length {
  846. newIndices[i] = indices[i]
  847. } else {
  848. newIndices[i] = i
  849. }
  850. }
  851. // 根据排序后的indices重新排列所有组的数据
  852. for i, idx := range newIndices {
  853. for k, _ := range dataListMap {
  854. if _, ok := newDataListMap[k]; !ok {
  855. newDataListMap[k] = make([]float64, len(baseDataList))
  856. }
  857. if utils.InArrayByInt(noDataListIndexMap[k], idx) { //如果i位置上的数据为空,那么
  858. newNoDataListIndexMap[k] = append(newNoDataListIndexMap[k], i)
  859. }
  860. newDataListMap[k][i] = dataListMap[k][idx]
  861. }
  862. }
  863. return
  864. }