excel_info.go 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046
  1. package data
  2. import (
  3. "errors"
  4. "fmt"
  5. "github.com/shopspring/decimal"
  6. "github.com/yidane/formula"
  7. "hongze/hongze_chart_lib/models"
  8. "hongze/hongze_chart_lib/models/data_manage"
  9. "hongze/hongze_chart_lib/models/request"
  10. "hongze/hongze_chart_lib/utils"
  11. "sort"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. // GetFirstEdbDataList 获取第一列的数据
  17. func GetFirstEdbDataList(edbInfo *data_manage.EdbInfo, num int) (resultDataList []request.ManualDataReq, err error) {
  18. var dataList []*models.EdbDataList
  19. switch edbInfo.EdbInfoType {
  20. case 0:
  21. dataList, err = models.GetEdbDataList(edbInfo.Source, edbInfo.EdbInfoId, ``, ``)
  22. case 1:
  23. _, dataList, _, _, err, _ = GetPredictDataListByPredictEdbInfoId(edbInfo.EdbInfoId, ``, ``, false)
  24. default:
  25. err = errors.New(fmt.Sprint("获取失败,指标类型异常", edbInfo.EdbInfoType))
  26. return
  27. }
  28. // 获取需要的期数
  29. lenData := len(dataList)
  30. if num > lenData {
  31. num = lenData
  32. }
  33. for i := 1; i <= num; i++ {
  34. resultDataList = append(resultDataList, request.ManualDataReq{
  35. DataType: 1,
  36. DataTime: dataList[lenData-i].DataTime,
  37. ShowValue: fmt.Sprint(dataList[lenData-i].Value),
  38. Value: fmt.Sprint(dataList[lenData-i].Value),
  39. DataTimeType: 1,
  40. })
  41. }
  42. return
  43. }
  44. // GetOtherEdbDataList 获取其他列的数据
  45. func GetOtherEdbDataList(edbInfo *data_manage.EdbInfo, dateList []string) (resultDataList []request.ManualDataReq, err error) {
  46. lenDate := len(dateList)
  47. if lenDate <= 0 {
  48. return
  49. }
  50. sortDateList := dateList
  51. baseDateList := utils.StrArr{}
  52. baseDateList = append(baseDateList, sortDateList...)
  53. sort.Sort(baseDateList)
  54. sortDateList = append([]string{}, baseDateList...)
  55. endDateTime, err := time.ParseInLocation(utils.FormatDate, sortDateList[0], time.Local)
  56. if err != nil {
  57. return
  58. }
  59. firstDateTime, err := time.ParseInLocation(utils.FormatDate, sortDateList[lenDate-1], time.Local)
  60. if err != nil {
  61. return
  62. }
  63. var dataList []*models.EdbDataList
  64. switch edbInfo.EdbInfoType {
  65. case 0:
  66. dataList, err = models.GetEdbDataList(edbInfo.Source, edbInfo.EdbInfoId, ``, ``)
  67. case 1:
  68. _, dataList, _, _, err, _ = GetPredictDataListByPredictEdbInfoId(edbInfo.EdbInfoId, ``, ``, false)
  69. default:
  70. err = errors.New(fmt.Sprint("获取失败,指标类型异常", edbInfo.EdbInfoType))
  71. return
  72. }
  73. // 获取日期内的数据(包含开始日期前一个日期,以及 结束日期后一个日期,目的为了做空日期时的 插值法兼容)
  74. baseDataList := make([]*models.EdbDataList, 0)
  75. var lastData *models.EdbDataList
  76. var isInsert bool
  77. for _, data := range dataList {
  78. tmpDate := data.DataTime
  79. tmpDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, tmpDate, time.Local)
  80. if tmpErr != nil {
  81. err = tmpErr
  82. return
  83. }
  84. if tmpDateTime.Before(firstDateTime) {
  85. lastData = data
  86. continue
  87. }
  88. // 如果是第一次写入数据
  89. if !isInsert && lastData != nil {
  90. baseDataList = append(baseDataList, lastData)
  91. }
  92. if tmpDateTime.After(endDateTime) {
  93. baseDataList = append(baseDataList, data)
  94. break
  95. }
  96. baseDataList = append(baseDataList, data)
  97. isInsert = true
  98. }
  99. // 实际数据的日期map
  100. realValMap := make(map[string]string)
  101. for _, v := range baseDataList {
  102. realValMap[v.DataTime] = v.DataTime
  103. }
  104. // 插值法处理
  105. handleDataMap := make(map[string]float64)
  106. err = HandleDataByLinearRegression(baseDataList, handleDataMap)
  107. if err != nil {
  108. return
  109. }
  110. // 对于不存在的数据做补充
  111. for _, date := range sortDateList {
  112. dataType := 1
  113. if _, ok := realValMap[date]; !ok {
  114. dataType = 2
  115. }
  116. var value, showValue string
  117. if tmpVal, ok := handleDataMap[date]; ok {
  118. value = fmt.Sprint(tmpVal)
  119. showValue = value
  120. } else {
  121. dataType = 3
  122. }
  123. resultDataList = append(resultDataList, request.ManualDataReq{
  124. DataType: dataType,
  125. DataTime: date,
  126. ShowValue: showValue,
  127. Value: value,
  128. })
  129. }
  130. return
  131. }
  132. // GetFirstHistoryEdbDataList 获取指标的历史的数据
  133. func GetFirstHistoryEdbDataList(edbInfo *data_manage.EdbInfo, num int, endDate string) (resultDataList []request.ManualDataReq, err error) {
  134. endDateTime, err := time.ParseInLocation(utils.FormatDate, endDate, time.Local)
  135. if err != nil {
  136. return
  137. }
  138. var dataList []*models.EdbDataList
  139. switch edbInfo.EdbInfoType {
  140. case 0:
  141. dataList, err = models.GetEdbDataList(edbInfo.Source, edbInfo.EdbInfoId, ``, endDate)
  142. case 1:
  143. _, dataList, _, _, err, _ = GetPredictDataListByPredictEdbInfoId(edbInfo.EdbInfoId, ``, endDate, true)
  144. default:
  145. err = errors.New(fmt.Sprint("获取失败,指标类型异常", edbInfo.EdbInfoType))
  146. return
  147. }
  148. // 获取需要的期数
  149. lenData := len(dataList)
  150. if lenData <= 0 {
  151. return
  152. }
  153. lastData := dataList[lenData-1]
  154. lastDataDateTime, err := time.ParseInLocation(utils.FormatDate, lastData.DataTime, time.Local)
  155. if err != nil {
  156. return
  157. }
  158. if endDateTime.Equal(lastDataDateTime) || lastDataDateTime.After(endDateTime) {
  159. dataList = dataList[:lenData-1]
  160. lenData = len(dataList)
  161. }
  162. if num > lenData {
  163. num = lenData
  164. }
  165. for i := 1; i <= num; i++ {
  166. resultDataList = append(resultDataList, request.ManualDataReq{
  167. DataType: 1,
  168. DataTime: dataList[lenData-i].DataTime,
  169. ShowValue: fmt.Sprint(dataList[lenData-i].Value),
  170. Value: fmt.Sprint(dataList[lenData-i].Value),
  171. })
  172. }
  173. return
  174. }
  175. type TableDataConfig struct {
  176. EdbInfoIdList []int `description:"指标id列表,从左至右,从上到下的顺序"`
  177. Sort int `description:"日期排序,0:倒序,1:正序"`
  178. Data []ManualData `description:"数据列表"`
  179. Num int `description:"实际数据需要列出来的期数"`
  180. RemoveDate []string `description:"不展示的日期"`
  181. ManualDate []string `description:"手动配置的日期(未来的日期)"`
  182. TableEdbInfoList []TableEdbInfo `description:"表格内指标信息"`
  183. TextRowData [][]request.ManualDataReq `description:"文本列表"`
  184. }
  185. type TableEdbInfo struct {
  186. EdbInfoId int `description:"指标ID"`
  187. Tag string `description:"标签"`
  188. EdbName string `description:"指标名称"`
  189. EdbAliasName string `description:"指标别名"`
  190. Frequency string `description:"频度"`
  191. Unit string `description:"单位"`
  192. }
  193. type ManualData struct {
  194. DataType int `description:"数据类型,1:普通的,2:插值法,3:手动输入,4:公式计算"`
  195. DataTime string `description:"所属日期"`
  196. DataTimeType int `description:"日期类型,1:实际日期;2:未来日期"`
  197. ShowValue string `description:"展示值"`
  198. Value string `description:"实际值(计算公式)"`
  199. EdbInfoId int `description:"指标id"`
  200. Tag string `description:"下标"`
  201. RelationEdbInfoList []request.RelationEdbInfo `description:"关联指标(计算公式中关联的指标,用于计算的时候去匹配)"`
  202. }
  203. func GetTableDataConfig(reqData request.TableDataReq) (tableDataConfig TableDataConfig, err error) {
  204. // 指标数据
  205. tableDataConfig.EdbInfoIdList = reqData.EdbInfoIdList
  206. tableDataConfig.Sort = reqData.Sort
  207. // 开始日期
  208. var startDate string
  209. // A列的指标id
  210. var firstEdbInfoId int
  211. // 手工操作的数据列
  212. manualDataList := make([]ManualData, 0)
  213. // 指标配置列表
  214. tableEdbInfoList := make([]TableEdbInfo, 0)
  215. // 第一列的日期map
  216. firstDateMap := make(map[string]string)
  217. manualDateMap := make(map[string]string)
  218. for _, v := range reqData.Data {
  219. // 指标信息
  220. tmpTableEdbInfo := TableEdbInfo{
  221. EdbInfoId: v.EdbInfoId,
  222. Tag: v.Tag,
  223. EdbName: v.EdbName,
  224. EdbAliasName: v.EdbAliasName,
  225. Frequency: v.Frequency,
  226. Unit: v.Unit,
  227. }
  228. tableEdbInfoList = append(tableEdbInfoList, tmpTableEdbInfo)
  229. // 确定数据A列
  230. if v.Tag == "A" {
  231. firstEdbInfoId = v.EdbInfoId
  232. lenData := len(v.Data)
  233. if lenData <= 0 {
  234. err = errors.New("A列不能为空")
  235. return
  236. }
  237. index := 0
  238. if reqData.Sort == 1 {
  239. // 倒序
  240. index = lenData - 1
  241. }
  242. startDate = v.Data[index].DataTime
  243. // 存在的日期列表
  244. for _, data := range v.Data {
  245. firstDateMap[data.DataTime] = data.DataTime
  246. if data.DataTimeType == 2 {
  247. manualDateMap[data.DataTime] = data.DataTime
  248. }
  249. }
  250. }
  251. for _, data := range v.Data {
  252. if data.DataType == 3 || data.DataType == 4 {
  253. tmpManualData := ManualData{
  254. DataType: data.DataType,
  255. DataTime: data.DataTime,
  256. DataTimeType: data.DataTimeType,
  257. ShowValue: data.ShowValue,
  258. Value: data.Value,
  259. EdbInfoId: v.EdbInfoId,
  260. Tag: v.Tag,
  261. RelationEdbInfoList: data.RelationEdbInfoList,
  262. }
  263. if data.DataType == 4 {
  264. tmpManualData.ShowValue = ``
  265. }
  266. manualDataList = append(manualDataList, tmpManualData)
  267. }
  268. }
  269. }
  270. // 实际期数
  271. var num int
  272. removeDate := make([]string, 0)
  273. // 获取期数
  274. {
  275. firstDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, startDate, time.Local)
  276. if tmpErr != nil {
  277. err = tmpErr
  278. return
  279. }
  280. edbInfo, tmpErr := data_manage.GetEdbInfoById(firstEdbInfoId)
  281. if tmpErr != nil {
  282. err = tmpErr
  283. return
  284. }
  285. var firstDataList []*models.EdbDataList
  286. switch edbInfo.EdbInfoType {
  287. case 0:
  288. firstDataList, err = models.GetEdbDataList(edbInfo.Source, edbInfo.EdbInfoId, ``, ``)
  289. case 1:
  290. _, firstDataList, _, _, err, _ = GetPredictDataListByPredictEdbInfoId(edbInfo.EdbInfoId, ``, ``, false)
  291. default:
  292. err = errors.New(fmt.Sprint("获取失败,指标类型异常", edbInfo.EdbInfoType))
  293. return
  294. }
  295. // 获取日期内的数据(包含开始日期前一个日期,以及 结束日期后一个日期,目的为了做空日期时的 插值法兼容)
  296. baseDataList := make([]*models.EdbDataList, 0)
  297. for _, data := range firstDataList {
  298. tmpDate := data.DataTime
  299. tmpDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, tmpDate, time.Local)
  300. if tmpErr != nil {
  301. err = tmpErr
  302. return
  303. }
  304. if tmpDateTime.Before(firstDateTime) {
  305. continue
  306. }
  307. baseDataList = append(baseDataList, data)
  308. }
  309. // 开始日期到现在的实际期数
  310. num = len(baseDataList)
  311. // 筛选出需要删除的日期
  312. for _, tmpData := range baseDataList {
  313. //firstDateMap{}
  314. if _, ok := firstDateMap[tmpData.DataTime]; !ok {
  315. removeDate = append(removeDate, tmpData.DataTime)
  316. }
  317. }
  318. }
  319. tableDataConfig.Num = num
  320. tableDataConfig.RemoveDate = removeDate
  321. tableDataConfig.Data = manualDataList
  322. tableDataConfig.TableEdbInfoList = tableEdbInfoList
  323. tableDataConfig.TextRowData = reqData.TextRowData
  324. return
  325. }
  326. func GetDataByTableDataConfig(tableDataConfig TableDataConfig) (resultResp request.TableDataReq, err error) {
  327. // 没有选择指标的情况下,直接返回吧
  328. if len(tableDataConfig.EdbInfoIdList) <= 0 {
  329. return
  330. }
  331. // 实际期数没有的情况下,直接返回吧
  332. if tableDataConfig.Num <= 0 {
  333. return
  334. }
  335. // 获取所有的指标信息
  336. edbInfoMap := make(map[int]*data_manage.EdbInfo)
  337. edbInfoIdList := make([]int, 0)
  338. // 标签与指标id的map
  339. tagEdbInfoIdMap := make(map[string]int)
  340. {
  341. for _, tableEdbInfo := range tableDataConfig.TableEdbInfoList {
  342. edbInfoIdList = append(edbInfoIdList, tableEdbInfo.EdbInfoId)
  343. tagEdbInfoIdMap[tableEdbInfo.Tag] = tableEdbInfo.EdbInfoId
  344. }
  345. edbInfoList, tmpErr := data_manage.GetEdbInfoByIdList(edbInfoIdList)
  346. if tmpErr != nil {
  347. err = tmpErr
  348. return
  349. }
  350. for _, v := range edbInfoList {
  351. edbInfoMap[v.EdbInfoId] = v
  352. }
  353. }
  354. // 寻找A列的数据列表
  355. firstEdbInfo, ok := edbInfoMap[tableDataConfig.EdbInfoIdList[0]]
  356. if !ok {
  357. err = errors.New("找不到A列指标")
  358. return
  359. }
  360. baseFirstEdbInfoDataList, err := GetFirstEdbDataList(firstEdbInfo, tableDataConfig.Num)
  361. if err != nil {
  362. return
  363. }
  364. // A列找不到数据,那么就直接返回吧
  365. if len(baseFirstEdbInfoDataList) <= 0 {
  366. return
  367. }
  368. firstEdbInfoDataList := make([]request.ManualDataReq, 0)
  369. if tableDataConfig.RemoveDate != nil && len(tableDataConfig.RemoveDate) > 0 {
  370. for _, v := range baseFirstEdbInfoDataList {
  371. if utils.InArrayByStr(tableDataConfig.RemoveDate, v.DataTime) {
  372. continue
  373. }
  374. firstEdbInfoDataList = append(firstEdbInfoDataList, v)
  375. }
  376. } else {
  377. firstEdbInfoDataList = baseFirstEdbInfoDataList
  378. }
  379. if len(firstEdbInfoDataList) <= 0 {
  380. return
  381. }
  382. // 实际数据的最后一天
  383. lastRealDateTime, err := time.ParseInLocation(utils.FormatDate, firstEdbInfoDataList[0].DataTime, time.Local)
  384. if err != nil {
  385. return
  386. }
  387. dateMap := make(map[string]string)
  388. dateList := make([]string, 0)
  389. edbInfoIdDateDataMap := make(map[int]map[string]request.ManualDataReq)
  390. firstDateDataMap := make(map[string]request.ManualDataReq)
  391. for _, v := range firstEdbInfoDataList {
  392. dateList = append(dateList, v.DataTime)
  393. dateMap[v.DataTime] = v.DataTime
  394. firstDateDataMap[v.DataTime] = v
  395. }
  396. // 将手工数据的日期填补进去(未来的日期,过去的就不管了)
  397. for _, manualData := range tableDataConfig.Data {
  398. if !utils.InArrayByStr(dateList, manualData.DataTime) {
  399. tmpDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, manualData.DataTime, time.Local)
  400. if tmpErr != nil {
  401. err = tmpErr
  402. return
  403. }
  404. if tmpDateTime.After(lastRealDateTime) {
  405. dateList = append(dateList, manualData.DataTime)
  406. }
  407. }
  408. }
  409. edbInfoIdDateDataMap[firstEdbInfo.EdbInfoId] = firstDateDataMap
  410. for k, edbInfoId := range tableDataConfig.EdbInfoIdList {
  411. if k == 0 {
  412. continue
  413. }
  414. tmpEdbInfo, ok := edbInfoMap[edbInfoId]
  415. if !ok {
  416. err = errors.New("找不到A列指标")
  417. return
  418. }
  419. otherDataList, tmpErr := GetOtherEdbDataList(tmpEdbInfo, dateList)
  420. if tmpErr != nil {
  421. err = tmpErr
  422. return
  423. }
  424. tmpDateDataMap := make(map[string]request.ManualDataReq)
  425. for _, v := range otherDataList {
  426. tmpDateDataMap[v.DataTime] = v
  427. }
  428. edbInfoIdDateDataMap[tmpEdbInfo.EdbInfoId] = tmpDateDataMap
  429. }
  430. for _, v := range tableDataConfig.Data {
  431. tmpDate := v.DataTime
  432. if _, ok := dateMap[tmpDate]; !ok {
  433. dateMap[v.DataTime] = tmpDate
  434. }
  435. edbInfoIdDateData, ok := edbInfoIdDateDataMap[v.EdbInfoId]
  436. if !ok {
  437. edbInfoIdDateData = make(map[string]request.ManualDataReq)
  438. }
  439. // 判断是否存在该日期的数据(不存在,那么插入数据吧,存在就不管了)
  440. if _, ok = edbInfoIdDateData[tmpDate]; !ok {
  441. edbInfoIdDateData[tmpDate] = request.ManualDataReq{
  442. DataType: v.DataType,
  443. DataTime: v.DataTime,
  444. ShowValue: v.ShowValue,
  445. Value: v.Value,
  446. }
  447. }
  448. edbInfoIdDateDataMap[v.EdbInfoId] = edbInfoIdDateData
  449. }
  450. // 获取数据的日期排序
  451. sortDateTimeList := make([]time.Time, 0)
  452. {
  453. sortDateList := dateList
  454. if tableDataConfig.Sort == 1 {
  455. baseDateList := utils.StrArr{}
  456. baseDateList = append(baseDateList, sortDateList...)
  457. sort.Sort(baseDateList)
  458. sortDateList = append([]string{}, baseDateList...)
  459. } else {
  460. sort.Strings(sortDateList)
  461. }
  462. for _, v := range sortDateList {
  463. tmpDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, v, time.Local)
  464. if tmpErr != nil {
  465. err = tmpErr
  466. return
  467. }
  468. sortDateTimeList = append(sortDateTimeList, tmpDateTime)
  469. }
  470. }
  471. tableDataMap, textRowListDataResp := handleTable(tagEdbInfoIdMap, lastRealDateTime, sortDateTimeList, edbInfoIdDateDataMap, tableDataConfig.Data, tableDataConfig.TextRowData)
  472. data := make([]request.EdbInfoData, 0)
  473. for _, tableEdbInfo := range tableDataConfig.TableEdbInfoList {
  474. tagEdbInfoIdMap[tableEdbInfo.Tag] = tableEdbInfo.EdbInfoId
  475. manualDataReqList := make([]request.ManualDataReq, 0)
  476. tmpEdbInfoData := request.EdbInfoData{
  477. EdbInfoId: tableEdbInfo.EdbInfoId,
  478. Tag: tableEdbInfo.Tag,
  479. EdbName: tableEdbInfo.EdbName,
  480. EdbAliasName: tableEdbInfo.EdbAliasName,
  481. Frequency: tableEdbInfo.Frequency,
  482. Unit: tableEdbInfo.Unit,
  483. Data: manualDataReqList,
  484. }
  485. edbInfo, ok := edbInfoMap[tableEdbInfo.EdbInfoId]
  486. if ok {
  487. tmpEdbInfoData.EdbName = edbInfo.EdbName
  488. tmpEdbInfoData.Frequency = edbInfo.Frequency
  489. tmpEdbInfoData.Unit = edbInfo.Unit
  490. }
  491. for index, dateTime := range sortDateTimeList {
  492. dataTimeType := 1
  493. if dateTime.After(lastRealDateTime) {
  494. dataTimeType = 2
  495. }
  496. tmpDateTimeStr := dateTime.Format(utils.FormatDate)
  497. rowData, ok := tableDataMap[index+1]
  498. if !ok {
  499. manualDataReqList = append(manualDataReqList, request.ManualDataReq{
  500. DataType: 3,
  501. DataTime: tmpDateTimeStr,
  502. DataTimeType: dataTimeType,
  503. ShowValue: "",
  504. Value: "",
  505. RelationEdbInfoList: nil,
  506. })
  507. continue
  508. }
  509. tmpData, ok := rowData[tableEdbInfo.Tag]
  510. if !ok {
  511. manualDataReqList = append(manualDataReqList, request.ManualDataReq{
  512. DataType: 3,
  513. DataTime: tmpDateTimeStr,
  514. DataTimeType: dataTimeType,
  515. ShowValue: "",
  516. Value: "",
  517. RelationEdbInfoList: nil,
  518. })
  519. continue
  520. }
  521. tmpData.DataTimeType = dataTimeType
  522. manualDataReqList = append(manualDataReqList, tmpData)
  523. }
  524. tmpEdbInfoData.Data = manualDataReqList
  525. data = append(data, tmpEdbInfoData)
  526. }
  527. resultResp = request.TableDataReq{
  528. EdbInfoIdList: edbInfoIdList,
  529. Sort: tableDataConfig.Sort,
  530. TextRowData: textRowListDataResp,
  531. Data: data,
  532. }
  533. return
  534. }
  535. func handleTable(tagEdbInfoIdMap map[string]int, lastRealDateTime time.Time, sortDateTimeList []time.Time, edbInfoIdDateDataMap map[int]map[string]request.ManualDataReq, manualDataList []ManualData, textRowData [][]request.ManualDataReq) (tableDataMap map[int]map[string]request.ManualDataReq, textRowListDataResp [][]request.ManualDataReq) {
  536. tagList := make([]string, 0)
  537. for tag := range tagEdbInfoIdMap {
  538. tagList = append(tagList, tag)
  539. }
  540. sort.Strings(tagList)
  541. tableDataMap = make(map[int]map[string]request.ManualDataReq) //行、列数据
  542. // 日期与行的关系
  543. dateIndexMap := make(map[string]int)
  544. for k, dateTime := range sortDateTimeList {
  545. rowDataMap := make(map[string]request.ManualDataReq)
  546. dataTimeType := 1
  547. if dateTime.After(lastRealDateTime) {
  548. dataTimeType = 2
  549. }
  550. tmpDateTimeStr := dateTime.Format(utils.FormatDate)
  551. dateIndexMap[tmpDateTimeStr] = k + 1
  552. for _, tag := range tagList {
  553. edbInfoId, ok := tagEdbInfoIdMap[tag]
  554. if !ok { // 没有找到该指标的映射关系,那么就用空串填补
  555. rowDataMap[tag] = request.ManualDataReq{
  556. DataType: 3,
  557. DataTime: tmpDateTimeStr,
  558. DataTimeType: dataTimeType,
  559. ShowValue: "",
  560. Value: "",
  561. RelationEdbInfoList: nil,
  562. }
  563. continue
  564. }
  565. // 获取指标的数据map
  566. dateDataMap, ok := edbInfoIdDateDataMap[edbInfoId]
  567. if !ok { // 没有找到该指标的数据,那么就用空串填补
  568. rowDataMap[tag] = request.ManualDataReq{
  569. DataType: 3,
  570. DataTime: tmpDateTimeStr,
  571. DataTimeType: dataTimeType,
  572. ShowValue: "",
  573. Value: "",
  574. RelationEdbInfoList: nil,
  575. }
  576. continue
  577. }
  578. // 获取指标该日期的数据
  579. tmpData, ok := dateDataMap[tmpDateTimeStr]
  580. if !ok { // 该指标没有找到对应日期的数据,那么就用空串填补
  581. rowDataMap[tag] = request.ManualDataReq{
  582. DataType: 3,
  583. DataTime: tmpDateTimeStr,
  584. DataTimeType: dataTimeType,
  585. ShowValue: "",
  586. Value: "",
  587. RelationEdbInfoList: nil,
  588. }
  589. continue
  590. }
  591. tmpData.DataTimeType = dataTimeType
  592. rowDataMap[tag] = tmpData
  593. }
  594. tableDataMap[k+1] = rowDataMap
  595. }
  596. // 替换手工设置的数据
  597. for _, manualData := range manualDataList {
  598. // 找不到该日期,说明这日期过期了,不处理
  599. index, ok := dateIndexMap[manualData.DataTime]
  600. if !ok {
  601. continue
  602. }
  603. // 获取对应行的数据
  604. rowDataMap, ok := tableDataMap[index]
  605. if !ok {
  606. continue
  607. }
  608. // 找到对应的单元格
  609. tmpData, ok := rowDataMap[manualData.Tag]
  610. if !ok {
  611. continue
  612. }
  613. // 如果该单元格实际有数据,或者插值法补充了数据的话,那么就不用手动填入的数据
  614. if tmpData.DataType == 1 || tmpData.DataType == 2 {
  615. continue
  616. }
  617. // 手工填写的数字
  618. if tmpData.DataType == 3 {
  619. tmpData.ShowValue = manualData.ShowValue
  620. tmpData.Value = manualData.Value
  621. tableDataMap[index][manualData.Tag] = tmpData
  622. //edbInfoIdDateDataMap[manualData.EdbInfoId][manualData.DataTime] = tmpData
  623. continue
  624. }
  625. // 公式
  626. tmpData.DataType = manualData.DataType
  627. tmpData.ShowValue = ``
  628. tmpData.Value = manualData.Value
  629. tmpData.RelationEdbInfoList = manualData.RelationEdbInfoList
  630. tableDataMap[index][manualData.Tag] = tmpData
  631. }
  632. // 文本行的列表插入
  633. lenTableData := len(tableDataMap)
  634. // 文本行第一列的数据列表(可能多行)
  635. firstColTextRowList := make([]request.ManualDataReq, 0)
  636. // 参与计算的文本行列表数据
  637. tmpTextRowList := make([][]request.ManualDataReq, 0)
  638. for k, textRowList := range textRowData {
  639. // 判断列数是否匹配,不匹配的话那么过滤
  640. if len(tagList)+1 != len(textRowList) {
  641. continue
  642. }
  643. rowDataMap := make(map[string]request.ManualDataReq)
  644. tmpTextRow := make([]request.ManualDataReq, 0)
  645. for index, textRow := range textRowList {
  646. // 移除第一列,因为第一列是日期列
  647. if index == 0 {
  648. firstColTextRowList = append(firstColTextRowList, textRow)
  649. continue
  650. }
  651. rowDataMap[tagList[index-1]] = textRow
  652. tmpTextRow = append(tmpTextRow, textRow)
  653. }
  654. tableDataMap[lenTableData+k+1] = rowDataMap
  655. tmpTextRowList = append(tmpTextRowList, tmpTextRow)
  656. }
  657. // 参与计算的单元格
  658. calculateCellMap := make(map[string]string)
  659. // 计算手工填写的单元格
  660. for _, manualData := range manualDataList {
  661. // 找不到该日期,说明这日期过期了,不处理
  662. index, ok := dateIndexMap[manualData.DataTime]
  663. if !ok {
  664. continue
  665. }
  666. // 获取对应行的数据
  667. rowDataMap, ok := tableDataMap[index]
  668. if !ok {
  669. continue
  670. }
  671. // 找到对应的单元格
  672. colData, ok := rowDataMap[manualData.Tag]
  673. if !ok {
  674. continue
  675. }
  676. // 如果该单元格不是计算公式的单元格,那么直接退出当前循环即可
  677. if colData.DataType != 4 {
  678. continue
  679. }
  680. tagMap := make(map[string]float64)
  681. lenRelation := len(colData.RelationEdbInfoList)
  682. replaceNum := 0
  683. for _, relation := range colData.RelationEdbInfoList {
  684. relationCellTagName := strings.ToUpper(relation.Tag) + relation.Row
  685. valStr, tmpErr := getCalculateValue(tableDataMap, relation.Tag, relation.Row, calculateCellMap)
  686. if tmpErr != nil {
  687. continue
  688. }
  689. tmpValDecimal, tmpErr := decimal.NewFromString(valStr)
  690. if tmpErr != nil {
  691. continue
  692. }
  693. tagMap[relationCellTagName], _ = tmpValDecimal.Float64()
  694. replaceNum++
  695. }
  696. // 如果替换的数据与关联的不一致,那么就退出当前循环
  697. if lenRelation != replaceNum {
  698. continue
  699. }
  700. // 计算
  701. val, _, err := calculate(colData.Value, tagMap)
  702. // 计算失败,退出循环
  703. if err != nil {
  704. continue
  705. }
  706. // 重新赋值
  707. colData.ShowValue = val
  708. tableDataMap[index][manualData.Tag] = colData
  709. }
  710. // 计算文本行的单元格
  711. for k, textRow := range tmpTextRowList {
  712. // 获取对应行的数据
  713. index := lenTableData + k + 1
  714. rowDataMap, ok := tableDataMap[index]
  715. if !ok {
  716. continue
  717. }
  718. for colIndex := range textRow {
  719. currTag := tagList[colIndex]
  720. // 找到对应的单元格
  721. colData, ok := rowDataMap[currTag]
  722. if !ok {
  723. continue
  724. }
  725. // 如果该单元格不是计算公式的单元格,那么直接退出当前循环即可
  726. if colData.DataType != 4 {
  727. continue
  728. }
  729. tagMap := make(map[string]float64)
  730. lenRelation := len(colData.RelationEdbInfoList)
  731. replaceNum := 0
  732. for _, relation := range colData.RelationEdbInfoList {
  733. relationCellTagName := strings.ToUpper(relation.Tag) + relation.Row
  734. valStr, tmpErr := getCalculateValue(tableDataMap, relation.Tag, relation.Row, calculateCellMap)
  735. if tmpErr != nil {
  736. continue
  737. }
  738. tmpValDecimal, tmpErr := decimal.NewFromString(valStr)
  739. if tmpErr != nil {
  740. continue
  741. }
  742. tagMap[relationCellTagName], _ = tmpValDecimal.Float64()
  743. replaceNum++
  744. }
  745. // 如果替换的数据与关联的不一致,那么就退出当前循环
  746. if lenRelation != replaceNum {
  747. continue
  748. }
  749. // 计算
  750. val, _, err := calculate(colData.Value, tagMap)
  751. // 计算失败,退出循环
  752. if err != nil {
  753. continue
  754. }
  755. // 重新赋值
  756. colData.ShowValue = val
  757. tableDataMap[index][currTag] = colData
  758. }
  759. }
  760. // 计算文本行第一列的数据值(多行)
  761. for k, colData := range firstColTextRowList {
  762. // 如果该单元格不是计算公式的单元格,那么直接退出当前循环即可
  763. if colData.DataType != 4 {
  764. continue
  765. }
  766. tagMap := make(map[string]float64)
  767. lenRelation := len(colData.RelationEdbInfoList)
  768. replaceNum := 0
  769. for _, relation := range colData.RelationEdbInfoList {
  770. relationCellTagName := strings.ToUpper(relation.Tag) + relation.Row
  771. valStr, tmpErr := getCalculateValue(tableDataMap, relation.Tag, relation.Row, calculateCellMap)
  772. if tmpErr != nil {
  773. continue
  774. }
  775. tmpValDecimal, tmpErr := decimal.NewFromString(valStr)
  776. if tmpErr != nil {
  777. continue
  778. }
  779. tagMap[relationCellTagName], _ = tmpValDecimal.Float64()
  780. replaceNum++
  781. }
  782. // 如果替换的数据与关联的不一致,那么就退出当前循环
  783. if lenRelation != replaceNum {
  784. continue
  785. }
  786. // 计算
  787. val, _, err := calculate(colData.Value, tagMap)
  788. // 计算失败,退出循环
  789. if err != nil {
  790. continue
  791. }
  792. // 重新赋值
  793. colData.ShowValue = val
  794. firstColTextRowList[k] = colData
  795. }
  796. {
  797. // 文本行的数据处理返回
  798. textRowListDataResp = make([][]request.ManualDataReq, 0)
  799. newLenTableDataMap := len(tableDataMap)
  800. // 文本行的第一行所在的位置
  801. firstTextRow := lenTableData + 1
  802. for i := firstTextRow; i <= newLenTableDataMap; i++ {
  803. textRowDataResp := make([]request.ManualDataReq, 0)
  804. textRowDataResp = append(textRowDataResp, firstColTextRowList[i-firstTextRow])
  805. for _, tmpTag := range tagList {
  806. textRowDataResp = append(textRowDataResp, tableDataMap[i][tmpTag])
  807. }
  808. textRowListDataResp = append(textRowListDataResp, textRowDataResp)
  809. }
  810. }
  811. return
  812. }
  813. // getCalculateValue 获取公式计算的结果
  814. func getCalculateValue(tableDataMap map[int]map[string]request.ManualDataReq, tag, row string, calculateCellMap map[string]string) (val string, err error) {
  815. rowInt, err := strconv.Atoi(row)
  816. if err != nil {
  817. return
  818. }
  819. // 单元格的标签名
  820. cellTagName := strings.ToUpper(tag) + row
  821. val, ok := calculateCellMap[cellTagName]
  822. if ok {
  823. return
  824. }
  825. // 查找行数据
  826. rowData, ok := tableDataMap[rowInt]
  827. if !ok {
  828. err = errors.New("查找" + row + "行的数据失败")
  829. return
  830. }
  831. // 查找单元格数据
  832. colData, ok := rowData[tag]
  833. if !ok {
  834. err = errors.New("查找单元格" + tag + row + "的数据失败")
  835. return
  836. }
  837. // 如果不是计算单元格
  838. if colData.DataType != 4 {
  839. val = colData.ShowValue
  840. return
  841. }
  842. // 如果是计算单元格
  843. calculateCellMap[cellTagName] = ``
  844. tagMap := make(map[string]float64)
  845. for _, relation := range colData.RelationEdbInfoList {
  846. relationCellTagName := strings.ToUpper(relation.Tag) + relation.Row
  847. valStr, tmpErr := getCalculateValue(tableDataMap, relation.Tag, relation.Row, calculateCellMap)
  848. if tmpErr != nil {
  849. err = tmpErr
  850. return
  851. }
  852. tmpValDecimal, tmpErr := decimal.NewFromString(valStr)
  853. if tmpErr != nil {
  854. err = tmpErr
  855. return
  856. }
  857. tagMap[relationCellTagName], _ = tmpValDecimal.Float64()
  858. }
  859. // 计算
  860. val, _, err = calculate(colData.Value, tagMap)
  861. if err != nil {
  862. return
  863. }
  864. // 重新赋值
  865. colData.ShowValue = val
  866. tableDataMap[rowInt][tag] = colData
  867. calculateCellMap[cellTagName] = val
  868. return
  869. }
  870. // calculate 公式计算
  871. func calculate(calculateFormula string, TagMap map[string]float64) (calVal, errMsg string, err error) {
  872. if calculateFormula == "" {
  873. errMsg = "公式异常"
  874. err = errors.New(errMsg)
  875. return
  876. }
  877. calculateFormula = strings.TrimPrefix(calculateFormula, "=")
  878. calculateFormula = strings.Replace(calculateFormula, "(", "(", -1)
  879. calculateFormula = strings.Replace(calculateFormula, ")", ")", -1)
  880. calculateFormula = strings.Replace(calculateFormula, ",", ",", -1)
  881. calculateFormula = strings.Replace(calculateFormula, "。", ".", -1)
  882. calculateFormula = strings.Replace(calculateFormula, "%", "*0.01", -1)
  883. formulaFormStr := utils.ReplaceFormula(TagMap, calculateFormula)
  884. //计算公式异常,那么就移除该指标
  885. if formulaFormStr == `` {
  886. errMsg = "公式异常"
  887. err = errors.New(errMsg)
  888. return
  889. }
  890. expression := formula.NewExpression(formulaFormStr)
  891. calResult, err := expression.Evaluate()
  892. if err != nil {
  893. errMsg = "计算失败"
  894. err = errors.New("计算失败:Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
  895. // 分母为0的报错
  896. if strings.Contains(err.Error(), "divide by zero") {
  897. errMsg = "分母不能为0"
  898. err = errors.New("分母不能为空,计算公式:" + formulaFormStr)
  899. }
  900. return
  901. }
  902. // 如果计算结果是NAN,那么就提示报错
  903. if calResult.IsNan() {
  904. errMsg = "计算失败"
  905. err = errors.New("计算失败:计算结果是:NAN;formulaStr:" + formulaFormStr)
  906. return
  907. }
  908. calVal = calResult.String()
  909. // 转Decimal然后四舍五入
  910. valDecimal, err := decimal.NewFromString(calVal)
  911. if err != nil {
  912. errMsg = "计算失败"
  913. err = errors.New("计算失败,结果转 Decimal 失败:Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
  914. return
  915. }
  916. calVal = valDecimal.Round(4).String()
  917. return
  918. }