lucky_sheet.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. package excel
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "hongze/hongze_chart_lib/utils"
  6. "sort"
  7. )
  8. type LuckySheetDataBak struct {
  9. CalcChain []interface{} `json:"calcChain" description:"公式链"`
  10. CellData []LuckySheetCellData `json:"celldata" description:"单元格数据"`
  11. ChWidth int64 `json:"ch_width" description:"工作表区域的宽度"`
  12. Config struct {
  13. BorderInfo []struct {
  14. BorderType string `json:"borderType" description:""`
  15. Color string `json:"color" description:""`
  16. Range []struct {
  17. Column []int64 `json:"column" description:""`
  18. Row []int64 `json:"row" description:""`
  19. } `json:"range" description:""`
  20. RangeType string `json:"rangeType" description:""`
  21. Style string `json:"style" description:""`
  22. Value struct {
  23. B struct {
  24. Color string `json:"color" description:""`
  25. Style string `json:"style" description:""`
  26. } `json:"b" description:""`
  27. ColIndex int64 `json:"col_index" description:""`
  28. L struct {
  29. Color string `json:"color" description:""`
  30. Style string `json:"style" description:""`
  31. } `json:"l" description:""`
  32. R struct {
  33. Color string `json:"color" description:""`
  34. Style string `json:"style" description:""`
  35. } `json:"r" description:""`
  36. RowIndex int64 `json:"row_index" description:""`
  37. T struct {
  38. Color string `json:"color" description:""`
  39. Style string `json:"style" description:""`
  40. } `json:"t" description:""`
  41. } `json:"value" description:"" description:""`
  42. } `json:"borderInfo" description:""`
  43. Colhidden struct{} `json:"colhidden" description:""`
  44. Columnlen map[string]float64 `json:"columnlen" description:""`
  45. CustomHeight struct {
  46. Zero int64 `json:"0"`
  47. } `json:"customHeight" description:""`
  48. CustomWidth struct {
  49. Two int64 `json:"2" description:""`
  50. } `json:"customWidth" description:""`
  51. Merge struct{} `json:"merge" description:""`
  52. Rowlen map[string]float64 `json:"rowlen" description:""`
  53. } `json:"config" description:""`
  54. Data [][]struct {
  55. Ct struct {
  56. Fa string `json:"fa"`
  57. T string `json:"t"`
  58. } `json:"ct"`
  59. M string `json:"m"`
  60. V interface{} `json:"v"`
  61. } `json:"data" description:""`
  62. DataVerification struct{} `json:"dataVerification" description:""`
  63. Filter interface{} `json:"filter" description:""`
  64. FilterSelect interface{} `json:"filter_select" description:""`
  65. Hyperlink struct{} `json:"hyperlink" description:""`
  66. Images struct{} `json:"images" description:""`
  67. Index string `json:"index" description:""`
  68. JfgirdSelectSave []interface{} `json:"jfgird_select_save" description:""`
  69. LuckysheetAlternateformatSave []interface{} `json:"luckysheet_alternateformat_save" description:""`
  70. LuckysheetConditionformatSave []interface{} `json:"luckysheet_conditionformat_save" description:""`
  71. LuckysheetSelectSave []struct {
  72. Column []int64 `json:"column" description:""`
  73. ColumnFocus int64 `json:"column_focus" description:""`
  74. Height int64 `json:"height" description:""`
  75. HeightMove int64 `json:"height_move" description:""`
  76. Left int64 `json:"left" description:""`
  77. LeftMove int64 `json:"left_move" description:""`
  78. Row []int64 `json:"row" description:""`
  79. RowFocus int64 `json:"row_focus" description:""`
  80. Top int64 `json:"top" description:""`
  81. TopMove int64 `json:"top_move" description:""`
  82. Width int64 `json:"width" description:""`
  83. WidthMove int64 `json:"width_move" description:""`
  84. } `json:"luckysheet_select_save" description:"" description:""`
  85. LuckysheetSelectionRange []struct {
  86. Column []int64 `json:"column" description:""`
  87. Row []int64 `json:"row" description:""`
  88. } `json:"luckysheet_selection_range" description:""`
  89. RhHeight int64 `json:"rh_height" description:""`
  90. ScrollLeft int64 `json:"scrollLeft" description:""`
  91. ScrollTop int64 `json:"scrollTop" description:""`
  92. Status int64 `json:"status" description:""`
  93. Visibledatacolumn []int64 `json:"visibledatacolumn" description:""`
  94. Visibledatarow []int64 `json:"visibledatarow" description:""`
  95. ZoomRatio int64 `json:"zoomRatio" description:""`
  96. }
  97. // LuckySheetData sheet表格数据
  98. type LuckySheetData struct {
  99. CellData []LuckySheetCellData `json:"celldata" description:"单元格数据"`
  100. ChWidth int64 `json:"ch_width" description:"工作表区域的宽度"`
  101. Config LuckySheetDataConfig `json:"config" description:""`
  102. //Index int `json:"index" description:"工作表索引"`
  103. RhHeight int64 `json:"rh_height" description:"工作表区域的高度"`
  104. ScrollLeft int64 `json:"scrollLeft" description:"左右滚动条位置"`
  105. ScrollTop int64 `json:"scrollTop" description:"上下滚动条位置"`
  106. Status int64 `json:"status" description:"激活状态"`
  107. VisibleDataColumn []int64 `json:"visibledatacolumn" description:"所有列的位置信息,递增的列位置数据,初始化无需设置"`
  108. VisibleDataRow []int64 `json:"visibledatarow" description:"所有行的位置信息,递增的行位置数据,初始化无需设置"`
  109. ZoomRatio int64 `json:"zoomRatio" description:"缩放比例"`
  110. }
  111. // LuckySheetDataConfig sheet表单的配置
  112. type LuckySheetDataConfig struct {
  113. BorderInfo []LuckySheetDataConfigBorderInfo `json:"borderInfo" description:"边框"`
  114. Colhidden map[string]int64 `json:"colhidden" description:"隐藏列,示例值:\"colhidden\":{\"30\":0,\"31\":0}"`
  115. Columnlen map[string]float64 `json:"columnlen" description:"每个单元格的列宽"`
  116. //CustomHeight struct {
  117. // Zero int64 `json:"0"`
  118. //} `json:"customHeight" description:""`
  119. //CustomWidth struct {
  120. // Two int64 `json:"2" description:""`
  121. //} `json:"customWidth" description:""`
  122. Merge map[string]LuckySheetDataConfigMerge `json:"merge" description:"合并单元格"`
  123. Rowlen map[string]float64 `json:"rowlen" description:"每个单元格的行高"`
  124. }
  125. // LuckySheetDataConfigMerge 合并单元格设置
  126. type LuckySheetDataConfigMerge struct {
  127. Row int `json:"r" description:"行数"`
  128. Column int `json:"c" description:"列数"`
  129. Rs int `json:"rs" description:"合并的行数"`
  130. Cs int `json:"cs" description:"合并的列数"`
  131. }
  132. // LuckySheetDataConfigBorderInfo 单元格边框信息
  133. type LuckySheetDataConfigBorderInfo struct {
  134. BorderType string `json:"borderType" description:"边框类型 border-left | border-right | border-top | border-bottom | border-all | border-outside | border-inside | border-horizontal | border-vertical | border-none"`
  135. Color string `json:"color" description:"边框颜色 color: 16进制颜色值"`
  136. Range []struct {
  137. Column []int64 `json:"column" description:"行"`
  138. Row []int64 `json:"row" description:"列"`
  139. } `json:"range" description:"选区范围 range: 行列信息数组"`
  140. RangeType string `json:"rangeType" description:"选区 rangeType: range | cell "`
  141. Style string `json:"style" description:"边框粗细 style: 1 Thin | 2 Hair | 3 Dotted | 4 Dashed | 5 DashDot | 6 DashDotDot | 7 Double | 8 Medium | 9 MediumDashed | 10 MediumDashDot | 11 MediumDashDotDot | 12 SlantedDashDot | 13 Thick ,和aspose.cells的getLineStyle()的值对应的话,需要自己做个转换,参考 aspose.cells"`
  142. Value LuckySheetDataConfigBorderInfoCellValue `json:"value" description:"" description:"范围类型分单个单元格的数据"`
  143. }
  144. // LuckySheetDataConfigBorderInfoCellValue 单元格边框信息(范围类型为:单个单元格)
  145. type LuckySheetDataConfigBorderInfoCellValue struct {
  146. B LuckySheetDataConfigBorderInfoCell `json:"b" description:"下边框"`
  147. L LuckySheetDataConfigBorderInfoCell `json:"l" description:"左边框"`
  148. R LuckySheetDataConfigBorderInfoCell `json:"r" description:"右边框"`
  149. T LuckySheetDataConfigBorderInfoCell `json:"t" description:"上边框"`
  150. ColIndex int64 `json:"col_index" description:"第几行"`
  151. RowIndex int64 `json:"row_index" description:"第几列"`
  152. }
  153. // LuckySheetDataConfigBorderInfoCell 单元格边框信息(cell类型)
  154. type LuckySheetDataConfigBorderInfoCell struct {
  155. Color string `json:"color" description:"边框颜色 color: 16进制颜色值"`
  156. Style string `json:"style" description:"边框粗细 style: 1 Thin | 2 Hair | 3 Dotted | 4 Dashed | 5 DashDot | 6 DashDotDot | 7 Double | 8 Medium | 9 MediumDashed | 10 MediumDashDot | 11 MediumDashDotDot | 12 SlantedDashDot | 13 Thick ,和aspose.cells的getLineStyle()的值对应的话,需要自己做个转换,参考 aspose.cells"`
  157. }
  158. // LuckySheetCellData 单个单元格数据
  159. type LuckySheetCellData struct {
  160. Col int64 `json:"c" description:"列"`
  161. Row int64 `json:"r" description:"行"`
  162. Value LuckySheetDataValue `json:"v" description:"单元格内值的数据"`
  163. }
  164. // LuckySheetDataValue 单元格内值的数据
  165. type LuckySheetDataValue struct {
  166. CellType LuckySheetDataCellType `json:"ct" description:"单元格值格式:文本、时间等 "`
  167. Value interface{} `json:"v" description:"原始值"`
  168. Monitor string `json:"m" description:"显示值"`
  169. Background string `json:"bg" description:"背景色,实例值:#fff000"`
  170. FontFamily int `json:"ff" description:"字体,0 Times New Roman、 1 Arial、2 Tahoma 、3 Verdana、4 微软雅黑、5 宋体(Song)、6 黑体(ST Heiti)、7 楷体(ST Kaiti)、 8 仿宋(ST FangSong)、9 新宋体(ST Song)、10 华文新魏、11 华文行楷、12 华文隶书 "`
  171. FontColor string `json:"fc" description:"字体颜色,示例值:#fff000" `
  172. Bold int `json:"bl" description:"粗体,0 常规 、 1加粗 "`
  173. Italic int `json:"it" description:"斜体,0 常规 、 1 斜体"`
  174. Fontsize int `json:"fs" description:"字体大小,14"`
  175. CancelLine int `json:"cl" description:"删除线, 0 常规 、 1 删除线"`
  176. HorizontalType int `json:"ht" description:"水平对齐, 0 居中、1 左、2右"`
  177. VerticalType int `json:"vt" description:"垂直对齐, 0 中间、1 上、2下"`
  178. //TextRotate string `json:"tr" description:"竖排文字, 3"`
  179. //RotateText string `json:"rt" description:"文字旋转角度, 介于0~180之间的整数,包含0和180"`
  180. TextBeak int `json:"tb" description:"文本换行, 0 截断、1溢出、2 自动换行"`
  181. Ps LuckySheetDataCellComment `json:"ps" description:"批注"`
  182. Function string `json:"f" description:"公式"`
  183. MergeCell LuckySheetDataConfigMerge `json:"mc" description:"合并单元格信息"`
  184. }
  185. // LuckySheetDataCellType 单元格值格式:文本、时间等
  186. type LuckySheetDataCellType struct {
  187. Fa string `json:"fa" description:"格式名称,例如:“General”为自动格式"`
  188. T string `json:"t" description:"格式类型,例如:“n”为数字类型"`
  189. S []struct {
  190. FontFamily string `json:"ff" description:"字体,0 Times New Roman、 1 Arial、2 Tahoma 、3 Verdana、4 微软雅黑、5 宋体(Song)、6 黑体(ST Heiti)、7 楷体(ST Kaiti)、 8 仿宋(ST FangSong)、9 新宋体(ST Song)、10 华文新魏、11 华文行楷、12 华文隶书 "`
  191. FontColor string `json:"fc" description:"字体颜色,示例值:#fff000" `
  192. Fontsize int `json:"fs" description:"字体大小,14"`
  193. CancelLine int `json:"cl" description:"删除线, 0 常规 、 1 删除线"`
  194. HorizontalType int `json:"ht" description:"水平对齐, 0 居中、1 左、2右"`
  195. VerticalType int `json:"vt" description:"垂直对齐, 0 中间、1 上、2下"`
  196. Un int `json:"un" description:""`
  197. Bold int `json:"bl" description:"粗体,0 常规 、 1加粗 "`
  198. Italic int `json:"it" description:"斜体,0 常规 、 1 斜体"`
  199. Value interface{} `json:"v" description:"原始值"`
  200. } `json:"s"`
  201. }
  202. // LuckySheetDataCellComment 批注
  203. type LuckySheetDataCellComment struct {
  204. Left int `json:"left" description:"批注框距离左边工作表边缘位置"`
  205. Top int `json:"top" description:"批注框距离上边工作表边缘位置"`
  206. Width int `json:"width" description:"批注框宽度"`
  207. Height int `json:"height" description:"批注框高度"`
  208. Value string `json:"value" description:"批注内容"`
  209. IsShow bool `json:"isshow" description:"是否显示批注"`
  210. }
  211. // GetLuckySheetData 获取LuckySheetData的结构体
  212. func GetLuckySheetData(jsonStr string) (item *LuckySheetData, err error) {
  213. err = json.Unmarshal([]byte(jsonStr), &item)
  214. return
  215. }
  216. // TableData 表格数据
  217. type TableData struct {
  218. TableDataList [][]LuckySheetDataValue
  219. RowWidthList []float64
  220. RowHeightList []float64
  221. RemoveTopRow int `description:"移除表格上方的行数"`
  222. RemoveBottomRow int `description:"移除表格下方的行数"`
  223. RemoveLeftColumn int `description:"移除表格左侧的列数"`
  224. RemoveRightColumn int `description:"移除表格右侧的列数"`
  225. MergeList []TableDataMerge `description:"合并数据列"`
  226. }
  227. // TableDataMerge 表格数据合并单元格配置
  228. type TableDataMerge struct {
  229. StartRowIndex int `json:"start_row_index" description:"开始的行下标"`
  230. StartColumnIndex int `json:"start_column" description:"开始的列下标"`
  231. MergeRowNum int `json:"merge_row_num" description:"合并的行数"`
  232. MergeColumnNum int `json:"merge_column_num" description:"合并的列数"`
  233. }
  234. // GetTableDataByLuckySheetDataStr 通过LuckySheet的string数据获取表格数据
  235. func (item *LuckySheetData) GetTableDataByLuckySheetDataStr() (selfTableData TableData, err error) {
  236. luckySheetCellDataList := item.CellData
  237. // 表格数据
  238. tableDataMap := make(map[int64]map[int64]LuckySheetDataValue)
  239. // 最大行,最大列
  240. var maxRow, maxCol int64
  241. for _, v := range luckySheetCellDataList {
  242. //fmt.Println("row:", v.Row, "=====col:", v.Col)
  243. if v.Row > maxRow { //最大行
  244. maxRow = v.Row
  245. }
  246. if v.Col > maxCol { //最大列
  247. maxCol = v.Col
  248. }
  249. var tmpRow map[int64]LuckySheetDataValue
  250. tmpRow, ok := tableDataMap[v.Row]
  251. if ok {
  252. tmpRow[v.Col] = v.Value
  253. } else {
  254. tmpRow = make(map[int64]LuckySheetDataValue)
  255. tmpRow[v.Col] = v.Value
  256. }
  257. tableDataMap[v.Row] = tmpRow
  258. }
  259. tableDataList := make([][]LuckySheetDataValue, 0)
  260. var i int64
  261. // 单元格宽度
  262. configColumnConf := item.Config.Columnlen
  263. rowWidthMap := make(map[int]float64)
  264. rowWidthList := make([]float64, 0) //
  265. // 单元格高度
  266. configRowConf := item.Config.Rowlen
  267. rowHeightList := make([]float64, 0) //
  268. for i = 0; i <= maxRow; i++ {
  269. //列
  270. tmpTableColDataList := make([]LuckySheetDataValue, 0)
  271. // 每个单元格的高度
  272. tmpHeight, ok := configRowConf[fmt.Sprint(i)]
  273. if !ok {
  274. tmpHeight = 0
  275. }
  276. rowHeightList = append(rowHeightList, tmpHeight)
  277. tmpRowData, ok := tableDataMap[i]
  278. if !ok {
  279. tableDataList = append(tableDataList, tmpTableColDataList)
  280. continue
  281. }
  282. var j int64
  283. for j = 0; j <= maxCol; j++ {
  284. tmpTableColData, ok := tmpRowData[j]
  285. if !ok {
  286. tmpTableColData = LuckySheetDataValue{}
  287. }
  288. //单元格显示的数据处理
  289. tmpTableColData.Monitor = handleCellVal(tmpTableColData)
  290. tmpTableColDataList = append(tmpTableColDataList, tmpTableColData)
  291. // 每个单元格的宽度
  292. tmpWidth, ok := configColumnConf[fmt.Sprint(j)]
  293. if !ok {
  294. tmpWidth = 0
  295. }
  296. rowIndex := len(tmpTableColDataList) - 1
  297. if _, ok2 := rowWidthMap[rowIndex]; !ok2 {
  298. rowWidthList = append(rowWidthList, tmpWidth)
  299. }
  300. rowWidthMap[rowIndex] = tmpWidth
  301. }
  302. tableDataList = append(tableDataList, tmpTableColDataList)
  303. }
  304. //总共多少行
  305. lenRow := len(tableDataList)
  306. //移除上下空行
  307. deleteRowIndexList := make([]int, 0)
  308. if lenRow > 0 {
  309. var flag = false
  310. // 移除上方空列
  311. for rowIndex := 0; rowIndex < lenRow; rowIndex++ {
  312. isDelete := true
  313. for _, v := range tableDataList[rowIndex] {
  314. if v.Monitor != `` {
  315. isDelete = false
  316. flag = true
  317. break
  318. }
  319. }
  320. if flag {
  321. break
  322. }
  323. if isDelete {
  324. selfTableData.RemoveTopRow++
  325. deleteRowIndexList = append(deleteRowIndexList, rowIndex)
  326. }
  327. }
  328. // 移除下方空行
  329. flag = false
  330. //尾部
  331. deleteBottomRowIndexList := make([]int, 0)
  332. for rowIndex := lenRow - 1; rowIndex >= 0; rowIndex-- {
  333. isDelete := true
  334. for _, v := range tableDataList[rowIndex] {
  335. if v.Monitor != `` || (v.MergeCell.Row != rowIndex && v.MergeCell.Row != 0) {
  336. isDelete = false
  337. flag = true
  338. break
  339. }
  340. }
  341. if flag {
  342. break
  343. }
  344. if isDelete {
  345. deleteBottomRowIndexList = append(deleteBottomRowIndexList, rowIndex)
  346. selfTableData.RemoveBottomRow++
  347. }
  348. }
  349. if len(deleteBottomRowIndexList) > 0 {
  350. deleteRowIndexList = append(deleteRowIndexList, utils.RevSlice(deleteBottomRowIndexList)...)
  351. }
  352. lenDeleteRow := len(deleteRowIndexList)
  353. if lenDeleteRow > 0 {
  354. for rowIndex := lenDeleteRow - 1; rowIndex >= 0; rowIndex-- {
  355. //表格数据
  356. tableDataList = append(tableDataList[:deleteRowIndexList[rowIndex]], tableDataList[deleteRowIndexList[rowIndex]+1:]...) // 删除开头N个元素
  357. //表格高度
  358. rowHeightList = append(rowHeightList[:deleteRowIndexList[rowIndex]], rowHeightList[deleteRowIndexList[rowIndex]+1:]...) // 删除开头N个元素
  359. }
  360. }
  361. }
  362. //移除前后空列
  363. deleteColumnIndexList := make([]int, 0)
  364. if len(tableDataList) > 0 {
  365. var flag = false
  366. lenColumn := len(tableDataList[0])
  367. // 移除前方空列
  368. for columnIndex := 0; columnIndex < lenColumn; columnIndex++ {
  369. isDelete := true
  370. for _, v := range tableDataList {
  371. //如果一列都没有,说明是上面几行是空行,没有数据
  372. if len(v) <= 0 {
  373. continue
  374. }
  375. if v[columnIndex].Monitor != `` {
  376. isDelete = false
  377. flag = true
  378. break
  379. }
  380. }
  381. if flag {
  382. break
  383. }
  384. if isDelete {
  385. selfTableData.RemoveLeftColumn++
  386. deleteColumnIndexList = append(deleteColumnIndexList, columnIndex)
  387. }
  388. }
  389. // 移除后方空列
  390. flag = false
  391. //后方
  392. deleteTailColumnIndexList := make([]int, 0)
  393. for columnIndex := lenColumn - 1; columnIndex >= 0; columnIndex-- {
  394. isDelete := true
  395. for _, v := range tableDataList {
  396. if v[columnIndex].Monitor != `` || (v[columnIndex].MergeCell.Column != columnIndex && v[columnIndex].MergeCell.Column != 0) {
  397. isDelete = false
  398. flag = true
  399. break
  400. }
  401. }
  402. if flag {
  403. break
  404. }
  405. if isDelete {
  406. deleteTailColumnIndexList = append(deleteTailColumnIndexList, columnIndex)
  407. selfTableData.RemoveRightColumn++
  408. }
  409. }
  410. if len(deleteTailColumnIndexList) > 0 {
  411. deleteColumnIndexList = append(deleteColumnIndexList, utils.RevSlice(deleteTailColumnIndexList)...)
  412. }
  413. lenDeleteColumn := len(deleteColumnIndexList)
  414. if lenDeleteColumn > 0 {
  415. for columnIndex := lenDeleteColumn - 1; columnIndex >= 0; columnIndex-- {
  416. //表格数据
  417. for k, v := range tableDataList {
  418. tableDataList[k] = append(v[:deleteColumnIndexList[columnIndex]], v[deleteColumnIndexList[columnIndex]+1:]...) // 删除开头N个元素
  419. }
  420. //表格宽度
  421. rowWidthList = append(rowWidthList[:deleteColumnIndexList[columnIndex]], rowWidthList[deleteColumnIndexList[columnIndex]+1:]...) // 删除开头N个元素
  422. }
  423. }
  424. }
  425. //处理合并单元格
  426. tableDataMergeList := make([]TableDataMerge, 0)
  427. for _, v := range item.Config.Merge {
  428. indexRow := v.Row - selfTableData.RemoveTopRow
  429. indexColumn := v.Column - selfTableData.RemoveLeftColumn
  430. tableDataMerge := TableDataMerge{
  431. StartRowIndex: indexRow,
  432. StartColumnIndex: indexColumn,
  433. MergeRowNum: v.Rs - 1,
  434. MergeColumnNum: v.Cs - 1,
  435. }
  436. tableDataMergeList = append(tableDataMergeList, tableDataMerge)
  437. }
  438. // 表格数据
  439. selfTableData.TableDataList = tableDataList
  440. selfTableData.RowWidthList = rowWidthList
  441. selfTableData.RowHeightList = rowHeightList
  442. selfTableData.MergeList = tableDataMergeList
  443. return
  444. }
  445. // handleCellVal 处理单元格数据
  446. func handleCellVal(tmpTableColData LuckySheetDataValue) (valueStr string) {
  447. valueStr = tmpTableColData.Monitor
  448. if valueStr == `` {
  449. //valueStr = fmt.Sprint(cellInfo.Value)
  450. if valueStr == `` && tmpTableColData.CellType.S != nil {
  451. //不是设置在单元格上面,而是设置在文本上
  452. for _, cellS := range tmpTableColData.CellType.S {
  453. valueStr += fmt.Sprint(cellS.Value)
  454. }
  455. }
  456. }
  457. return
  458. }
  459. type CellPosition struct {
  460. RowIndex int
  461. ColumnIndex int
  462. }
  463. // HandleTableCell 前端d毛需要我根据合并单元格处理掉多余的单元格
  464. func HandleTableCell(oldTableData TableData) (newTableData TableData) {
  465. newTableData = oldTableData
  466. mergeList := oldTableData.MergeList
  467. lenMergeList := len(mergeList)
  468. if lenMergeList <= 0 {
  469. return
  470. }
  471. deleteRowMap := make(map[int]map[int]int)
  472. deleteRowList := make([]int, 0)
  473. deleteColumnMap := make(map[int][]int, 0)
  474. for i := lenMergeList - 1; i >= 0; i-- {
  475. tmpMerge := mergeList[i]
  476. //
  477. for rowIndex := tmpMerge.MergeRowNum; rowIndex >= 0; rowIndex-- {
  478. tmpColumnMap := make(map[int]int)
  479. if columnMap, ok := deleteRowMap[tmpMerge.StartRowIndex+rowIndex]; ok {
  480. tmpColumnMap = columnMap
  481. } else {
  482. deleteRowList = append(deleteRowList, tmpMerge.StartRowIndex+rowIndex)
  483. }
  484. deleteColumnList := make([]int, 0)
  485. if columnList, ok := deleteColumnMap[tmpMerge.StartRowIndex+rowIndex]; ok {
  486. deleteColumnList = columnList
  487. }
  488. for columnIndex := tmpMerge.MergeColumnNum; columnIndex >= 0; columnIndex-- {
  489. if rowIndex == 0 && columnIndex == 0 {
  490. continue
  491. }
  492. tmpColumnMap[tmpMerge.StartColumnIndex+columnIndex] = tmpMerge.StartColumnIndex + columnIndex
  493. deleteColumnList = append(deleteColumnList, tmpMerge.StartColumnIndex+columnIndex)
  494. }
  495. // 待删除的行
  496. deleteRowMap[tmpMerge.StartRowIndex+rowIndex] = tmpColumnMap
  497. // 该行待删除的列
  498. deleteColumnMap[tmpMerge.StartRowIndex+rowIndex] = deleteColumnList
  499. }
  500. }
  501. sort.Ints(deleteRowList)
  502. //for k, v := range deleteRowList {
  503. // fmt.Println("k:", k, "v:", v)
  504. //}
  505. //return
  506. //fmt.Println("===============")
  507. for i := len(deleteRowList) - 1; i >= 0; i-- {
  508. rowIndex := deleteRowList[i]
  509. deleteColumnList := deleteColumnMap[rowIndex]
  510. sort.Ints(deleteColumnList)
  511. for i := len(deleteColumnList) - 1; i >= 0; i-- {
  512. columnIndex := deleteColumnList[i]
  513. tmpColumnDataList := newTableData.TableDataList[rowIndex]
  514. newTableData.TableDataList[rowIndex] = append(tmpColumnDataList[:columnIndex], tmpColumnDataList[columnIndex+1:]...) // 删除开头N个元素
  515. //fmt.Println("row:", rowIndex, "===column:", columnIndex)
  516. }
  517. }
  518. return
  519. }