mixed_table.go 24 KB

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