mixed_table.go 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249
  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]string)
  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.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. monthDateMap := make(map[string]string)
  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 := monthDateMap[yearMonth]; !ok {
  89. // 存最早的时间
  90. monthDateMap[yearMonth] = tmpData.DataTime
  91. }
  92. }
  93. edbDayDataListMap[edbInfo.EdbInfoId] = dateValMap
  94. edbMonthDataListMap[edbInfo.EdbInfoId] = monthDateMap
  95. edbDataListMap[edbInfo.EdbInfoId] = dataList
  96. }
  97. // 单元格实际绑定的信息map
  98. cellDataRelationMap := make(map[string]request.MixedTableCellDataReq, 0)
  99. // 处理指定指标的日期
  100. for k, row := range config {
  101. for i, cell := range row {
  102. // 单元格是日期类型,且是日导入指标日期(指标库的最新日期)
  103. if cell.DataType == request.DateDT && cell.DataTimeType == request.EdbDateDT {
  104. // 指标id是在配置里面
  105. var edbDateConfig request.EdbDateConf
  106. err = json.Unmarshal([]byte(cell.Value), &edbDateConfig)
  107. if err != nil {
  108. return
  109. }
  110. if dataList, ok := edbDataListMap[edbDateConfig.EdbInfoId]; ok {
  111. // todo 获取配置信息,根据配置信息进行日期变换, 是否需要更新当前记录,将历史记录逐渐转换成新的记录
  112. var newDate string
  113. newDate, err = GetEdbDateByMoveForward(config[k][i].Value, dataList)
  114. if err != nil {
  115. return
  116. }
  117. newDate, err = HandleMixTableDateChange(newDate, config[k][i].Value)
  118. if err != nil {
  119. return
  120. }
  121. cell.ShowValue = newDate
  122. cell.DataTime = newDate
  123. config[k][i] = cell
  124. }
  125. }
  126. row[i] = cell
  127. cellDataRelationMap[cell.Uid] = cell
  128. }
  129. config[k] = row
  130. }
  131. // 指标计算的结果map
  132. edbSourceDataMap := make(map[string]data.BaseCalculateDataResp)
  133. // 单元格对应的key与他的值(只处理数据类型)
  134. cellKeyVal := make(map[string]float64)
  135. // 基础计算单元格的位置信息
  136. calculateCellMap := make(map[string]Cell)
  137. calculateChainList := make([]string, 0)
  138. dateCalculateList := make([]string, 0)
  139. // 处理单元格中的数据类型(除去基础计算,因为这个是依赖于其他)
  140. for k, row := range config {
  141. for i, cell := range row {
  142. cell.RealValue = cell.ShowValue
  143. switch cell.DataType {
  144. case request.DateDT: // 日期类型
  145. calculateCellMap[cell.Uid] = Cell{
  146. Column: k,
  147. Row: i,
  148. CellInfo: cell,
  149. }
  150. case request.EdbDT: // 指标类型
  151. if cell.Value == `` {
  152. if edbInfo, ok := edbInfoMap[cell.EdbInfoId]; ok {
  153. cell.ShowValue = edbInfo.EdbName
  154. }
  155. } else {
  156. cell.ShowValue = cell.Value
  157. }
  158. case request.InsertDataDT, request.PopInsertDataDT: // 数据类型
  159. // 数值先清空
  160. cell.ShowValue = ``
  161. //cell.Value = ``
  162. // 日期关系配置不存在,则默认最新数据
  163. if relationConf, ok := cellRelationConfMap[cell.Uid]; ok { //表示表格日期
  164. if relationConf.RelationDate.Key == `` {
  165. // 日期关系配置未绑定
  166. continue
  167. }
  168. // 配置
  169. relationCell, ok := cellDataRelationMap[relationConf.RelationDate.Key]
  170. if !ok {
  171. // 找不到对应日期的单元格
  172. continue
  173. }
  174. // 确实是找到了这个关联日期的单元格,那么通过日期重新获取数据值
  175. tmpDateValMap := make(map[string]float64)
  176. // 日度数据
  177. if dateValMap, ok := edbDayDataListMap[cell.EdbInfoId]; ok {
  178. tmpDateValMap = dateValMap
  179. }
  180. // todo 根据配置进行日期变换
  181. relationDate := relationCell.DataTime
  182. if strings.Contains(cell.Value, "{") {
  183. relationDate, err = HandleMixTableDateChange(relationDate, cell.Value)
  184. if err != nil {
  185. return
  186. }
  187. } else {
  188. cell.Value = ""
  189. }
  190. if val, ok2 := tmpDateValMap[relationDate]; ok2 {
  191. //cell.ShowValue = fmt.Sprint(val)
  192. cellKeyVal[cell.Uid] = val
  193. cell.ShowValue = utils.FormatTableDataShowValue(val)
  194. }
  195. } else {
  196. // 如果不是取得一个关联的日期,那么就是指定日期
  197. // 如果没有指定日期,则默认最新数据
  198. if cell.DataTime == `` {
  199. // 指标的最新日期
  200. if dateValList, ok := edbDataListMap[cell.EdbInfoId]; ok {
  201. tmpLenData := len(dateValList)
  202. if tmpLenData > 0 {
  203. //做期数前移动和日期变换
  204. if !strings.Contains(cell.Value, "{") {
  205. cell.Value = ""
  206. }
  207. var newDate string
  208. newDate, err = GetEdbDateByMoveForward(cell.Value, dateValList)
  209. if err != nil {
  210. return
  211. }
  212. newDate, err = HandleMixTableDateChange(newDate, cell.Value)
  213. if err != nil {
  214. return
  215. }
  216. var finalVal float64
  217. for _, v := range dateValList {
  218. if v.DataTime == newDate {
  219. finalVal = v.Value
  220. break
  221. }
  222. }
  223. cellKeyVal[cell.Uid] = finalVal
  224. cell.ShowValue = utils.FormatTableDataShowValue(dateValList[tmpLenData-1].Value)
  225. }
  226. }
  227. } else {
  228. tmpDateList := strings.Split(cell.DataTime, "-")
  229. tmpDateValMap := make(map[string]float64)
  230. var newDate string
  231. if len(tmpDateList) == 2 {
  232. //月度数据
  233. if dateMap, ok1 := edbMonthDataListMap[cell.EdbInfoId]; ok1 {
  234. if d, ok2 := dateMap[cell.DataTime]; ok2 {
  235. newDate = d
  236. }
  237. }
  238. } else {
  239. // 日度数据
  240. newDate = cell.DataTime
  241. }
  242. // 日期变换后才能确定最后的时间
  243. //做期数前移动和日期变换
  244. if !strings.Contains(cell.Value, "{") {
  245. cell.Value = ""
  246. }
  247. newDate, err = HandleMixTableDateChange(newDate, cell.Value)
  248. if err != nil {
  249. return
  250. }
  251. if dateValMap, ok3 := edbDayDataListMap[cell.EdbInfoId]; ok3 {
  252. tmpDateValMap = dateValMap
  253. if val, ok2 := tmpDateValMap[cell.DataTime]; ok2 {
  254. //cell.ShowValue = fmt.Sprint(val)
  255. cellKeyVal[cell.Uid] = val
  256. cell.ShowValue = utils.FormatTableDataShowValue(val)
  257. }
  258. }
  259. }
  260. }
  261. calculateCellMap[cell.Uid] = Cell{
  262. Column: k,
  263. Row: i,
  264. CellInfo: cell,
  265. }
  266. case request.CustomTextDT: //自定义文本
  267. if cell.Value == `` {
  268. continue
  269. }
  270. // 处理看下能否转成float,如果可以的话,说明这个也是可以参与计算的
  271. tmpDeci, tmpErr := decimal.NewFromString(cell.Value)
  272. if tmpErr == nil {
  273. tmpVal, _ := tmpDeci.Float64()
  274. cellKeyVal[cell.Uid] = tmpVal
  275. calculateCellMap[cell.Uid] = Cell{
  276. Column: k,
  277. Row: i,
  278. CellInfo: cell,
  279. }
  280. }
  281. case request.FormulateCalculateDataDT: // 公式计算(A+B这种)
  282. calculateCellMap[cell.Uid] = Cell{
  283. Column: k,
  284. Row: i,
  285. CellInfo: cell,
  286. }
  287. calculateChainList = append(calculateChainList, cell.Uid)
  288. case request.InsertEdbCalculateDataDT: // 插入指标系统计算公式生成的值
  289. // 日期
  290. var cellDateTime string
  291. // 日期关系配置不存在,则默认最新数据
  292. // 从绑定的单元格中获取数据的日期
  293. if relationConf, ok := cellRelationConfMap[cell.Uid]; ok {
  294. if relationConf.RelationDate.Key == `` {
  295. // 日期关系配置未绑定
  296. continue
  297. }
  298. // 配置
  299. relationCell, ok := cellDataRelationMap[relationConf.RelationDate.Key]
  300. if !ok {
  301. // 找不到对应日期的单元格
  302. continue
  303. }
  304. cellDateTime = relationCell.DataTime
  305. }
  306. var tmpDataMap map[string]float64
  307. key := utils.MD5(cell.Value)
  308. respItemData, ok := edbSourceDataMap[key]
  309. if !ok {
  310. // 对应的配置值
  311. var tmpConfig request.CalculateConf
  312. err = json.Unmarshal([]byte(cell.Value), &tmpConfig)
  313. if err != nil {
  314. return
  315. }
  316. tmpDataList, ok := edbDataListMap[tmpConfig.EdbInfoId]
  317. if !ok {
  318. continue
  319. }
  320. edbInfo, ok := edbInfoMap[tmpConfig.EdbInfoId]
  321. if !ok {
  322. continue
  323. }
  324. req2 := &BaseCalculate{
  325. DataList: tmpDataList,
  326. Frequency: tmpConfig.Frequency,
  327. Formula: tmpConfig.Formula,
  328. Calendar: tmpConfig.Calendar,
  329. MoveType: tmpConfig.MoveType,
  330. MoveFrequency: tmpConfig.MoveFrequency,
  331. FromFrequency: edbInfo.Frequency,
  332. Source: tmpConfig.Source,
  333. }
  334. // 调用指标库去更新
  335. reqJson, tmpErr := json.Marshal(req2)
  336. if tmpErr != nil {
  337. utils.FileLog.Error(fmt.Sprintf("计算失败1,配置信息;%s;错误原因:%s", cell.Value, tmpErr.Error()))
  338. err = tmpErr
  339. return
  340. }
  341. respItem, tmpErr := data.BaseCalculate(string(reqJson))
  342. if tmpErr != nil {
  343. utils.FileLog.Error(fmt.Sprintf("计算失败2,配置信息;%s;错误原因:%s", cell.Value, tmpErr.Error()))
  344. err = tmpErr
  345. return
  346. }
  347. if respItem.Ret != 200 {
  348. utils.FileLog.Error(fmt.Sprintf("计算失败3,配置信息;%s;原因:%s;错误原因:%s", cell.Value, respItem.Msg, respItem.ErrMsg))
  349. continue
  350. }
  351. //tmpDataMap = respItem.Data.DataMap
  352. // 计算结果存一份,万一存在重复的计算方式,那么省的重新计算一下
  353. edbSourceDataMap[key] = respItem.Data
  354. }
  355. lenDataList := len(respItemData.DateList)
  356. tmpDataMap = respItemData.DataMap
  357. if cellDateTime == `` && lenDataList > 0 {
  358. //判断是否需要做期数前移动
  359. cellDateTime = respItemData.DateList[lenDataList-1]
  360. cellDateTime, err = GetEdbDateByMoveForwardByDateList(cell.Value, respItemData.DateList)
  361. if err != nil {
  362. utils.FileLog.Error(fmt.Sprintf("日期前移失败,配置信息;%s", cell.Value))
  363. continue
  364. }
  365. }
  366. // 进行日期变换
  367. cellDateTime, err = HandleMixTableDateChange(cellDateTime, cell.Value)
  368. if err != nil {
  369. utils.FileLog.Error(fmt.Sprintf("日期变换失败,配置信息;%s, 日期:%s", cell.Value, cellDateTime))
  370. continue
  371. }
  372. val := tmpDataMap[cellDateTime]
  373. cellKeyVal[cell.Uid] = val
  374. cell.ShowValue = utils.FormatTableDataShowValue(val)
  375. case request.DateCalculateDataDT: //日期计算
  376. // 把关联的单元格存在数组里
  377. calculateCellMap[cell.Uid] = Cell{
  378. Column: k,
  379. Row: i,
  380. CellInfo: cell,
  381. }
  382. dateCalculateList = append(dateCalculateList, cell.Uid)
  383. // 遍历数组,根据公式进行计算,并将得到的结果放到对应的单元格中
  384. }
  385. row[i] = cell
  386. }
  387. config[k] = row
  388. }
  389. // 公式链计算
  390. if len(calculateChainList) > 0 {
  391. for _, cellKey := range calculateChainList {
  392. // 查找这个单元格的位置,直接map找了,而不是遍历整个单元格
  393. cellPosition, ok := calculateCellMap[cellKey]
  394. if !ok {
  395. utils.FileLog.Error("找不到单元格位置:", cellKey)
  396. continue
  397. }
  398. cell := config[cellPosition.Column][cellPosition.Row]
  399. if cell.DataType != request.FormulateCalculateDataDT { // 判断公式计算(A+B这种)类型,不是的话也过滤了
  400. continue
  401. }
  402. val, has, tmpErr, tmpErrMsg := getCalculateValueByCell(calculateCellMap, cellKey, cellKeyVal)
  403. if tmpErr != nil {
  404. errMsg = tmpErrMsg
  405. err = tmpErr
  406. return
  407. }
  408. if !has {
  409. continue
  410. }
  411. cellKeyVal[cell.Uid] = val
  412. cell.ShowValue = utils.FormatTableDataShowValue(val)
  413. config[cellPosition.Column][cellPosition.Row] = cell
  414. }
  415. }
  416. // 日期计算
  417. config, err, errMsg = handlerDateCalculate(dateCalculateList, calculateCellMap, config)
  418. if err != nil {
  419. return
  420. }
  421. newMixedTableCellDataList = config
  422. return
  423. }
  424. // getCalculateValue 获取公式计算的结果
  425. func getCalculateValueByCell(calculateCellMap map[string]Cell, key string, cellKeyValMap map[string]float64) (val float64, has bool, err error, errMsg string) {
  426. // 单元格的标签名
  427. val, ok := cellKeyValMap[key]
  428. if ok {
  429. has = true
  430. return
  431. }
  432. // 查找单元格数据
  433. cell, ok := calculateCellMap[key]
  434. if !ok {
  435. err = errors.New("查找单元格" + key + "的数据失败")
  436. return
  437. }
  438. colData := cell.CellInfo
  439. // 如果不是基础计算单元格,直接返回
  440. if colData.DataType != request.FormulateCalculateDataDT {
  441. return
  442. }
  443. // 如果是计算单元格
  444. tagList := make([]utils.CellPosition, 0)
  445. // 计算单元格relationCellList
  446. var relationCellList []request.RelationCell
  447. if colData.Extra == `` {
  448. err = errors.New(colData.Uid + "没有绑定关系")
  449. return
  450. }
  451. err = json.Unmarshal([]byte(colData.Extra), &relationCellList)
  452. if err != nil {
  453. return
  454. }
  455. for _, relation := range relationCellList {
  456. //relationCellTagName := strings.ToUpper(relation.Tag) + relation.Row
  457. tmpVal, _, tmpErr, tmpErrMsg := getCalculateValueByCell(calculateCellMap, relation.Key, cellKeyValMap)
  458. if tmpErr != nil {
  459. errMsg = tmpErrMsg
  460. err = tmpErr
  461. return
  462. }
  463. cellKeyValMap[relation.Key] = tmpVal
  464. rowInt, tmpErr := strconv.Atoi(relation.Row)
  465. if tmpErr != nil {
  466. err = tmpErr
  467. return
  468. }
  469. tagList = append(tagList, utils.CellPosition{
  470. Tag: relation.Tag,
  471. Row: rowInt,
  472. Value: tmpVal,
  473. })
  474. }
  475. // 计算
  476. val, errMsg, err = calculateByCellList(strings.ToUpper(colData.Value), tagList)
  477. if err != nil {
  478. return
  479. }
  480. // 重新赋值
  481. has = true
  482. cellKeyValMap[key] = val
  483. return
  484. }
  485. // handleConfig
  486. // @Description: 处理混合表格配置
  487. // @author: Roc
  488. // @datetime2023-10-27 13:24:53
  489. // @param configList [][]request.MixedTableCellDataReq
  490. // @return newConfig [][]request.MixedTableCellDataReq
  491. // @return edbInfoIdList []int
  492. // @return dataEdbInfoIdList []int
  493. // @return err error
  494. // @return errMsg string
  495. func handleConfig(configList [][]request.MixedTableCellDataReq) (newConfig [][]request.MixedTableCellDataReq, edbInfoIdList []int, dataEdbInfoIdList []int, err error, errMsg string) {
  496. edbInfoIdList = make([]int, 0)
  497. dataEdbInfoIdList = make([]int, 0)
  498. for ck, rowList := range configList {
  499. for rk, cell := range rowList {
  500. switch cell.DataType {
  501. case request.EdbDT: // 指标信息
  502. edbInfoIdList = append(edbInfoIdList, cell.EdbInfoId)
  503. case request.InsertDataDT, request.PopInsertDataDT: // 插值、弹框插值
  504. dataEdbInfoIdList = append(dataEdbInfoIdList, cell.EdbInfoId)
  505. edbInfoIdList = append(edbInfoIdList, cell.EdbInfoId)
  506. case request.InsertEdbCalculateDataDT: // 插入指标计算公式生成的值
  507. var config request.CalculateConf
  508. err = json.Unmarshal([]byte(cell.Value), &config)
  509. if err != nil {
  510. return
  511. }
  512. edbInfoIdList = append(edbInfoIdList, config.EdbInfoId)
  513. dataEdbInfoIdList = append(dataEdbInfoIdList, cell.EdbInfoId)
  514. case request.DateDT: // 日期类型
  515. date, newVal, tmpErr, tmpErrMsg := handleDate(cell.DataTimeType, cell.Value)
  516. if tmpErr != nil {
  517. err = tmpErr
  518. errMsg = tmpErrMsg
  519. return
  520. }
  521. rowList[rk].DataTime = date
  522. rowList[rk].ShowValue = date
  523. rowList[rk].Value = newVal //兼容原有的历史数据中系统导入日期
  524. // 指标日期类型的单元格需要额外将指标id取出来
  525. if cell.DataTimeType == request.EdbDateDT {
  526. var config request.EdbDateConf
  527. err = json.Unmarshal([]byte(cell.Value), &config)
  528. if err != nil {
  529. return
  530. }
  531. edbInfoIdList = append(edbInfoIdList, config.EdbInfoId)
  532. }
  533. }
  534. }
  535. configList[ck] = rowList
  536. }
  537. newConfig = configList
  538. return
  539. }
  540. // HandleDate
  541. // @Description: 日期处理
  542. // @author: Roc
  543. // @datetime2023-10-27 09:37:02
  544. // @param dataTimeType int
  545. // @param val string
  546. // @return date string
  547. // @return err error
  548. // @return errMsg string
  549. func HandleDate(dataTimeType int, val string) (date string, newVal string, err error, errMsg string) {
  550. return handleDate(dataTimeType, val)
  551. }
  552. // handleDate
  553. // @Description: 日期处理
  554. // @author: Roc
  555. // @datetime2023-10-27 09:36:49
  556. // @param dataTimeType int
  557. // @param val string
  558. // @return date string
  559. // @return err error
  560. // @return errMsg string
  561. func handleDate(dataTimeType int, val string) (date string, newVal string, err error, errMsg string) {
  562. newVal = val
  563. if val == `` {
  564. errMsg = "错误的日期数据"
  565. err = errors.New(errMsg)
  566. return
  567. }
  568. switch dataTimeType {
  569. case request.CustomDateT: //手动输入日期
  570. /*if !strings.Contains(val, "{") {
  571. newVal, err, errMsg = handleOldCustomerDateT(val)
  572. if err != nil {
  573. return
  574. }
  575. }
  576. date, err = HandleMixTableDateChange("", newVal)
  577. if err != nil {
  578. return
  579. }*/
  580. date = val
  581. return
  582. case request.SystemDateT: // 系统日期
  583. date = time.Now().Format(utils.FormatDate)
  584. newVal, err, errMsg = handleOldSystemDateT(val)
  585. if err != nil {
  586. return
  587. }
  588. date, err = HandleMixTableDateChange(date, newVal)
  589. if err != nil {
  590. return
  591. }
  592. case request.EdbDateDT: // 导入指标日期(指标库的最新日期)
  593. default:
  594. errMsg = "错误的日期类型"
  595. err = errors.New(errMsg)
  596. return
  597. }
  598. return
  599. }
  600. func GetEdbDateByMoveForward(conf string, edbDataList []*data_manage.EdbDataList) (date string, err error) {
  601. dateList := make([]string, 0)
  602. for _, v := range edbDataList {
  603. dateList = append(dateList, v.DataTime)
  604. }
  605. date, err = GetEdbDateByMoveForwardByDateList(conf, dateList)
  606. return
  607. }
  608. func GetEdbDateByMoveForwardByDateList(conf string, dateList []string) (date string, err error) {
  609. moveForward := 0
  610. if conf != "" {
  611. var edbDateConf request.EdbDateChangeConf
  612. err = json.Unmarshal([]byte(conf), &edbDateConf)
  613. if err != nil {
  614. err = fmt.Errorf("日期变换配置json解析失败失败: %s", err.Error())
  615. return
  616. }
  617. moveForward = edbDateConf.MoveForward
  618. }
  619. // 根据日期进行排序
  620. index := len(dateList) - 1 - moveForward
  621. for k, v := range dateList {
  622. if k == index {
  623. date = v
  624. return
  625. }
  626. }
  627. return
  628. }
  629. // HandleMixTableDateChange 处理表格中的日期变换
  630. func HandleMixTableDateChange(date, conf string) (newDate string, err error) {
  631. newDate = date
  632. if conf == "" {
  633. return
  634. }
  635. var edbDateConf request.EdbDateConf
  636. err = json.Unmarshal([]byte(conf), &edbDateConf)
  637. if err != nil {
  638. err = fmt.Errorf("日期变换配置json解析失败失败: %s, Err:%s", conf, err.Error())
  639. return
  640. }
  641. if newDate == "" {
  642. err = fmt.Errorf("日期配置失败: %s", conf)
  643. return
  644. }
  645. if len(edbDateConf.DateChange) > 0 {
  646. var dateTime time.Time
  647. dateTime, err = time.ParseInLocation(utils.FormatDate, newDate, time.Local)
  648. if err != nil {
  649. err = fmt.Errorf("日期解析失败: %s", err.Error())
  650. return
  651. }
  652. for _, v := range edbDateConf.DateChange {
  653. if v.ChangeType == 1 {
  654. dateTime = dateTime.AddDate(v.Year, v.Month, v.Day)
  655. newDate = dateTime.Format(utils.FormatDate)
  656. } else if v.ChangeType == 2 {
  657. newDate, err, _ = handleSystemAppointDateT(dateTime, v.FrequencyDay, v.Frequency)
  658. if err != nil {
  659. return
  660. }
  661. dateTime, err = time.ParseInLocation(utils.FormatDate, newDate, time.Local)
  662. if err != nil {
  663. err = fmt.Errorf("日期解析失败: %s", err.Error())
  664. return
  665. }
  666. }
  667. }
  668. }
  669. return
  670. }
  671. // handleOldSystemDateT
  672. // @Description: 历史数据中的导入系统日期
  673. // @author: Roc
  674. // @datetime2023-10-27 09:36:21
  675. // @param confStr string
  676. // @return date string
  677. // @return err error
  678. // @return errMsg string
  679. func handleOldSystemDateT(confStr string) (newConf string, err error, errMsg string) {
  680. newConf = confStr
  681. var config request.SystemDateConf
  682. err = json.Unmarshal([]byte(confStr), &config)
  683. if err != nil {
  684. return
  685. }
  686. newConfig := new(request.EdbDateConf)
  687. dateChange := new(request.EdbDateConfDateChange)
  688. dateChangeList := make([]*request.EdbDateConfDateChange, 0)
  689. switch config.Source {
  690. case request.SystemCurrDateT:
  691. return
  692. case request.SystemCalculateDateT:
  693. // todo 是否直接更新该excel记录,
  694. dateChange.Day = config.CalculateNum
  695. dateChange.ChangeType = 1
  696. dateChangeList = append(dateChangeList, dateChange)
  697. newConfig.DateChange = dateChangeList
  698. newConfByte, e := json.Marshal(newConfig)
  699. if e != nil {
  700. err = fmt.Errorf("日期计算额外配置,json序列化失败: %s", e.Error())
  701. return
  702. }
  703. newConf = string(newConfByte)
  704. return
  705. case request.SystemFrequencyDateT: // 处理系统日期相关的指定频率(所在周/旬/月/季/半年/年的最后/最早一天)
  706. dateChange.FrequencyDay = config.Day
  707. dateChange.Frequency = config.Frequency
  708. dateChange.ChangeType = 1
  709. dateChangeList = append(dateChangeList, dateChange)
  710. newConfig.DateChange = dateChangeList
  711. newConfByte, e := json.Marshal(newConfig)
  712. if e != nil {
  713. err = fmt.Errorf("日期计算额外配置,json序列化失败: %s", e.Error())
  714. return
  715. }
  716. newConf = string(newConfByte)
  717. return
  718. default:
  719. //errMsg = "错误的日期日期导入方式"
  720. //err = errors.New(fmt.Sprint("错误的日期日期导入方式:", config.Source))
  721. return
  722. }
  723. return
  724. }
  725. // handleSystemCalculateDateT
  726. // @Description: 处理系统日期计算后的日期
  727. // @author: Roc
  728. // @datetime2023-10-27 09:31:22
  729. // @param num int
  730. // @param frequency string
  731. // @return date string
  732. // @return err error
  733. // @return errMsg string
  734. func handleSystemCalculateDateT(num int, frequency string) (date string, err error, errMsg string) {
  735. if err != nil {
  736. return
  737. }
  738. currDate := time.Now()
  739. switch frequency {
  740. case "", "日":
  741. date = currDate.AddDate(0, 0, num).Format(utils.FormatDate)
  742. default:
  743. errMsg = "错误的日期频度:" + frequency
  744. err = errors.New(errMsg)
  745. return
  746. }
  747. return
  748. }
  749. // handleSystemAppointDateT
  750. // @Description: 处理系统日期相关的指定频率(所在周/旬/月/季/半年/年的最后/最早一天)
  751. // @author: Roc
  752. // @datetime2023-10-27 09:31:35
  753. // @param Frequency string
  754. // @param Day string
  755. // @return date string
  756. // @return err error
  757. // @return errMsg string
  758. func handleSystemAppointDateT(currDate time.Time, appointDay, frequency string) (date string, err error, errMsg string) {
  759. //currDate := time.Now()
  760. switch frequency {
  761. case "本周":
  762. day := int(currDate.Weekday())
  763. if day == 0 { // 周日
  764. day = 7
  765. }
  766. num := 0
  767. switch appointDay {
  768. case "周一":
  769. num = 1
  770. case "周二":
  771. num = 2
  772. case "周三":
  773. num = 3
  774. case "周四":
  775. num = 4
  776. case "周五":
  777. num = 5
  778. case "周六":
  779. num = 6
  780. case "周日":
  781. num = 7
  782. }
  783. day = num - day
  784. date = currDate.AddDate(0, 0, day).Format(utils.FormatDate)
  785. case "本旬":
  786. day := currDate.Day()
  787. var tmpDate time.Time
  788. switch appointDay {
  789. case "第一天":
  790. if day <= 10 {
  791. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  792. } else if day <= 20 {
  793. tmpDate = time.Date(currDate.Year(), currDate.Month(), 11, 0, 0, 0, 0, currDate.Location())
  794. } else {
  795. tmpDate = time.Date(currDate.Year(), currDate.Month(), 21, 0, 0, 0, 0, currDate.Location())
  796. }
  797. case "最后一天":
  798. if day <= 10 {
  799. tmpDate = time.Date(currDate.Year(), currDate.Month(), 10, 0, 0, 0, 0, currDate.Location())
  800. } else if day <= 20 {
  801. tmpDate = time.Date(currDate.Year(), currDate.Month(), 20, 0, 0, 0, 0, currDate.Location())
  802. } else {
  803. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  804. }
  805. }
  806. date = tmpDate.Format(utils.FormatDate)
  807. case "本月":
  808. var tmpDate time.Time
  809. switch appointDay {
  810. case "第一天":
  811. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  812. case "最后一天":
  813. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  814. }
  815. date = tmpDate.Format(utils.FormatDate)
  816. case "本季":
  817. month := currDate.Month()
  818. var tmpDate time.Time
  819. switch appointDay {
  820. case "第一天":
  821. if month <= 3 {
  822. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  823. } else if month <= 6 {
  824. tmpDate = time.Date(currDate.Year(), 4, 1, 0, 0, 0, 0, currDate.Location())
  825. } else if month <= 9 {
  826. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  827. } else {
  828. tmpDate = time.Date(currDate.Year(), 10, 1, 0, 0, 0, 0, currDate.Location())
  829. }
  830. case "最后一天":
  831. if month <= 3 {
  832. tmpDate = time.Date(currDate.Year(), 3, 31, 0, 0, 0, 0, currDate.Location())
  833. } else if month <= 6 {
  834. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  835. } else if month <= 9 {
  836. tmpDate = time.Date(currDate.Year(), 9, 30, 0, 0, 0, 0, currDate.Location())
  837. } else {
  838. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  839. }
  840. }
  841. date = tmpDate.Format(utils.FormatDate)
  842. case "本半年":
  843. month := currDate.Month()
  844. var tmpDate time.Time
  845. switch appointDay {
  846. case "第一天":
  847. if month <= 6 {
  848. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  849. } else {
  850. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  851. }
  852. case "最后一天":
  853. if month <= 6 {
  854. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  855. } else {
  856. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  857. }
  858. }
  859. date = tmpDate.Format(utils.FormatDate)
  860. case "本年":
  861. var tmpDate time.Time
  862. switch appointDay {
  863. case "第一天":
  864. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  865. case "最后一天":
  866. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  867. }
  868. date = tmpDate.Format(utils.FormatDate)
  869. default:
  870. errMsg = "错误的日期频度:" + frequency
  871. err = errors.New(errMsg)
  872. return
  873. }
  874. return
  875. }
  876. // calculateByCellList
  877. // @Description: 根据单元格来进行公式计算
  878. // @author: Roc
  879. // @datetime2023-11-14 16:17:38
  880. // @param calculateFormula string
  881. // @param tagList []utils.CellPosition
  882. // @return calVal string
  883. // @return errMsg string
  884. // @return err error
  885. func calculateByCellList(calculateFormula string, tagList []utils.CellPosition) (calVal float64, errMsg string, err error) {
  886. if calculateFormula == "" {
  887. errMsg = "公式异常"
  888. err = errors.New(errMsg)
  889. return
  890. }
  891. calculateFormula = strings.TrimPrefix(calculateFormula, "=")
  892. calculateFormula = strings.Replace(calculateFormula, "(", "(", -1)
  893. calculateFormula = strings.Replace(calculateFormula, ")", ")", -1)
  894. calculateFormula = strings.Replace(calculateFormula, ",", ",", -1)
  895. calculateFormula = strings.Replace(calculateFormula, "。", ".", -1)
  896. calculateFormula = strings.Replace(calculateFormula, "%", "*0.01", -1)
  897. rowList := make([]int, 0)
  898. rowListMap := make(map[int][]utils.CellPosition)
  899. for _, v := range tagList {
  900. tmpRowList, ok := rowListMap[v.Row]
  901. if !ok {
  902. rowList = append(rowList, v.Row)
  903. tmpRowList = make([]utils.CellPosition, 0)
  904. }
  905. tmpRowList = append(tmpRowList, v)
  906. rowListMap[v.Row] = tmpRowList
  907. }
  908. sort.Ints(rowList)
  909. list := make([]utils.CellPosition, 0)
  910. for _, row := range rowList {
  911. list = append(list, rowListMap[row]...)
  912. }
  913. formulaFormStr := utils.ReplaceFormulaByCellList(list, calculateFormula)
  914. //计算公式异常,那么就移除该指标
  915. if formulaFormStr == `` {
  916. errMsg = "公式异常"
  917. err = errors.New(errMsg)
  918. return
  919. }
  920. expression := formula.NewExpression(formulaFormStr)
  921. calResult, err := expression.Evaluate()
  922. if err != nil {
  923. errMsg = "计算失败"
  924. err = errors.New("计算失败:Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
  925. // 分母为0的报错
  926. if strings.Contains(err.Error(), "divide by zero") {
  927. errMsg = "分母不能为0"
  928. err = errors.New("分母不能为空,计算公式:" + formulaFormStr)
  929. }
  930. return
  931. }
  932. // 如果计算结果是NAN,那么就提示报错
  933. if calResult.IsNan() {
  934. errMsg = "计算失败"
  935. err = errors.New("计算失败:计算结果是:NAN;formulaStr:" + formulaFormStr)
  936. return
  937. }
  938. calVal, err = calResult.Float64()
  939. if err != nil {
  940. return
  941. }
  942. // 转Decimal然后四舍五入
  943. calVal, _ = decimal.NewFromFloat(calVal).Round(4).Float64()
  944. return
  945. }
  946. // handlerDateCalculate 处理日期计算
  947. func handlerDateCalculate(dateCalculateList []string, calculateCellMap map[string]Cell, oldConfig [][]request.MixedTableCellDataReq) (config [][]request.MixedTableCellDataReq, err error, errMsg string) {
  948. config = oldConfig
  949. if len(dateCalculateList) == 0 {
  950. return
  951. }
  952. if len(dateCalculateList) > 0 {
  953. for _, cellKey := range dateCalculateList {
  954. // 查找这个单元格的位置,直接map找了,而不是遍历整个单元格
  955. cellPosition, ok := calculateCellMap[cellKey]
  956. if !ok {
  957. utils.FileLog.Error("找不到单元格位置:", cellKey)
  958. continue
  959. }
  960. cell := config[cellPosition.Column][cellPosition.Row]
  961. if cell.DataType != request.DateCalculateDataDT { // 判断公式计算(A+B这种)类型,不是的话也过滤了
  962. continue
  963. }
  964. val, tmpErr, tmpErrMsg := DateCalculatePrepare(calculateCellMap, cell.Value)
  965. if tmpErr != nil {
  966. errMsg = tmpErrMsg
  967. err = tmpErr
  968. return
  969. }
  970. cell.ShowValue = utils.FormatTableDataShowValue(val)
  971. config[cellPosition.Column][cellPosition.Row] = cell
  972. }
  973. }
  974. return
  975. }
  976. // DateCalculatePrepare 单个单元格的日期计算
  977. func DateCalculatePrepare(calculateCellMap map[string]Cell, config string) (val float64, err error, errMsg string) {
  978. var edbDateConf request.MixDateCalculateConf
  979. err = json.Unmarshal([]byte(config), &edbDateConf)
  980. if err != nil {
  981. err = fmt.Errorf("日期计算配置json解析失败失败: %s, Err:%s", config, err.Error())
  982. return
  983. }
  984. if len(edbDateConf.RelationCellList) == 0 {
  985. err = fmt.Errorf("日期计算 未配置日期单元格失败: %s", config)
  986. return
  987. }
  988. valMap := make(map[string]int)
  989. for _, v := range edbDateConf.RelationCellList {
  990. // 查找单元格数据
  991. cell, ok := calculateCellMap[v.Uid]
  992. if !ok {
  993. err = fmt.Errorf("查找单元格:%s 的数据失败", v.Uid)
  994. return
  995. }
  996. colData := cell.CellInfo
  997. // 如果不是基础计算单元格,直接返回
  998. _, err = time.ParseInLocation(utils.FormatDate, colData.ShowValue, time.Local)
  999. if err != nil {
  1000. err = fmt.Errorf("%s 的单元格非日期类型, Err: %s", colData.ShowValue, err.Error())
  1001. return
  1002. }
  1003. // todo 把日期转换成excel里的天数
  1004. realDiffDay := utils.GetDaysDiff1900(colData.ShowValue)
  1005. valMap[strings.ToUpper(v.Tag)] = realDiffDay
  1006. }
  1007. // 计算
  1008. val, errMsg, err = DateCalculateFormula(valMap, strings.ToUpper(edbDateConf.Formula))
  1009. if err != nil {
  1010. return
  1011. }
  1012. return
  1013. }
  1014. func DateCalculateFormula(valTagMap map[string]int, calculateFormula string) (calVal float64, errMsg string, err error) {
  1015. if calculateFormula == "" {
  1016. errMsg = "公式异常"
  1017. err = errors.New(errMsg)
  1018. return
  1019. }
  1020. calculateFormula = strings.TrimPrefix(calculateFormula, "=")
  1021. calculateFormula = strings.Replace(calculateFormula, "(", "(", -1)
  1022. calculateFormula = strings.Replace(calculateFormula, ")", ")", -1)
  1023. calculateFormula = strings.Replace(calculateFormula, ",", ",", -1)
  1024. calculateFormula = strings.Replace(calculateFormula, "。", ".", -1)
  1025. calculateFormula = strings.Replace(calculateFormula, "%", "*0.01", -1)
  1026. formulaFormStr := utils.ReplaceFormulaByTagMap(valTagMap, calculateFormula)
  1027. if formulaFormStr == `` {
  1028. errMsg = "公式异常"
  1029. err = errors.New(errMsg)
  1030. return
  1031. }
  1032. fmt.Println("公式:" + formulaFormStr)
  1033. expression := formula.NewExpression(formulaFormStr)
  1034. calResult, err := expression.Evaluate()
  1035. if err != nil {
  1036. errMsg = "计算失败"
  1037. err = errors.New("计算失败:Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
  1038. // 分母为0的报错
  1039. if strings.Contains(err.Error(), "divide by zero") {
  1040. errMsg = "分母不能为0"
  1041. err = errors.New("分母不能为空,计算公式:" + formulaFormStr)
  1042. }
  1043. return
  1044. }
  1045. // 如果计算结果是NAN,那么就提示报错
  1046. if calResult.IsNan() {
  1047. errMsg = "计算失败"
  1048. err = errors.New("计算失败:计算结果是:NAN;formulaStr:" + formulaFormStr)
  1049. return
  1050. }
  1051. calVal, err = calResult.Float64()
  1052. if err != nil {
  1053. return
  1054. }
  1055. // 转Decimal然后四舍五入
  1056. calVal, _ = decimal.NewFromFloat(calVal).Round(4).Float64()
  1057. return
  1058. }
  1059. // handleMixCellShowStyle 处理混合表格中,显示计算的逻辑
  1060. func handleMixCellShowStyle(showStyleList []string, calculateCellMap map[string]Cell, oldConfig [][]request.MixedTableCellDataReq) (config [][]request.MixedTableCellDataReq, err error, errMsg string) {
  1061. config = oldConfig
  1062. if len(showStyleList) == 0 {
  1063. return
  1064. }
  1065. if len(showStyleList) > 0 {
  1066. for _, cellKey := range showStyleList {
  1067. // 查找这个单元格的位置,直接map找了,而不是遍历整个单元格
  1068. cellPosition, ok := calculateCellMap[cellKey]
  1069. if !ok {
  1070. utils.FileLog.Error("找不到单元格位置:", cellKey)
  1071. continue
  1072. }
  1073. cell := config[cellPosition.Column][cellPosition.Row]
  1074. _, e := strconv.ParseFloat(cell.ShowStyle, 64) // 将字符串转换成float类型
  1075. if e != nil { // 如果没有错误发生则返回true,说明该字符串是一个合法的数字
  1076. continue
  1077. }
  1078. val := cell.ShowStyle
  1079. var styleConf request.MixCellShowStyle
  1080. err = json.Unmarshal([]byte(cell.ShowStyle), &styleConf)
  1081. if err != nil {
  1082. err = fmt.Errorf("日期计算配置json解析失败失败: %s, Err:%s", config, err.Error())
  1083. return
  1084. }
  1085. if styleConf.NumberStyle.AddPointNum != 0 {
  1086. //val = CountDecimalPlaces(val)
  1087. val = changePointDecimalPlaces(cell.ShowStyle, styleConf.NumberStyle.AddPointNum)
  1088. }
  1089. if styleConf.NumberStyle.IsPercent == 1 {
  1090. val = changeToPercent(cell.ShowStyle)
  1091. }
  1092. cell.ShowValue = val
  1093. config[cellPosition.Column][cellPosition.Row] = cell
  1094. }
  1095. }
  1096. return
  1097. }
  1098. // changePointDecimalPlaces 小数点位数加减
  1099. func changePointDecimalPlaces(str string, changeNum int) (newStr string) {
  1100. newStr = str
  1101. if changeNum == 0 { //无需改变
  1102. return
  1103. }
  1104. dotIndex := strings.Index(str, ".") // 查找小数点的位置
  1105. if dotIndex == -1 {
  1106. return // 没有小数点,返回0
  1107. }
  1108. decimalPlaces := len(str) - dotIndex - 1 // 计算小数位数
  1109. numbers := strings.Split(str, ".")
  1110. number1 := numbers[0] //整数部分
  1111. number2 := numbers[1] //小数部分
  1112. if changeNum > 0 { // 增加小数位数
  1113. newStr = number1 + "." + number2 + strings.Repeat("0", changeNum)
  1114. } else if changeNum < 0 { // 减少小数位数
  1115. newStr = number1 + "." + number2[:decimalPlaces+changeNum]
  1116. }
  1117. fmt.Println(newStr)
  1118. return
  1119. }
  1120. // changeToPercent 展示成百分比
  1121. func changeToPercent(str string) (newStr string) {
  1122. newStr = str
  1123. dotIndex := strings.Index(str, ".") // 查找小数点的位置
  1124. if dotIndex == -1 {
  1125. newStr = newStr + "00%"
  1126. return // 没有小数点,返回0
  1127. }
  1128. decimalPlaces := len(str) - dotIndex - 1 // 计算小数位数
  1129. numbers := strings.Split(str, ".")
  1130. number1 := numbers[0] //整数部分
  1131. number2 := numbers[1] //小数部分
  1132. if decimalPlaces == 1 {
  1133. newStr = number1 + number2 + "0%"
  1134. return
  1135. }
  1136. if decimalPlaces == 2 {
  1137. newStr = number1 + number2 + "%"
  1138. return
  1139. }
  1140. newStr = number1 + number2[:2] + "." + number2[2:] + "%"
  1141. fmt.Println(newStr)
  1142. return
  1143. }