excel_info.go 36 KB

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