excel_info.go 43 KB

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