mixed_table.go 37 KB

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