mixed_table.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  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/request"
  7. "eta/eta_api/services/data"
  8. "eta/eta_api/utils"
  9. "fmt"
  10. "github.com/shopspring/decimal"
  11. "github.com/yidane/formula"
  12. "sort"
  13. "strconv"
  14. "strings"
  15. "time"
  16. )
  17. // BaseCalculate
  18. // @Description: 指标数据计算请求
  19. type BaseCalculate struct {
  20. DataList []*data_manage.EdbDataList
  21. Frequency string `description:"需要转换的频度"`
  22. Formula interface{}
  23. Calendar string `description:"公历/农历"`
  24. MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
  25. MoveFrequency string `description:"移动频度"`
  26. FromFrequency string `description:"来源的频度"`
  27. Source int `description:"1:累计值转月;2:累计值转季;3:同比值;4:同差值;5:N数值移动平均数计算;6:环比值;7:环差值;8:升频;9:降频;10:时间移位;11:超季节性;12:年化;13:累计值;14:累计值年初至今;15:指数修匀;16:日均值"`
  28. }
  29. // Cell
  30. // @Description: 单元格位置
  31. type Cell struct {
  32. Column int `description:"行"`
  33. Row int `description:"列"`
  34. CellInfo request.MixedTableCellDataReq `description:"对应的单元格信息"`
  35. }
  36. // GetMixedTableCellData 获取混合表格数据
  37. func GetMixedTableCellData(mixedTableReq request.MixedTableReq) (newMixedTableCellDataList [][]request.MixedTableCellDataReq, err error, errMsg string) {
  38. cellRelationConf := mixedTableReq.CellRelation
  39. config := mixedTableReq.Data
  40. // 单元格关系配置x信息
  41. cellRelationConfMap := make(map[string]request.CellRelationConf)
  42. cellRelationConfList := make([]request.CellRelationConf, 0)
  43. if cellRelationConf != `` {
  44. err = json.Unmarshal([]byte(cellRelationConf), &cellRelationConfList)
  45. if err != nil {
  46. return
  47. }
  48. for _, v := range cellRelationConfList {
  49. cellRelationConfMap[v.Key] = v
  50. }
  51. }
  52. // 找出所有的关联指标id
  53. config, edbInfoIdList, _, err, errMsg := handleConfig(config)
  54. if err != nil {
  55. return
  56. }
  57. // 查询所有关联的指标信息
  58. edbInfoList, err := data_manage.GetEdbInfoByIdList(edbInfoIdList)
  59. if err != nil {
  60. return
  61. }
  62. // 指标信息map
  63. edbInfoMap := make(map[int]*data_manage.EdbInfo)
  64. // 日度指标数据map
  65. edbDayDataListMap := make(map[int]map[string]float64)
  66. // 月度指标数据map
  67. edbMonthDataListMap := make(map[int]map[string]float64)
  68. // 日度指标数据map
  69. edbDataListMap := make(map[int][]*data_manage.EdbDataList)
  70. for _, edbInfo := range edbInfoList {
  71. edbInfoMap[edbInfo.EdbInfoId] = edbInfo
  72. dataList := make([]*data_manage.EdbDataList, 0)
  73. switch edbInfo.EdbInfoType {
  74. case 0:
  75. dataList, _ = data_manage.GetEdbDataList(edbInfo.Source, edbInfo.EdbInfoId, ``, ``)
  76. case 1:
  77. _, dataList, _, _, _, _ = data.GetPredictDataListByPredictEdbInfoId(edbInfo.EdbInfoId, ``, ``, false)
  78. default:
  79. err = errors.New(fmt.Sprint("获取失败,指标类型异常", edbInfo.EdbInfoType))
  80. }
  81. dateValMap := make(map[string]float64)
  82. monthValMap := make(map[string]float64)
  83. for _, tmpData := range dataList {
  84. // 日度数据
  85. dateValMap[tmpData.DataTime] = tmpData.Value
  86. // 月度数据(取该月份的第一个数据)
  87. yearMonth := strings.Join(strings.Split(tmpData.DataTime, "-")[0:2], "-")
  88. if _, ok := monthValMap[yearMonth]; !ok {
  89. monthValMap[yearMonth] = tmpData.Value
  90. }
  91. }
  92. edbDayDataListMap[edbInfo.EdbInfoId] = dateValMap
  93. edbMonthDataListMap[edbInfo.EdbInfoId] = monthValMap
  94. edbDataListMap[edbInfo.EdbInfoId] = dataList
  95. }
  96. // 单元格实际绑定的信息map
  97. cellDataRelationMap := make(map[string]request.MixedTableCellDataReq, 0)
  98. // 处理指定指标的日期
  99. for k, row := range config {
  100. for i, cell := range row {
  101. // 单元格是日期类型,且是日导入指标日期(指标库的最新日期)
  102. if cell.DataType == request.DateDT && cell.DataTimeType == request.EdbDateDT {
  103. if edbInfo, ok := edbInfoMap[cell.EdbInfoId]; ok {
  104. cell.ShowValue = edbInfo.EndDate
  105. cell.DataTime = edbInfo.EndDate
  106. config[k][i] = cell
  107. }
  108. }
  109. row[i] = cell
  110. cellDataRelationMap[cell.Uid] = cell
  111. }
  112. config[k] = row
  113. }
  114. // 指标计算的结果map
  115. edbSourceDataMap := make(map[string]map[string]float64)
  116. // 单元格对应的key与他的值(只处理数据类型)
  117. cellKeyVal := make(map[string]float64)
  118. // 基础计算单元格的位置信息
  119. calculateCellMap := make(map[string]Cell)
  120. calculateChainList := make([]string, 0)
  121. // 处理单元格中的数据类型(除去基础计算,因为这个是依赖于其他)
  122. for k, row := range config {
  123. for i, cell := range row {
  124. switch cell.DataType {
  125. case request.EdbDT: // 指标类型
  126. if edbInfo, ok := edbInfoMap[cell.EdbInfoId]; ok {
  127. cell.ShowValue = edbInfo.EdbName
  128. }
  129. case request.InsertDataDT, request.PopInsertDataDT: // 数据类型
  130. if cell.DataTime == `` {
  131. // 指标的最新日期
  132. if dateValList, ok := edbDataListMap[cell.EdbInfoId]; ok {
  133. tmpLenData := len(dateValList)
  134. if tmpLenData > 0 {
  135. cellKeyVal[cell.Uid] = dateValList[tmpLenData-1].Value
  136. cell.ShowValue = utils.FormatTableDataShowValue(dateValList[tmpLenData-1].Value)
  137. }
  138. }
  139. } else {
  140. tmpDateList := strings.Split(cell.DataTime, "-")
  141. tmpDateValMap := make(map[string]float64)
  142. if len(tmpDateList) == 2 {
  143. //月度数据
  144. if dateValMap, ok := edbMonthDataListMap[cell.EdbInfoId]; ok {
  145. tmpDateValMap = dateValMap
  146. }
  147. } else {
  148. // 日度数据
  149. if dateValMap, ok := edbDayDataListMap[cell.EdbInfoId]; ok {
  150. tmpDateValMap = dateValMap
  151. }
  152. }
  153. if val, ok2 := tmpDateValMap[cell.DataTime]; ok2 {
  154. //cell.ShowValue = fmt.Sprint(val)
  155. cellKeyVal[cell.Uid] = val
  156. cell.ShowValue = utils.FormatTableDataShowValue(val)
  157. }
  158. }
  159. case request.CustomTextDT: //自定义文本
  160. if cell.Value == `` {
  161. continue
  162. }
  163. // 处理看下能否转成float,如果可以的话,说明这个也是可以参与计算的
  164. tmpDeci, tmpErr := decimal.NewFromString(cell.Value)
  165. if tmpErr == nil {
  166. tmpVal, _ := tmpDeci.Float64()
  167. cellKeyVal[cell.Uid] = tmpVal
  168. calculateCellMap[cell.Uid] = Cell{
  169. Column: k,
  170. Row: i,
  171. CellInfo: cell,
  172. }
  173. }
  174. case request.FormulateCalculateDataDT: // 公式计算(A+B这种)
  175. calculateCellMap[cell.Uid] = Cell{
  176. Column: k,
  177. Row: i,
  178. CellInfo: cell,
  179. }
  180. calculateChainList = append(calculateChainList, cell.Uid)
  181. case request.InsertEdbCalculateDataDT: // 插入指标系统计算公式生成的值
  182. // 日期
  183. var cellDateTime string
  184. // 日期关系配置不存在,则默认最新数据
  185. if relationConf, ok := cellRelationConfMap[cell.Uid]; ok {
  186. if relationConf.RelationDate.Key == `` {
  187. // 日期关系配置未绑定
  188. continue
  189. }
  190. // 配置
  191. relationCell, ok := cellDataRelationMap[relationConf.RelationDate.Key]
  192. if !ok {
  193. // 找不到对应日期的单元格
  194. continue
  195. }
  196. cellDateTime = relationCell.DataTime
  197. }
  198. var tmpDataMap map[string]float64
  199. key := utils.MD5(cell.Value)
  200. tmpDataMap, ok := edbSourceDataMap[key]
  201. if !ok {
  202. // 对应的配置值
  203. var tmpConfig request.CalculateConf
  204. err = json.Unmarshal([]byte(cell.Value), &tmpConfig)
  205. if err != nil {
  206. return
  207. }
  208. tmpDataList, ok := edbDataListMap[tmpConfig.EdbInfoId]
  209. if !ok {
  210. continue
  211. }
  212. edbInfo, ok := edbInfoMap[tmpConfig.EdbInfoId]
  213. if !ok {
  214. continue
  215. }
  216. req2 := &BaseCalculate{
  217. DataList: tmpDataList,
  218. Frequency: tmpConfig.Frequency,
  219. Formula: tmpConfig.Formula,
  220. Calendar: tmpConfig.Calendar,
  221. MoveType: tmpConfig.MoveType,
  222. MoveFrequency: tmpConfig.MoveFrequency,
  223. FromFrequency: edbInfo.Frequency,
  224. Source: tmpConfig.Source,
  225. }
  226. // 调用指标库去更新
  227. reqJson, tmpErr := json.Marshal(req2)
  228. if tmpErr != nil {
  229. utils.FileLog.Error(fmt.Sprintf("计算失败1,配置信息;%s;错误原因:%s", cell.Value, tmpErr.Error()))
  230. err = tmpErr
  231. return
  232. }
  233. respItem, tmpErr := data.BaseCalculate(string(reqJson))
  234. if tmpErr != nil {
  235. utils.FileLog.Error(fmt.Sprintf("计算失败2,配置信息;%s;错误原因:%s", cell.Value, tmpErr.Error()))
  236. err = tmpErr
  237. return
  238. }
  239. if respItem.Ret != 200 {
  240. utils.FileLog.Error(fmt.Sprintf("计算失败3,配置信息;%s;原因:%s;错误原因:%s", cell.Value, respItem.Msg, respItem.ErrMsg))
  241. continue
  242. }
  243. tmpDataMap = respItem.Data.DataMap
  244. // 计算结果存一份,万一存在重复的计算方式,那么省的重新计算一下
  245. edbSourceDataMap[key] = tmpDataMap
  246. lenDataList := len(respItem.Data.DateList)
  247. if cellDateTime == `` && lenDataList > 0 {
  248. cellDateTime = respItem.Data.DateList[lenDataList-1]
  249. }
  250. }
  251. val := tmpDataMap[cellDateTime]
  252. cellKeyVal[cell.Uid] = val
  253. cell.ShowValue = utils.FormatTableDataShowValue(val)
  254. }
  255. row[i] = cell
  256. }
  257. config[k] = row
  258. }
  259. // 公式链计算
  260. if len(calculateChainList) > 0 {
  261. for _, cellKey := range calculateChainList {
  262. // 查找这个单元格的位置,直接map找了,而不是遍历整个单元格
  263. cellPosition, ok := calculateCellMap[cellKey]
  264. if !ok {
  265. utils.FileLog.Error("找不到单元格位置:", cellKey)
  266. continue
  267. }
  268. cell := config[cellPosition.Column][cellPosition.Row]
  269. if cell.DataType != request.FormulateCalculateDataDT { // 判断公式计算(A+B这种)类型,不是的话也过滤了
  270. continue
  271. }
  272. val, tmpErr, has := getCalculateValueByCell(calculateCellMap, cellKey, cellKeyVal)
  273. if tmpErr != nil {
  274. err = tmpErr
  275. return
  276. }
  277. if !has {
  278. continue
  279. }
  280. cellKeyVal[cell.Uid] = val
  281. cell.ShowValue = utils.FormatTableDataShowValue(val)
  282. config[cellPosition.Column][cellPosition.Row] = cell
  283. }
  284. }
  285. newMixedTableCellDataList = config
  286. return
  287. }
  288. // getCalculateValue 获取公式计算的结果
  289. func getCalculateValueByCell(calculateCellMap map[string]Cell, key string, cellKeyValMap map[string]float64) (val float64, err error, has bool) {
  290. // 单元格的标签名
  291. val, ok := cellKeyValMap[key]
  292. if ok {
  293. has = true
  294. return
  295. }
  296. // 查找单元格数据
  297. cell, ok := calculateCellMap[key]
  298. if !ok {
  299. err = errors.New("查找单元格" + key + "的数据失败")
  300. return
  301. }
  302. colData := cell.CellInfo
  303. // 如果不是基础计算单元格,直接返回
  304. if colData.DataType != request.FormulateCalculateDataDT {
  305. return
  306. }
  307. // 如果是计算单元格
  308. tagList := make([]utils.CellPosition, 0)
  309. // 计算单元格relationCellList
  310. var relationCellList []request.RelationCell
  311. if colData.Extra == `` {
  312. err = errors.New(colData.Uid + "没有绑定关系")
  313. return
  314. }
  315. for _, relation := range relationCellList {
  316. //relationCellTagName := strings.ToUpper(relation.Tag) + relation.Row
  317. tmpVal, tmpErr, _ := getCalculateValueByCell(calculateCellMap, relation.Key, cellKeyValMap)
  318. if tmpErr != nil {
  319. err = tmpErr
  320. return
  321. }
  322. cellKeyValMap[relation.Key] = tmpVal
  323. rowInt, tmpErr := strconv.Atoi(relation.Row)
  324. if tmpErr != nil {
  325. err = tmpErr
  326. return
  327. }
  328. tagList = append(tagList, utils.CellPosition{
  329. Tag: relation.Tag,
  330. Row: rowInt,
  331. Value: tmpVal,
  332. })
  333. }
  334. // 计算
  335. val, _, err = calculateByCellList(strings.ToUpper(colData.Value), tagList)
  336. if err != nil {
  337. return
  338. }
  339. // 重新赋值
  340. has = true
  341. cellKeyValMap[key] = val
  342. return
  343. }
  344. // handleConfig
  345. // @Description: 处理混合表格配置
  346. // @author: Roc
  347. // @datetime2023-10-27 13:24:53
  348. // @param configList [][]request.MixedTableCellDataReq
  349. // @return newConfig [][]request.MixedTableCellDataReq
  350. // @return edbInfoIdList []int
  351. // @return dataEdbInfoIdList []int
  352. // @return err error
  353. // @return errMsg string
  354. func handleConfig(configList [][]request.MixedTableCellDataReq) (newConfig [][]request.MixedTableCellDataReq, edbInfoIdList []int, dataEdbInfoIdList []int, err error, errMsg string) {
  355. edbInfoIdList = make([]int, 0)
  356. dataEdbInfoIdList = make([]int, 0)
  357. for ck, rowList := range configList {
  358. for rk, cell := range rowList {
  359. switch cell.DataType {
  360. case request.EdbDT: // 指标信息
  361. edbInfoIdList = append(edbInfoIdList, cell.EdbInfoId)
  362. case request.InsertDataDT, request.PopInsertDataDT: // 插值、弹框插值
  363. dataEdbInfoIdList = append(dataEdbInfoIdList, cell.EdbInfoId)
  364. case request.InsertEdbCalculateDataDT: // 插入指标计算公式生成的值
  365. var config request.CalculateConf
  366. err = json.Unmarshal([]byte(cell.Value), &config)
  367. if err != nil {
  368. return
  369. }
  370. edbInfoIdList = append(edbInfoIdList, config.EdbInfoId)
  371. dataEdbInfoIdList = append(dataEdbInfoIdList, cell.EdbInfoId)
  372. case request.DateDT: // 日期类型
  373. if cell.DataTimeType == request.EdbDateDT {
  374. var config request.EdbDateConf
  375. err = json.Unmarshal([]byte(cell.Value), &config)
  376. if err != nil {
  377. return
  378. }
  379. edbInfoIdList = append(edbInfoIdList, config.EdbInfoId)
  380. } else {
  381. date, tmpErr, tmpErrMsg := handleDate(cell.DataTimeType, cell.Value)
  382. if tmpErr != nil {
  383. err = tmpErr
  384. errMsg = tmpErrMsg
  385. return
  386. }
  387. rowList[rk].DataTime = date
  388. rowList[rk].ShowValue = date
  389. }
  390. }
  391. }
  392. configList[ck] = rowList
  393. }
  394. newConfig = configList
  395. return
  396. }
  397. // HandleDate
  398. // @Description: 日期处理
  399. // @author: Roc
  400. // @datetime2023-10-27 09:37:02
  401. // @param dataTimeType int
  402. // @param val string
  403. // @return date string
  404. // @return err error
  405. // @return errMsg string
  406. func HandleDate(dataTimeType int, val string) (date string, err error, errMsg string) {
  407. return handleDate(dataTimeType, val)
  408. }
  409. // handleDate
  410. // @Description: 日期处理
  411. // @author: Roc
  412. // @datetime2023-10-27 09:36:49
  413. // @param dataTimeType int
  414. // @param val string
  415. // @return date string
  416. // @return err error
  417. // @return errMsg string
  418. func handleDate(dataTimeType int, val string) (date string, err error, errMsg string) {
  419. if val == `` {
  420. errMsg = "错误的日期数据"
  421. err = errors.New(errMsg)
  422. return
  423. }
  424. switch dataTimeType {
  425. case request.CustomDateT: //手动输入日期
  426. date = val
  427. case request.SystemDateT: // 系统日期
  428. date, err, errMsg = handleSystemDateT(val)
  429. case request.EdbDateDT: // 导入指标日期(指标库的最新日期)
  430. default:
  431. errMsg = "错误的日期类型"
  432. err = errors.New(errMsg)
  433. return
  434. }
  435. return
  436. }
  437. // handleSystemDateT
  438. // @Description: 处理导入系统日期
  439. // @author: Roc
  440. // @datetime2023-10-27 09:36:21
  441. // @param confStr string
  442. // @return date string
  443. // @return err error
  444. // @return errMsg string
  445. func handleSystemDateT(confStr string) (date string, err error, errMsg string) {
  446. var config request.SystemDateConf
  447. err = json.Unmarshal([]byte(confStr), &config)
  448. if err != nil {
  449. return
  450. }
  451. switch config.Source {
  452. case request.SystemCurrDateT:
  453. date = time.Now().Format(utils.FormatDate)
  454. case request.SystemCalculateDateT:
  455. date, err, errMsg = handleSystemCalculateDateT(config.CalculateNum, config.CalculateFrequency)
  456. case request.SystemFrequencyDateT: // 处理系统日期相关的指定频率(所在周/旬/月/季/半年/年的最后/最早一天)
  457. date, err, errMsg = handleSystemAppointDateT(config.Day, config.Frequency)
  458. default:
  459. errMsg = "错误的日期日期导入方式"
  460. err = errors.New(fmt.Sprint("错误的日期日期导入方式:", config.Source))
  461. return
  462. }
  463. return
  464. }
  465. // handleSystemCalculateDateT
  466. // @Description: 处理系统日期计算后的日期
  467. // @author: Roc
  468. // @datetime2023-10-27 09:31:22
  469. // @param num int
  470. // @param frequency string
  471. // @return date string
  472. // @return err error
  473. // @return errMsg string
  474. func handleSystemCalculateDateT(num int, frequency string) (date string, err error, errMsg string) {
  475. if err != nil {
  476. return
  477. }
  478. currDate := time.Now()
  479. switch frequency {
  480. case "", "日":
  481. date = currDate.AddDate(0, 0, num).Format(utils.FormatDate)
  482. default:
  483. errMsg = "错误的日期频度:" + frequency
  484. err = errors.New(errMsg)
  485. return
  486. }
  487. return
  488. }
  489. // handleSystemAppointDateT
  490. // @Description: 处理系统日期相关的指定频率(所在周/旬/月/季/半年/年的最后/最早一天)
  491. // @author: Roc
  492. // @datetime2023-10-27 09:31:35
  493. // @param Frequency string
  494. // @param Day string
  495. // @return date string
  496. // @return err error
  497. // @return errMsg string
  498. func handleSystemAppointDateT(appointDay, frequency string) (date string, err error, errMsg string) {
  499. currDate := time.Now()
  500. switch frequency {
  501. case "本周":
  502. day := int(currDate.Weekday())
  503. if day == 0 { // 周日
  504. day = 7
  505. }
  506. num := 0
  507. switch appointDay {
  508. case "周一":
  509. num = 1
  510. case "周二":
  511. num = 2
  512. case "周三":
  513. num = 3
  514. case "周四":
  515. num = 4
  516. case "周五":
  517. num = 5
  518. case "周六":
  519. num = 6
  520. case "周日":
  521. num = 7
  522. }
  523. day = num - day
  524. date = currDate.AddDate(0, 0, day).Format(utils.FormatDate)
  525. case "本旬":
  526. day := currDate.Day()
  527. var tmpDate time.Time
  528. switch appointDay {
  529. case "第一天":
  530. if day <= 10 {
  531. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  532. } else if day <= 20 {
  533. tmpDate = time.Date(currDate.Year(), currDate.Month(), 11, 0, 0, 0, 0, currDate.Location())
  534. } else {
  535. tmpDate = time.Date(currDate.Year(), currDate.Month(), 21, 0, 0, 0, 0, currDate.Location())
  536. }
  537. case "最后一天":
  538. if day <= 10 {
  539. tmpDate = time.Date(currDate.Year(), currDate.Month(), 10, 0, 0, 0, 0, currDate.Location())
  540. } else if day <= 20 {
  541. tmpDate = time.Date(currDate.Year(), currDate.Month(), 20, 0, 0, 0, 0, currDate.Location())
  542. } else {
  543. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  544. }
  545. }
  546. date = tmpDate.Format(utils.FormatDate)
  547. case "本月":
  548. var tmpDate time.Time
  549. switch appointDay {
  550. case "第一天":
  551. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  552. case "最后一天":
  553. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  554. }
  555. date = tmpDate.Format(utils.FormatDate)
  556. case "本季":
  557. month := currDate.Month()
  558. var tmpDate time.Time
  559. switch appointDay {
  560. case "第一天":
  561. if month <= 3 {
  562. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  563. } else if month <= 6 {
  564. tmpDate = time.Date(currDate.Year(), 4, 1, 0, 0, 0, 0, currDate.Location())
  565. } else if month <= 9 {
  566. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  567. } else {
  568. tmpDate = time.Date(currDate.Year(), 10, 1, 0, 0, 0, 0, currDate.Location())
  569. }
  570. case "最后一天":
  571. if month <= 3 {
  572. tmpDate = time.Date(currDate.Year(), 3, 31, 0, 0, 0, 0, currDate.Location())
  573. } else if month <= 6 {
  574. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  575. } else if month <= 9 {
  576. tmpDate = time.Date(currDate.Year(), 9, 30, 0, 0, 0, 0, currDate.Location())
  577. } else {
  578. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  579. }
  580. }
  581. date = tmpDate.Format(utils.FormatDate)
  582. case "本半年":
  583. month := currDate.Month()
  584. var tmpDate time.Time
  585. switch appointDay {
  586. case "第一天":
  587. if month <= 6 {
  588. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  589. } else {
  590. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  591. }
  592. case "最后一天":
  593. if month <= 6 {
  594. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  595. } else {
  596. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  597. }
  598. }
  599. date = tmpDate.Format(utils.FormatDate)
  600. case "本年":
  601. var tmpDate time.Time
  602. switch appointDay {
  603. case "第一天":
  604. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  605. case "最后一天":
  606. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  607. }
  608. date = tmpDate.Format(utils.FormatDate)
  609. default:
  610. errMsg = "错误的日期频度:" + frequency
  611. err = errors.New(errMsg)
  612. return
  613. }
  614. return
  615. }
  616. // calculateByCellList
  617. // @Description: 根据单元格来进行公式计算
  618. // @author: Roc
  619. // @datetime2023-11-14 16:17:38
  620. // @param calculateFormula string
  621. // @param tagList []utils.CellPosition
  622. // @return calVal string
  623. // @return errMsg string
  624. // @return err error
  625. func calculateByCellList(calculateFormula string, tagList []utils.CellPosition) (calVal float64, errMsg string, err error) {
  626. if calculateFormula == "" {
  627. errMsg = "公式异常"
  628. err = errors.New(errMsg)
  629. return
  630. }
  631. calculateFormula = strings.TrimPrefix(calculateFormula, "=")
  632. calculateFormula = strings.Replace(calculateFormula, "(", "(", -1)
  633. calculateFormula = strings.Replace(calculateFormula, ")", ")", -1)
  634. calculateFormula = strings.Replace(calculateFormula, ",", ",", -1)
  635. calculateFormula = strings.Replace(calculateFormula, "。", ".", -1)
  636. calculateFormula = strings.Replace(calculateFormula, "%", "*0.01", -1)
  637. rowList := make([]int, 0)
  638. rowListMap := make(map[int][]utils.CellPosition)
  639. for _, v := range tagList {
  640. tmpRowList, ok := rowListMap[v.Row]
  641. if !ok {
  642. rowList = append(rowList, v.Row)
  643. tmpRowList = make([]utils.CellPosition, 0)
  644. }
  645. tmpRowList = append(tmpRowList, v)
  646. rowListMap[v.Row] = tmpRowList
  647. }
  648. sort.Ints(rowList)
  649. list := make([]utils.CellPosition, 0)
  650. for _, row := range rowList {
  651. list = append(list, rowListMap[row]...)
  652. }
  653. formulaFormStr := utils.ReplaceFormulaByCellList(list, calculateFormula)
  654. //计算公式异常,那么就移除该指标
  655. if formulaFormStr == `` {
  656. errMsg = "公式异常"
  657. err = errors.New(errMsg)
  658. return
  659. }
  660. expression := formula.NewExpression(formulaFormStr)
  661. calResult, err := expression.Evaluate()
  662. if err != nil {
  663. errMsg = "计算失败"
  664. err = errors.New("计算失败:Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
  665. // 分母为0的报错
  666. if strings.Contains(err.Error(), "divide by zero") {
  667. errMsg = "分母不能为0"
  668. err = errors.New("分母不能为空,计算公式:" + formulaFormStr)
  669. }
  670. return
  671. }
  672. // 如果计算结果是NAN,那么就提示报错
  673. if calResult.IsNan() {
  674. errMsg = "计算失败"
  675. err = errors.New("计算失败:计算结果是:NAN;formulaStr:" + formulaFormStr)
  676. return
  677. }
  678. calVal, err = calResult.Float64()
  679. if err != nil {
  680. return
  681. }
  682. // 转Decimal然后四舍五入
  683. calVal, _ = decimal.NewFromFloat(calVal).Round(4).Float64()
  684. return
  685. }