mixed_table.go 24 KB

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