lucky_sheet.go 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701
  1. package excel
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "eta/eta_api/models/data_manage/excel/request"
  6. "eta/eta_api/utils"
  7. "fmt"
  8. "github.com/tealeg/xlsx"
  9. "github.com/xuri/excelize/v2"
  10. "os"
  11. "reflect"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. type LuckySheetDataBak struct {
  17. CalcChain []interface{} `json:"calcChain" description:"公式链"`
  18. CellData []LuckySheetCellData `json:"celldata" description:"单元格数据"`
  19. ChWidth int64 `json:"ch_width" description:"工作表区域的宽度"`
  20. Config struct {
  21. BorderInfo []struct {
  22. BorderType string `json:"borderType" description:""`
  23. Color string `json:"color" description:""`
  24. Range []struct {
  25. Column []int64 `json:"column" description:""`
  26. Row []int64 `json:"row" description:""`
  27. } `json:"range" description:""`
  28. RangeType string `json:"rangeType" description:""`
  29. Style string `json:"style" description:""`
  30. Value struct {
  31. B struct {
  32. Color string `json:"color" description:""`
  33. Style string `json:"style" description:""`
  34. } `json:"b" description:""`
  35. ColIndex int64 `json:"col_index" description:""`
  36. L struct {
  37. Color string `json:"color" description:""`
  38. Style string `json:"style" description:""`
  39. } `json:"l" description:""`
  40. R struct {
  41. Color string `json:"color" description:""`
  42. Style string `json:"style" description:""`
  43. } `json:"r" description:""`
  44. RowIndex int64 `json:"row_index" description:""`
  45. T struct {
  46. Color string `json:"color" description:""`
  47. Style string `json:"style" description:""`
  48. } `json:"t" description:""`
  49. } `json:"value" description:"" description:""`
  50. } `json:"borderInfo" description:""`
  51. Colhidden struct{} `json:"colhidden" description:""`
  52. Columnlen map[string]float64 `json:"columnlen" description:""`
  53. CustomHeight struct {
  54. Zero int64 `json:"0"`
  55. } `json:"customHeight" description:""`
  56. CustomWidth struct {
  57. Two int64 `json:"2" description:""`
  58. } `json:"customWidth" description:""`
  59. Merge struct{} `json:"merge" description:""`
  60. Rowlen map[string]float64 `json:"rowlen" description:""`
  61. } `json:"config" description:""`
  62. Data [][]struct {
  63. Ct struct {
  64. Fa string `json:"fa"`
  65. T string `json:"t"`
  66. } `json:"ct"`
  67. M string `json:"m"`
  68. V interface{} `json:"v"`
  69. } `json:"data" description:""`
  70. DataVerification struct{} `json:"dataVerification" description:""`
  71. Filter interface{} `json:"filter" description:""`
  72. FilterSelect interface{} `json:"filter_select" description:""`
  73. Hyperlink struct{} `json:"hyperlink" description:""`
  74. Images struct{} `json:"images" description:""`
  75. Index string `json:"index" description:""`
  76. JfgirdSelectSave []interface{} `json:"jfgird_select_save" description:""`
  77. LuckysheetAlternateformatSave []interface{} `json:"luckysheet_alternateformat_save" description:""`
  78. LuckysheetConditionformatSave []interface{} `json:"luckysheet_conditionformat_save" description:""`
  79. LuckysheetSelectSave []struct {
  80. Column []int64 `json:"column" description:""`
  81. ColumnFocus int64 `json:"column_focus" description:""`
  82. Height int64 `json:"height" description:""`
  83. HeightMove int64 `json:"height_move" description:""`
  84. Left int64 `json:"left" description:""`
  85. LeftMove int64 `json:"left_move" description:""`
  86. Row []int64 `json:"row" description:""`
  87. RowFocus int64 `json:"row_focus" description:""`
  88. Top int64 `json:"top" description:""`
  89. TopMove int64 `json:"top_move" description:""`
  90. Width int64 `json:"width" description:""`
  91. WidthMove int64 `json:"width_move" description:""`
  92. } `json:"luckysheet_select_save" description:"" description:""`
  93. LuckysheetSelectionRange []struct {
  94. Column []int64 `json:"column" description:""`
  95. Row []int64 `json:"row" description:""`
  96. } `json:"luckysheet_selection_range" description:""`
  97. RhHeight float64 `json:"rh_height" description:""`
  98. ScrollLeft float64 `json:"scrollLeft" description:""`
  99. ScrollTop float64 `json:"scrollTop" description:""`
  100. Status int64 `json:"status" description:""`
  101. Visibledatacolumn []int64 `json:"visibledatacolumn" description:""`
  102. Visibledatarow []int64 `json:"visibledatarow" description:""`
  103. ZoomRatio float64 `json:"zoomRatio" description:"sheet缩放比例"`
  104. }
  105. // LuckySheetData sheet表格数据
  106. type LuckySheetData struct {
  107. Name string `json:"name" description:"工作表名称"`
  108. Index interface{} `json:"index" description:"工作表索引"`
  109. Row int `json:"row" description:"行数"`
  110. Column int `json:"column" description:"列数"`
  111. CellData []LuckySheetCellData `json:"celldata" description:"单元格数据"`
  112. ChWidth int64 `json:"ch_width" description:"工作表区域的宽度"`
  113. Config LuckySheetDataConfig `json:"config" description:""`
  114. //Index int `json:"index" description:"工作表索引"`
  115. RhHeight float64 `json:"rh_height" description:"工作表区域的高度"`
  116. ScrollLeft float64 `json:"scrollLeft" description:"左右滚动条位置"`
  117. ScrollTop float64 `json:"scrollTop" description:"上下滚动条位置"`
  118. CalcChain []interface{} `json:"calcChain" description:"公式链"`
  119. Status interface{} `json:"status" description:"激活状态"`
  120. VisibleDataColumn []int64 `json:"visibledatacolumn" description:"所有列的位置信息,递增的列位置数据,初始化无需设置"`
  121. VisibleDataRow []int64 `json:"visibledatarow" description:"所有行的位置信息,递增的行位置数据,初始化无需设置"`
  122. ZoomRatio float64 `json:"zoomRatio" description:"sheet缩放比例"`
  123. }
  124. // LuckySheetDataConfig sheet表单的配置
  125. type LuckySheetDataConfig struct {
  126. BorderInfo []LuckySheetDataConfigBorderInfo `json:"borderInfo" description:"边框"`
  127. Colhidden map[string]int64 `json:"colhidden" description:"隐藏列,示例值:\"colhidden\":{\"30\":0,\"31\":0}"`
  128. Columnlen map[string]float64 `json:"columnlen" description:"每个单元格的列宽"`
  129. //CustomHeight struct {
  130. // Zero int64 `json:"0"`
  131. //} `json:"customHeight" description:""`
  132. //CustomWidth struct {
  133. // Two int64 `json:"2" description:""`
  134. //} `json:"customWidth" description:""`
  135. Merge map[string]LuckySheetDataConfigMerge `json:"merge" description:"合并单元格"`
  136. Rowlen map[string]float64 `json:"rowlen" description:"每个单元格的行高"`
  137. }
  138. // LuckySheetDataConfigMerge 合并单元格设置
  139. type LuckySheetDataConfigMerge struct {
  140. Row int `json:"r" description:"行数"`
  141. Column int `json:"c" description:"列数"`
  142. Rs int `json:"rs" description:"合并的行数"`
  143. Cs int `json:"cs" description:"合并的列数"`
  144. }
  145. // LuckySheetDataConfigBorderInfo 单元格边框信息
  146. type LuckySheetDataConfigBorderInfo struct {
  147. 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"`
  148. Color string `json:"color" description:"边框颜色 color: 16进制颜色值"`
  149. Range []struct {
  150. Column []int64 `json:"column" description:"行"`
  151. Row []int64 `json:"row" description:"列"`
  152. } `json:"range" description:"选区范围 range: 行列信息数组"`
  153. RangeType string `json:"rangeType" description:"选区 rangeType: range | cell "`
  154. 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"`
  155. Value LuckySheetDataConfigBorderInfoCellValue `json:"value" description:"" description:"范围类型分单个单元格的数据"`
  156. }
  157. // LuckySheetDataConfigBorderInfoCellValue 单元格边框信息(范围类型为:单个单元格)
  158. type LuckySheetDataConfigBorderInfoCellValue struct {
  159. B LuckySheetDataConfigBorderInfoCell `json:"b" description:"下边框"`
  160. L LuckySheetDataConfigBorderInfoCell `json:"l" description:"左边框"`
  161. R LuckySheetDataConfigBorderInfoCell `json:"r" description:"右边框"`
  162. T LuckySheetDataConfigBorderInfoCell `json:"t" description:"上边框"`
  163. ColIndex int64 `json:"col_index" description:"第几行"`
  164. RowIndex int64 `json:"row_index" description:"第几列"`
  165. }
  166. // LuckySheetDataConfigBorderInfoCell 单元格边框信息(cell类型)
  167. type LuckySheetDataConfigBorderInfoCell struct {
  168. Color string `json:"color" description:"边框颜色 color: 16进制颜色值"`
  169. Style int `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"`
  170. Sl interface{} `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"`
  171. }
  172. // LuckySheetCellData 单个单元格数据
  173. type LuckySheetCellData struct {
  174. Col int64 `json:"c" description:"列"`
  175. Row int64 `json:"r" description:"行"`
  176. Value LuckySheetDataValue `json:"v" description:"单元格内值的数据"`
  177. }
  178. // LuckySheetDataValue 单元格内值的数据
  179. type LuckySheetDataValue struct {
  180. CellType LuckySheetDataCellType `json:"ct" description:"单元格值格式:文本、时间等 "`
  181. Value interface{} `json:"v" description:"原始值"`
  182. Monitor string `json:"m" description:"显示值"`
  183. Background string `json:"bg" description:"背景色,实例值:#fff000"`
  184. FontFamily int `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 华文隶书 "`
  185. FF interface{} `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 华文隶书 "`
  186. FontColor string `json:"fc" description:"字体颜色,示例值:#fff000" `
  187. Bold int `json:"bl" description:"粗体,0 常规 、 1加粗 "`
  188. Italic int `json:"it" description:"斜体,0 常规 、 1 斜体"`
  189. Fontsize int `description:"字体大小,14"`
  190. CancelLine int ` description:"删除线, 0 常规 、 1 删除线"`
  191. HorizontalType int `description:"水平对齐, 0 居中、1 左、2右"`
  192. VerticalType int ` description:"垂直对齐, 0 中间、1 上、2下"`
  193. Fs interface{} `json:"fs" description:"字体大小,14"`
  194. Cl interface{} `json:"cl" description:"删除线, 0 常规 、 1 删除线"`
  195. Ht interface{} `json:"ht" description:"水平对齐, 0 居中、1 左、2右"`
  196. Vt interface{} `json:"vt" description:"垂直对齐, 0 中间、1 上、2下"`
  197. //TextRotate string `json:"tr" description:"竖排文字, 3"`
  198. //RotateText string `json:"rt" description:"文字旋转角度, 介于0~180之间的整数,包含0和180"`
  199. TextBeak int `description:"文本换行, 0 截断、1溢出、2 自动换行"`
  200. Tb interface{} `json:"tb" description:"文本换行, 0 截断、1溢出、2 自动换行"`
  201. Ps LuckySheetDataCellComment `json:"ps" description:"批注"`
  202. Function string `json:"f" description:"公式"`
  203. MergeCell LuckySheetDataConfigMerge `json:"mc" description:"合并单元格信息"`
  204. }
  205. // LuckySheetDataCellType 单元格值格式:文本、时间等
  206. type LuckySheetDataCellType struct {
  207. Fa string `json:"fa" description:"格式名称,例如:“General”为自动格式"`
  208. T string `json:"t" description:"格式类型,例如:“n”为数字类型"`
  209. S []struct {
  210. FontFamily int `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 华文隶书 "`
  211. FF interface{} `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 华文隶书 "`
  212. FontColor string `json:"fc" description:"字体颜色,示例值:#fff000" `
  213. Fontsize int `description:"字体大小,14"`
  214. CancelLine int ` description:"删除线, 0 常规 、 1 删除线"`
  215. HorizontalType int `description:"水平对齐, 0 居中、1 左、2右"`
  216. VerticalType int `description:"垂直对齐, 0 中间、1 上、2下"`
  217. Fs interface{} `json:"fs" description:"字体大小,14"`
  218. Cl interface{} `json:"cl" description:"删除线, 0 常规 、 1 删除线"`
  219. Ht interface{} `json:"ht" description:"水平对齐, 0 居中、1 左、2右"`
  220. Vt interface{} `json:"vt" description:"垂直对齐, 0 中间、1 上、2下"`
  221. Un int `json:"un" description:""`
  222. Bold int `json:"bl" description:"粗体,0 常规 、 1加粗 "`
  223. Italic int `json:"it" description:"斜体,0 常规 、 1 斜体"`
  224. Value interface{} `json:"v" description:"原始值"`
  225. } `json:"s"`
  226. }
  227. // LuckySheetDataCellComment 批注
  228. type LuckySheetDataCellComment struct {
  229. Left int `json:"left" description:"批注框距离左边工作表边缘位置"`
  230. Top int `json:"top" description:"批注框距离上边工作表边缘位置"`
  231. Width int `json:"width" description:"批注框宽度"`
  232. Height int `json:"height" description:"批注框高度"`
  233. Value string `json:"value" description:"批注内容"`
  234. IsShow bool `json:"isshow" description:"是否显示批注"`
  235. }
  236. // GetLuckySheetData 获取LuckySheetData的结构体
  237. func GetLuckySheetData(jsonStr string) (item *LuckySheetData, err error) {
  238. err = json.Unmarshal([]byte(jsonStr), &item)
  239. for k, v := range item.CellData {
  240. value := v.Value
  241. value.Fontsize = getIntValueByInterface(value.Fs)
  242. value.CancelLine = getIntValueByInterface(value.Cl)
  243. value.HorizontalType = getIntValueByInterface(value.Ht)
  244. value.VerticalType = getIntValueByInterface(value.Vt)
  245. value.FontFamily = getIntValueByInterface(value.FF)
  246. value.TextBeak = getIntValueByInterface(value.Tb)
  247. if len(value.CellType.S) > 0 {
  248. for kk, vv := range value.CellType.S {
  249. vv.Fontsize = getIntValueByInterface(vv.Fs)
  250. vv.CancelLine = getIntValueByInterface(vv.Cl)
  251. vv.HorizontalType = getIntValueByInterface(vv.Ht)
  252. vv.VerticalType = getIntValueByInterface(vv.Vt)
  253. vv.FontFamily = getIntValueByInterface(vv.FF)
  254. value.CellType.S[kk] = vv
  255. }
  256. }
  257. item.CellData[k].Value = value
  258. }
  259. if len(item.Config.BorderInfo) > 0 {
  260. for k, v := range item.Config.BorderInfo {
  261. v.Value.T.Style = getIntValueByInterface(v.Value.T.Style)
  262. v.Value.B.Style = getIntValueByInterface(v.Value.B.Style)
  263. v.Value.L.Style = getIntValueByInterface(v.Value.L.Style)
  264. v.Value.R.Style = getIntValueByInterface(v.Value.R.Style)
  265. item.Config.BorderInfo[k] = v
  266. }
  267. }
  268. return
  269. }
  270. func getIntValueByInterface(valInterface interface{}) (val int) {
  271. if valInterface == nil {
  272. return
  273. }
  274. switch reflect.TypeOf(valInterface).Kind() {
  275. case reflect.String:
  276. tmpValue := reflect.ValueOf(valInterface).String()
  277. tmpValInt, err := strconv.Atoi(tmpValue)
  278. if err != nil {
  279. val = 0
  280. } else {
  281. val = tmpValInt
  282. }
  283. case reflect.Int, reflect.Int32, reflect.Int64:
  284. tmpValue := reflect.ValueOf(valInterface).Int()
  285. val = int(tmpValue)
  286. }
  287. return
  288. }
  289. // TableData 表格数据
  290. type TableData struct {
  291. TableDataList [][]LuckySheetDataValue
  292. RowWidthList []float64
  293. RowHeightList []float64
  294. RemoveTopRow int `description:"移除表格上方的行数"`
  295. RemoveBottomRow int `description:"移除表格下方的行数"`
  296. RemoveLeftColumn int `description:"移除表格左侧的列数"`
  297. RemoveRightColumn int `description:"移除表格右侧的列数"`
  298. MergeList []TableDataMerge `description:"合并数据列"`
  299. }
  300. // TableDataMerge 表格数据合并单元格配置
  301. type TableDataMerge struct {
  302. StartRowIndex int `json:"start_row_index" description:"开始的行下标"`
  303. StartColumnIndex int `json:"start_column" description:"开始的列下标"`
  304. MergeRowNum int `json:"merge_row_num" description:"合并的行数"`
  305. MergeColumnNum int `json:"merge_column_num" description:"合并的列数"`
  306. }
  307. // ToExcel 通过 TableData生成excel表格
  308. func (tableData TableData) ToExcel() (downloadFilePath string, err error) {
  309. //dir, err := os.Executable()
  310. //exPath := filepath.Dir(dir)
  311. //downloadFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  312. downloadFilePath, err = getDownloadPath()
  313. if err != nil {
  314. return
  315. }
  316. xlsxFile := xlsx.NewFile()
  317. if err != nil {
  318. return
  319. }
  320. // 将单个sheet的数据写入到excel
  321. err = tableData.WriteExcelSheetData(xlsxFile, "sheet1")
  322. if err != nil {
  323. return
  324. }
  325. //return
  326. err = xlsxFile.Save(downloadFilePath)
  327. if err != nil {
  328. return
  329. }
  330. //randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  331. //downloadFileName := "即将到期客户数据_" + randStr + ".xlsx"
  332. //this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  333. return
  334. }
  335. // WriteExcelSheetData 通过 TableData生成excel表格数据
  336. func (tableData TableData) WriteExcelSheetData(xlsxFile *xlsx.File, sheetName string) (err error) {
  337. style := xlsx.NewStyle()
  338. alignment := xlsx.Alignment{
  339. Horizontal: "center",
  340. Vertical: "center",
  341. WrapText: true,
  342. }
  343. style.Alignment = alignment
  344. style.ApplyAlignment = true
  345. sheet, err := xlsxFile.AddSheet(sheetName)
  346. if err != nil {
  347. return
  348. }
  349. for k, v := range tableData.RowWidthList {
  350. err = sheet.SetColWidth(k, k, v/10)
  351. if err != nil {
  352. return
  353. }
  354. }
  355. // 单元格高度配置列表
  356. lenRowHeight := len(tableData.RowHeightList)
  357. for index, v := range tableData.TableDataList {
  358. tmpRow := sheet.AddRow()
  359. //设置单元格高度
  360. if index < lenRowHeight && tableData.RowHeightList[index] > 0 {
  361. tmpRow.SetHeight(tableData.RowHeightList[index] / 2)
  362. }
  363. for _, cellInfo := range v {
  364. tmpStyle := new(xlsx.Style)
  365. //xlsx.Style{
  366. // Fill: xlsx.Fill{},
  367. // ApplyBorder: false,
  368. // ApplyFill: false,
  369. // ApplyFont: false,
  370. // NamedStyleIndex: nil,
  371. //}
  372. //fill := *NewFill("solid", "FF000000", "00FF0000")
  373. defaultFill := xlsx.DefaultFill()
  374. if cellInfo.Background != `` {
  375. defaultFill.PatternType = "solid"
  376. backgroundColor := cellInfo.Background
  377. // 这么做是为了避免传入的是RGB的格式(rgb(255, 255, 255))
  378. backgroundColor = getColor(backgroundColor)
  379. defaultFill.BgColor = strings.TrimPrefix(backgroundColor, "#")
  380. defaultFill.FgColor = strings.TrimPrefix(backgroundColor, "#")
  381. }
  382. tmpStyle.Fill = *defaultFill
  383. // 获取表格字体配置
  384. tmpStyle.Font = getExcelFontConf(cellInfo)
  385. //获取表格单元格排列配置
  386. tmpStyle.ApplyAlignment = true
  387. tmpStyle.Alignment = getExcelAlignmentConf(cellInfo)
  388. //边框配置
  389. tmpStyle.Border = xlsx.Border{
  390. Left: "thin",
  391. LeftColor: "000000",
  392. Right: "thin",
  393. RightColor: "000000",
  394. Top: "thin",
  395. TopColor: "000000",
  396. Bottom: "thin",
  397. BottomColor: "000000",
  398. }
  399. //tmpStyle.ApplyAlignment = true
  400. //tmpStyle.Alignment.WrapText = true
  401. tmpRow := tmpRow.AddCell()
  402. tmpRow.SetStyle(tmpStyle)
  403. valueStr := cellInfo.Monitor
  404. if valueStr == `` {
  405. //valueStr = fmt.Sprint(cellInfo.Value)
  406. if valueStr == `` && cellInfo.CellType.S != nil {
  407. //不是设置在单元格上面,而是设置在文本上
  408. for _, cellS := range cellInfo.CellType.S {
  409. valueStr += fmt.Sprint(cellS.Value)
  410. }
  411. }
  412. }
  413. //tmpRow.SetString(valueStr)
  414. switch cellInfo.CellType.Fa {
  415. case "General":
  416. if cellInfo.CellType.S != nil {
  417. tmpRow.SetString(valueStr)
  418. } else {
  419. tmpRow.SetValue(cellInfo.Value)
  420. }
  421. case "@":
  422. tmpRow.SetString(valueStr)
  423. default:
  424. tmpRow.SetString(valueStr)
  425. }
  426. if cellInfo.Function != `` {
  427. //xlsxFile.
  428. //xlsxFile.SetCellFormula
  429. tmpRow.SetFormula(cellInfo.Function)
  430. }
  431. //if cellInfo.Function != `` {
  432. // tmpRow.SetFormula(cellInfo.Function)
  433. //}
  434. }
  435. }
  436. for _, v := range tableData.MergeList {
  437. for k, cell := range sheet.Row(v.StartRowIndex).Cells {
  438. if v.StartColumnIndex == k {
  439. cell.Merge(v.MergeColumnNum, v.MergeRowNum)
  440. }
  441. }
  442. }
  443. return
  444. }
  445. // GetTableDataByLuckySheetDataStr 通过LuckySheet的string数据获取表格数据
  446. func (item *LuckySheetData) GetTableDataByLuckySheetDataStr(isRemoveBlankCell bool) (selfTableData TableData, err error) {
  447. luckySheetCellDataList := item.CellData
  448. // 表格数据
  449. tableDataMap := make(map[int64]map[int64]LuckySheetDataValue)
  450. // 最大行,最大列
  451. var maxRow, maxCol int64
  452. for _, v := range luckySheetCellDataList {
  453. //fmt.Println("row:", v.Row, "=====col:", v.Col)
  454. if v.Row > maxRow { //最大行
  455. maxRow = v.Row
  456. }
  457. if v.Col > maxCol { //最大列
  458. maxCol = v.Col
  459. }
  460. var tmpRow map[int64]LuckySheetDataValue
  461. tmpRow, ok := tableDataMap[v.Row]
  462. if ok {
  463. tmpRow[v.Col] = v.Value
  464. } else {
  465. tmpRow = make(map[int64]LuckySheetDataValue)
  466. tmpRow[v.Col] = v.Value
  467. }
  468. tableDataMap[v.Row] = tmpRow
  469. }
  470. tableDataList := make([][]LuckySheetDataValue, 0)
  471. var i int64
  472. // 单元格宽度
  473. configColumnConf := item.Config.Columnlen
  474. rowWidthMap := make(map[int]float64)
  475. rowWidthList := make([]float64, 0) //
  476. // 单元格高度
  477. configRowConf := item.Config.Rowlen
  478. rowHeightList := make([]float64, 0) //
  479. for i = 0; i <= maxRow; i++ {
  480. //列
  481. tmpTableColDataList := make([]LuckySheetDataValue, 0)
  482. // 每个单元格的高度
  483. tmpHeight, ok := configRowConf[fmt.Sprint(i)]
  484. if !ok {
  485. tmpHeight = 0
  486. }
  487. rowHeightList = append(rowHeightList, tmpHeight)
  488. tmpRowData, ok := tableDataMap[i]
  489. // 如果没有该行数据,那么就默认添加空行数据处理
  490. if !ok {
  491. tmpRowData = make(map[int64]LuckySheetDataValue)
  492. }
  493. var j int64
  494. for j = 0; j <= maxCol; j++ {
  495. tmpTableColData, ok := tmpRowData[j]
  496. if !ok {
  497. tmpTableColData = LuckySheetDataValue{}
  498. }
  499. //单元格显示的数据处理
  500. tmpTableColData.Monitor = handleCellVal(tmpTableColData)
  501. tmpTableColDataList = append(tmpTableColDataList, tmpTableColData)
  502. // 每个单元格的宽度
  503. tmpWidth, ok := configColumnConf[fmt.Sprint(j)]
  504. if !ok {
  505. tmpWidth = 0
  506. }
  507. rowIndex := len(tmpTableColDataList) - 1
  508. if _, ok2 := rowWidthMap[rowIndex]; !ok2 {
  509. rowWidthList = append(rowWidthList, tmpWidth)
  510. }
  511. rowWidthMap[rowIndex] = tmpWidth
  512. }
  513. tableDataList = append(tableDataList, tmpTableColDataList)
  514. }
  515. tableDataMergeList := make([]TableDataMerge, 0)
  516. tableRemoveNum := TableRemoveNum{}
  517. // 数据处理,移除上下左右空行空列
  518. if isRemoveBlankCell {
  519. tableDataList, tableRemoveNum, rowHeightList, rowWidthList, tableDataMergeList = handleTableDataList(tableDataList, item.Config.Merge, rowHeightList, rowWidthList)
  520. }
  521. // 表格数据
  522. {
  523. // 移除空白单元格信息
  524. selfTableData.RemoveTopRow = tableRemoveNum.RemoveTopRow
  525. selfTableData.RemoveBottomRow = tableRemoveNum.RemoveBottomRow
  526. selfTableData.RemoveLeftColumn = tableRemoveNum.RemoveLeftColumn
  527. selfTableData.RemoveRightColumn = tableRemoveNum.RemoveRightColumn
  528. }
  529. selfTableData.TableDataList = tableDataList
  530. selfTableData.RowWidthList = rowWidthList
  531. selfTableData.RowHeightList = rowHeightList
  532. selfTableData.MergeList = tableDataMergeList
  533. return
  534. }
  535. // TableRemoveNum 上下左右移除的空行空列数量
  536. type TableRemoveNum struct {
  537. RemoveTopRow int `description:"移除表格上方的行数"`
  538. RemoveBottomRow int `description:"移除表格下方的行数"`
  539. RemoveLeftColumn int `description:"移除表格左侧的列数"`
  540. RemoveRightColumn int `description:"移除表格右侧的列数"`
  541. }
  542. // handleTableDataList 表格数据处理(移除上下左右的空行空列)
  543. func handleTableDataList(tableDataList [][]LuckySheetDataValue, luckySheetDataConfigMergeList map[string]LuckySheetDataConfigMerge, rowHeightList, rowWidthList []float64) ([][]LuckySheetDataValue, TableRemoveNum, []float64, []float64, []TableDataMerge) {
  544. var removeTopRow, removeBottomRow, removeLeftColumn, removeRightColumn int //上下左右需要移除的空行空列
  545. tableDataMergeList := make([]TableDataMerge, 0) //待合并的单元格信息
  546. //总共多少行
  547. lenRow := len(tableDataList)
  548. //移除上下空行
  549. deleteRowIndexList := make([]int, 0)
  550. if lenRow > 0 {
  551. var flag = false
  552. // 移除上方空列
  553. for rowIndex := 0; rowIndex < lenRow; rowIndex++ {
  554. isDelete := true
  555. for _, v := range tableDataList[rowIndex] {
  556. if v.Monitor != `` || (v.MergeCell.Row != rowIndex && v.MergeCell.Row != 0) {
  557. isDelete = false
  558. flag = true
  559. break
  560. }
  561. }
  562. if flag {
  563. break
  564. }
  565. if isDelete {
  566. removeTopRow++
  567. deleteRowIndexList = append(deleteRowIndexList, rowIndex)
  568. }
  569. }
  570. // 移除下方空行
  571. flag = false
  572. //尾部
  573. deleteBottomRowIndexList := make([]int, 0)
  574. // 数据要大于1行才会处理
  575. if len(tableDataList) > 1 {
  576. for rowIndex := lenRow - 1; rowIndex >= 0; rowIndex-- {
  577. isDelete := true
  578. for _, v := range tableDataList[rowIndex] {
  579. if v.Monitor != `` {
  580. isDelete = false
  581. flag = true
  582. break
  583. }
  584. }
  585. if flag {
  586. break
  587. }
  588. if isDelete {
  589. deleteBottomRowIndexList = append(deleteBottomRowIndexList, rowIndex)
  590. removeBottomRow++
  591. }
  592. }
  593. }
  594. if len(deleteBottomRowIndexList) > 0 {
  595. deleteRowIndexList = append(deleteRowIndexList, utils.RevSlice(deleteBottomRowIndexList)...)
  596. }
  597. lenDeleteRow := len(deleteRowIndexList)
  598. if lenDeleteRow > 0 {
  599. for rowIndex := lenDeleteRow - 1; rowIndex >= 0; rowIndex-- {
  600. //表格数据
  601. tableDataList = append(tableDataList[:deleteRowIndexList[rowIndex]], tableDataList[deleteRowIndexList[rowIndex]+1:]...) // 删除开头N个元素
  602. //表格高度
  603. rowHeightList = append(rowHeightList[:deleteRowIndexList[rowIndex]], rowHeightList[deleteRowIndexList[rowIndex]+1:]...) // 删除开头N个元素
  604. }
  605. }
  606. }
  607. //移除左右空列
  608. deleteColumnIndexList := make([]int, 0)
  609. if len(tableDataList) > 0 {
  610. var flag = false
  611. lenColumn := len(tableDataList[0])
  612. // 移除左边空列
  613. for columnIndex := 0; columnIndex < lenColumn; columnIndex++ {
  614. isDelete := true
  615. for _, v := range tableDataList {
  616. //如果一列都没有,说明是上面几行是空行,没有数据
  617. if len(v) <= 0 {
  618. continue
  619. }
  620. if v[columnIndex].Monitor != `` || (v[columnIndex].MergeCell.Column != columnIndex && v[columnIndex].MergeCell.Column != 0) {
  621. isDelete = false
  622. flag = true
  623. break
  624. }
  625. }
  626. if flag {
  627. break
  628. }
  629. if isDelete {
  630. removeLeftColumn++
  631. deleteColumnIndexList = append(deleteColumnIndexList, columnIndex)
  632. }
  633. }
  634. // 移除右方空列
  635. flag = false
  636. //右边
  637. deleteTailColumnIndexList := make([]int, 0)
  638. // 数据要大于1列才会处理
  639. if lenColumn > 1 {
  640. for columnIndex := lenColumn - 1; columnIndex >= 0; columnIndex-- {
  641. isDelete := true
  642. for _, v := range tableDataList {
  643. //如果一列都没有,说明是上面几行是空行,没有数据
  644. if len(v) <= 0 {
  645. continue
  646. }
  647. if v[columnIndex].Monitor != `` || (v[columnIndex].MergeCell.Column != columnIndex && v[columnIndex].MergeCell.Column != 0) {
  648. isDelete = false
  649. flag = true
  650. break
  651. }
  652. }
  653. if flag {
  654. break
  655. }
  656. if isDelete {
  657. deleteTailColumnIndexList = append(deleteTailColumnIndexList, columnIndex)
  658. removeRightColumn++
  659. }
  660. }
  661. }
  662. if len(deleteTailColumnIndexList) > 0 {
  663. deleteColumnIndexList = append(deleteColumnIndexList, utils.RevSlice(deleteTailColumnIndexList)...)
  664. }
  665. lenDeleteColumn := len(deleteColumnIndexList)
  666. if lenDeleteColumn > 0 {
  667. for columnIndex := lenDeleteColumn - 1; columnIndex >= 0; columnIndex-- {
  668. //表格数据
  669. for k, v := range tableDataList {
  670. tableDataList[k] = append(v[:deleteColumnIndexList[columnIndex]], v[deleteColumnIndexList[columnIndex]+1:]...) // 删除开头N个元素
  671. }
  672. //表格宽度
  673. rowWidthList = append(rowWidthList[:deleteColumnIndexList[columnIndex]], rowWidthList[deleteColumnIndexList[columnIndex]+1:]...) // 删除开头N个元素
  674. }
  675. }
  676. }
  677. //处理合并单元格
  678. for _, v := range luckySheetDataConfigMergeList {
  679. indexRow := v.Row - removeTopRow
  680. indexColumn := v.Column - removeLeftColumn
  681. tableDataMerge := TableDataMerge{
  682. StartRowIndex: indexRow,
  683. StartColumnIndex: indexColumn,
  684. MergeRowNum: v.Rs - 1,
  685. MergeColumnNum: v.Cs - 1,
  686. }
  687. tableDataMergeList = append(tableDataMergeList, tableDataMerge)
  688. }
  689. return tableDataList, TableRemoveNum{
  690. RemoveTopRow: removeTopRow,
  691. RemoveBottomRow: removeBottomRow,
  692. RemoveLeftColumn: removeLeftColumn,
  693. RemoveRightColumn: removeRightColumn,
  694. }, rowHeightList, rowWidthList, tableDataMergeList
  695. }
  696. // ToExcel 通过 luckySheetData生成excel表格
  697. func (item *LuckySheetData) ToExcel() (downloadFilePath string, err error) {
  698. tableData, err := item.GetTableDataByLuckySheetDataStr(true)
  699. if err != nil {
  700. return
  701. }
  702. downloadFilePath, err = tableData.ToExcel()
  703. return
  704. }
  705. // getDownloadPath 获取下载地址
  706. func getDownloadPath() (fpath string, err error) {
  707. dateDir := time.Now().Format("20060102")
  708. uploadDir := "static/xls/" + dateDir
  709. err = os.MkdirAll(uploadDir, utils.DIR_MOD)
  710. if err != nil {
  711. return
  712. }
  713. randStr := utils.GetRandStringNoSpecialChar(28)
  714. fileName := randStr + ".xlsx"
  715. fpath = uploadDir + "/" + fileName
  716. return
  717. }
  718. // getExcelFontConf 获取表格字体配置
  719. func getExcelFontConf(cellInfo LuckySheetDataValue) xlsx.Font {
  720. fontSize := 10
  721. familyName := ``
  722. var isBold, isItalic, isUnderline bool
  723. // 字体
  724. {
  725. if cellInfo.Bold == 1 {
  726. isBold = true
  727. }
  728. if cellInfo.Italic == 1 {
  729. isItalic = true
  730. }
  731. if cellInfo.CancelLine == 1 {
  732. isUnderline = true
  733. }
  734. //if cellInfo.Fontsize != `` {
  735. // convSize, _ := strconv.Atoi(cellInfo.Fontsize)
  736. // if convSize > 0 {
  737. // fontSize = convSize
  738. // }
  739. //}
  740. if cellInfo.Fontsize > 0 {
  741. fontSize = cellInfo.Fontsize
  742. }
  743. tmpFamilyName, familyNameOk := LuckyFontFamilyMap[cellInfo.FontFamily]
  744. if !familyNameOk {
  745. tmpFamilyName = "宋体"
  746. }
  747. familyName = tmpFamilyName
  748. }
  749. return xlsx.Font{
  750. Size: fontSize,
  751. Name: familyName,
  752. //Family: v2.FontFamily,
  753. //Charset: 0,
  754. Color: strings.TrimPrefix(cellInfo.FontColor, "#"),
  755. Bold: isBold,
  756. Italic: isItalic,
  757. Underline: isUnderline,
  758. }
  759. }
  760. // getExcelAlignmentConf 获取表格单元格排列配置
  761. func getExcelAlignmentConf(cellInfo LuckySheetDataValue) xlsx.Alignment {
  762. //自动换行
  763. isWrapText := false
  764. if cellInfo.TextBeak == 2 {
  765. isWrapText = true
  766. }
  767. rotateText := 0
  768. //if cellInfo.RotateText != `` {
  769. // convSize, _ := strconv.Atoi(cellInfo.RotateText)
  770. // if convSize > 0 {
  771. // rotateText = convSize
  772. // }
  773. //}
  774. return xlsx.Alignment{
  775. Horizontal: LuckyHorizontalMap[cellInfo.HorizontalType],
  776. //Indent: 0,
  777. //ShrinkToFit: false,
  778. TextRotation: rotateText,
  779. Vertical: LuckyVerticalMap[cellInfo.VerticalType],
  780. WrapText: isWrapText,
  781. }
  782. }
  783. // getExcelBorderConf 获取表格边框配置
  784. //func getExcelBorderConf(list []LuckySheetDataConfigBorderInfo) (v xlsx.Border) {
  785. // // 字体
  786. // for _, v := range list {
  787. // //v.BorderType
  788. // //v.Style
  789. //
  790. // if v.RangeType == "cell" {
  791. //
  792. // xlsx.Border{
  793. // Left: LuckyBorderMap[v.Value.L.Style],
  794. // LeftColor: strings.TrimPrefix(v.Value.L.Color, "#"),
  795. // Right: LuckyBorderMap[v.Value.R.Style],
  796. // RightColor: strings.TrimPrefix(v.Value.R.Color, "#"),
  797. // Top: LuckyBorderMap[v.Value.T.Style],
  798. // TopColor: strings.TrimPrefix(v.Value.T.Color, "#"),
  799. // Bottom: LuckyBorderMap[v.Value.B.Style],
  800. // BottomColor: strings.TrimPrefix(v.Value.B.Color, "#"),
  801. // }
  802. // } else {
  803. // xlsx.Border{
  804. // Left: LuckyBorderMap[v.Style],
  805. // LeftColor: strings.TrimPrefix(v.Color, "#"),
  806. // Right: LuckyBorderMap[v.Style],
  807. // RightColor: strings.TrimPrefix(v.Color, "#"),
  808. // Top: LuckyBorderMap[v.Style],
  809. // TopColor: strings.TrimPrefix(v.Color, "#"),
  810. // Bottom: LuckyBorderMap[v.Style],
  811. // BottomColor: strings.TrimPrefix(v.Color, "#"),
  812. // }
  813. // }
  814. // //v.Value.T.Style
  815. //
  816. // }
  817. //
  818. // return
  819. //}
  820. // LuckyFontFamilyMap 字体map
  821. var LuckyFontFamilyMap = map[int]string{
  822. 0: "Times New Roman",
  823. 1: "Arial",
  824. 2: "Tahoma",
  825. 3: "Verdana",
  826. 4: "微软雅黑",
  827. 5: "宋体", //宋体(Song)、
  828. 6: "黑体", // 黑体(ST Heiti)
  829. 7: "楷体", //楷体(ST Kaiti),
  830. 8: "仿宋", //仿宋(ST FangSong),
  831. 9: "新宋体", //新宋体(ST Song),
  832. 10: "华文新魏",
  833. 11: "华文行楷",
  834. 12: "华文隶书",
  835. }
  836. // LuckyBorderMap 边框map
  837. var LuckyBorderMap = map[string]string{
  838. "": "Thin",
  839. "1": "Thin",
  840. "2": "Hair",
  841. "3": "Dotted",
  842. "4": "Dashed",
  843. "5": "DashDot", //宋体(Song)、
  844. "6": "DashDotDot", // 黑体(ST Heiti)
  845. "7": "Double", //楷体(ST Kaiti),
  846. "8": "Medium", //仿宋(ST FangSong),
  847. "9": "MediumDashed", //新宋体(ST Song),
  848. "10": "MediumDashDot",
  849. "11": "MediumDashDotDot",
  850. "12": "SlantedDashDot",
  851. "13": "Thick",
  852. }
  853. // LuckyHorizontalMap 水平对齐map
  854. var LuckyHorizontalMap = map[int]string{
  855. //"": "general",
  856. 0: "center",
  857. 1: "left",
  858. 2: "right",
  859. }
  860. // LuckyVerticalMap 垂直对齐map
  861. var LuckyVerticalMap = map[int]string{
  862. //"": "center",
  863. 0: "center",
  864. 1: "top",
  865. //2: "bottom",
  866. }
  867. // GetColumnName Return the ColumnName
  868. func GetColumnName(rowNumber int, colNumber int) (colName string, err error) {
  869. if rowNumber < 1 || colNumber < 1 {
  870. err = errors.New("Row and Column Number can not be less than 1")
  871. return
  872. }
  873. dividend := colNumber
  874. var modulo int
  875. for dividend > 0 {
  876. modulo = (dividend - 1) % 26
  877. // Convert int to char
  878. colName = string(65+modulo) + colName
  879. dividend = (int)((dividend - modulo) / 26)
  880. }
  881. colName = colName + strconv.Itoa(rowNumber)
  882. return
  883. }
  884. // GetTableDataByLuckySheetDataStrBak 通过LuckySheet的string数据获取表格数据(备份:2022-08-23 10:30:32)
  885. func (item *LuckySheetData) GetTableDataByLuckySheetDataStrBak() (selfTableData TableData, err error) {
  886. luckySheetCellDataList := item.CellData
  887. // 表格数据
  888. tableDataMap := make(map[int64]map[int64]LuckySheetDataValue)
  889. // 最大行,最大列
  890. var maxRow, maxCol int64
  891. for _, v := range luckySheetCellDataList {
  892. //fmt.Println("row:", v.Row, "=====col:", v.Col)
  893. if v.Row > maxRow { //最大行
  894. maxRow = v.Row
  895. }
  896. if v.Col > maxCol { //最大列
  897. maxCol = v.Col
  898. }
  899. var tmpRow map[int64]LuckySheetDataValue
  900. tmpRow, ok := tableDataMap[v.Row]
  901. if ok {
  902. tmpRow[v.Col] = v.Value
  903. } else {
  904. tmpRow = make(map[int64]LuckySheetDataValue)
  905. tmpRow[v.Col] = v.Value
  906. }
  907. tableDataMap[v.Row] = tmpRow
  908. }
  909. tableDataList := make([][]LuckySheetDataValue, 0)
  910. var i int64
  911. // 单元格宽度
  912. configColumnConf := item.Config.Columnlen
  913. rowWidthMap := make(map[int]float64)
  914. rowWidthList := make([]float64, 0) //
  915. // 单元格高度
  916. configRowConf := item.Config.Rowlen
  917. rowHeightList := make([]float64, 0) //
  918. for i = 0; i <= maxRow; i++ {
  919. //列
  920. tmpTableColDataList := make([]LuckySheetDataValue, 0)
  921. // 每个单元格的高度
  922. tmpHeight, ok := configRowConf[fmt.Sprint(i)]
  923. if !ok {
  924. tmpHeight = 0
  925. }
  926. rowHeightList = append(rowHeightList, tmpHeight)
  927. tmpRowData, ok := tableDataMap[i]
  928. // 如果没有该行数据,那么就默认添加空行数据处理
  929. if !ok {
  930. tmpRowData = make(map[int64]LuckySheetDataValue)
  931. }
  932. var j int64
  933. for j = 0; j <= maxCol; j++ {
  934. tmpTableColData, ok := tmpRowData[j]
  935. if !ok {
  936. tmpTableColData = LuckySheetDataValue{}
  937. }
  938. tmpTableColDataList = append(tmpTableColDataList, tmpTableColData)
  939. // 每个单元格的宽度
  940. tmpWidth, ok := configColumnConf[fmt.Sprint(j)]
  941. if !ok {
  942. tmpWidth = 0
  943. }
  944. rowIndex := len(tmpTableColDataList) - 1
  945. if _, ok2 := rowWidthMap[rowIndex]; !ok2 {
  946. rowWidthList = append(rowWidthList, tmpWidth)
  947. }
  948. rowWidthMap[rowIndex] = tmpWidth
  949. }
  950. tableDataList = append(tableDataList, tmpTableColDataList)
  951. }
  952. //总共多少行
  953. lenRow := len(tableDataList)
  954. //移除上下空行
  955. deleteRowIndexList := make([]int, 0)
  956. if lenRow > 0 {
  957. var flag = false
  958. // 移除上方空列
  959. for rowIndex := 0; rowIndex < lenRow; rowIndex++ {
  960. isDelete := true
  961. for _, v := range tableDataList[rowIndex] {
  962. if v.Monitor != `` || (v.MergeCell.Row != rowIndex && v.MergeCell.Row != 0) {
  963. isDelete = false
  964. flag = true
  965. break
  966. }
  967. }
  968. if flag {
  969. break
  970. }
  971. if isDelete {
  972. selfTableData.RemoveTopRow++
  973. deleteRowIndexList = append(deleteRowIndexList, rowIndex)
  974. }
  975. }
  976. // 移除下方空行
  977. flag = false
  978. //尾部
  979. deleteBottomRowIndexList := make([]int, 0)
  980. for rowIndex := lenRow - 1; rowIndex >= 0; rowIndex-- {
  981. isDelete := true
  982. for _, v := range tableDataList[rowIndex] {
  983. if v.Monitor != `` {
  984. isDelete = false
  985. flag = true
  986. break
  987. }
  988. }
  989. if flag {
  990. break
  991. }
  992. if isDelete {
  993. deleteBottomRowIndexList = append(deleteBottomRowIndexList, rowIndex)
  994. selfTableData.RemoveBottomRow++
  995. }
  996. }
  997. if len(deleteBottomRowIndexList) > 0 {
  998. deleteRowIndexList = append(deleteRowIndexList, utils.RevSlice(deleteBottomRowIndexList)...)
  999. }
  1000. lenDeleteRow := len(deleteRowIndexList)
  1001. if lenDeleteRow > 0 {
  1002. for rowIndex := lenDeleteRow - 1; rowIndex >= 0; rowIndex-- {
  1003. //表格数据
  1004. tableDataList = append(tableDataList[:deleteRowIndexList[rowIndex]], tableDataList[deleteRowIndexList[rowIndex]+1:]...) // 删除开头N个元素
  1005. //表格高度
  1006. rowHeightList = append(rowHeightList[:deleteRowIndexList[rowIndex]], rowHeightList[deleteRowIndexList[rowIndex]+1:]...) // 删除开头N个元素
  1007. }
  1008. }
  1009. }
  1010. //移除左右空列
  1011. deleteColumnIndexList := make([]int, 0)
  1012. if len(tableDataList) > 0 {
  1013. var flag = false
  1014. lenColumn := len(tableDataList[0])
  1015. // 移除左边空列
  1016. for columnIndex := 0; columnIndex < lenColumn; columnIndex++ {
  1017. isDelete := true
  1018. for _, v := range tableDataList {
  1019. //如果一列都没有,说明是上面几行是空行,没有数据
  1020. if len(v) <= 0 {
  1021. continue
  1022. }
  1023. if v[columnIndex].Monitor != `` || (v[columnIndex].MergeCell.Column != columnIndex && v[columnIndex].MergeCell.Column != 0) {
  1024. isDelete = false
  1025. flag = true
  1026. break
  1027. }
  1028. }
  1029. if flag {
  1030. break
  1031. }
  1032. if isDelete {
  1033. selfTableData.RemoveLeftColumn++
  1034. deleteColumnIndexList = append(deleteColumnIndexList, columnIndex)
  1035. }
  1036. }
  1037. // 移除右方空列
  1038. flag = false
  1039. //右边
  1040. deleteTailColumnIndexList := make([]int, 0)
  1041. for columnIndex := lenColumn - 1; columnIndex >= 0; columnIndex-- {
  1042. isDelete := true
  1043. for _, v := range tableDataList {
  1044. //如果一列都没有,说明是上面几行是空行,没有数据
  1045. if len(v) <= 0 {
  1046. continue
  1047. }
  1048. if v[columnIndex].Monitor != `` || (v[columnIndex].MergeCell.Column != columnIndex && v[columnIndex].MergeCell.Column != 0) {
  1049. isDelete = false
  1050. flag = true
  1051. break
  1052. }
  1053. }
  1054. if flag {
  1055. break
  1056. }
  1057. if isDelete {
  1058. deleteTailColumnIndexList = append(deleteTailColumnIndexList, columnIndex)
  1059. selfTableData.RemoveRightColumn++
  1060. }
  1061. }
  1062. if len(deleteTailColumnIndexList) > 0 {
  1063. deleteColumnIndexList = append(deleteColumnIndexList, utils.RevSlice(deleteTailColumnIndexList)...)
  1064. }
  1065. lenDeleteColumn := len(deleteColumnIndexList)
  1066. if lenDeleteColumn > 0 {
  1067. for columnIndex := lenDeleteColumn - 1; columnIndex >= 0; columnIndex-- {
  1068. //表格数据
  1069. for k, v := range tableDataList {
  1070. tableDataList[k] = append(v[:deleteColumnIndexList[columnIndex]], v[deleteColumnIndexList[columnIndex]+1:]...) // 删除开头N个元素
  1071. }
  1072. //表格宽度
  1073. rowWidthList = append(rowWidthList[:deleteColumnIndexList[columnIndex]], rowWidthList[deleteColumnIndexList[columnIndex]+1:]...) // 删除开头N个元素
  1074. }
  1075. }
  1076. }
  1077. //处理合并单元格
  1078. tableDataMergeList := make([]TableDataMerge, 0)
  1079. for _, v := range item.Config.Merge {
  1080. indexRow := v.Row - selfTableData.RemoveTopRow
  1081. indexColumn := v.Column - selfTableData.RemoveLeftColumn
  1082. tableDataMerge := TableDataMerge{
  1083. StartRowIndex: indexRow,
  1084. StartColumnIndex: indexColumn,
  1085. MergeRowNum: v.Rs - 1,
  1086. MergeColumnNum: v.Cs - 1,
  1087. }
  1088. tableDataMergeList = append(tableDataMergeList, tableDataMerge)
  1089. }
  1090. // 表格数据
  1091. selfTableData.TableDataList = tableDataList
  1092. selfTableData.RowWidthList = rowWidthList
  1093. selfTableData.RowHeightList = rowHeightList
  1094. selfTableData.MergeList = tableDataMergeList
  1095. return
  1096. }
  1097. func (item *LuckySheetData) ToExcel2() (downloadFilePath string, err error) {
  1098. tableData, err := item.GetTableDataByLuckySheetDataStr(true)
  1099. downloadFilePath, err = getDownloadPath()
  1100. if err != nil {
  1101. return
  1102. }
  1103. f := excelize.NewFile()
  1104. // Create a new sheet.
  1105. sheetName := `Sheet1`
  1106. sheetIndex, err := f.NewSheet(sheetName)
  1107. if err != nil {
  1108. return
  1109. }
  1110. //设置列宽度
  1111. for k, v := range tableData.RowWidthList {
  1112. colName, tmpErr := excelize.ColumnNumberToName(k + 1)
  1113. if tmpErr != nil {
  1114. err = errors.New("获取单元格列名失败,ERR:" + tmpErr.Error())
  1115. err = tmpErr
  1116. return
  1117. }
  1118. err = f.SetColWidth(sheetName, colName, colName, v/10)
  1119. if err != nil {
  1120. err = errors.New("设置列宽度,ERR:" + tmpErr.Error())
  1121. return
  1122. }
  1123. }
  1124. // 写入数据
  1125. for index, v := range tableData.TableDataList {
  1126. //设置单元格高度
  1127. if tableData.RowHeightList[index] > 0 {
  1128. tmpErr := f.SetRowHeight(sheetName, index+1, tableData.RowHeightList[index]/2)
  1129. if tmpErr != nil {
  1130. err = errors.New("设置单元格高度失败,ERR:" + tmpErr.Error())
  1131. return
  1132. }
  1133. }
  1134. for colunmIndex, cellInfo := range v {
  1135. //f.NewStyle
  1136. defaultFill := excelize.Fill{
  1137. //Type: "solid",
  1138. Pattern: 1,
  1139. //Color: []string{cellInfo.Background},
  1140. Shading: 0,
  1141. }
  1142. if cellInfo.Background != `` {
  1143. defaultFill.Type = "solid"
  1144. defaultFill.Color = []string{cellInfo.Background}
  1145. }
  1146. cellStyle := &excelize.Style{
  1147. Border: []excelize.Border{
  1148. {Type: "left", Color: "000000", Style: 1},
  1149. {Type: "top", Color: "000000", Style: 1},
  1150. {Type: "bottom", Color: "000000", Style: 1},
  1151. {Type: "right", Color: "000000", Style: 1},
  1152. //{Type: "diagonalDown", Color: "A020F0", Style: 7},
  1153. //{Type: "diagonalUp", Color: "A020F0", Style: 8},
  1154. },
  1155. Fill: defaultFill,
  1156. Font: getExcelizeFontConf(cellInfo),
  1157. Alignment: getExcelizeAlignmentConf(cellInfo),
  1158. //Protection: nil,
  1159. //NumFmt: 0,
  1160. //DecimalPlaces: 0,
  1161. //CustomNumFmt: nil,
  1162. //Lang: "",
  1163. //NegRed: false,
  1164. }
  1165. cellStyleId, tmpErr := f.NewStyle(cellStyle)
  1166. if tmpErr != nil {
  1167. err = errors.New("new Style 失败,ERR:" + tmpErr.Error())
  1168. return
  1169. }
  1170. columnName, tmpErr := excelize.ColumnNumberToName(colunmIndex + 1)
  1171. if tmpErr != nil {
  1172. err = errors.New("获取单元格列名失败,ERR:" + tmpErr.Error())
  1173. return
  1174. }
  1175. cellName := columnName + strconv.Itoa(index+1)
  1176. tmpErr = f.SetCellStyle(sheetName, cellName, cellName, cellStyleId)
  1177. if tmpErr != nil {
  1178. err = errors.New("设置style失败,ERR:" + tmpErr.Error())
  1179. return
  1180. }
  1181. valueStr := cellInfo.Monitor
  1182. if valueStr == `` {
  1183. //valueStr = fmt.Sprint(cellInfo.Value)
  1184. if valueStr == `` && cellInfo.CellType.S != nil {
  1185. //不是设置在单元格上面,而是设置在文本上
  1186. for _, cellS := range cellInfo.CellType.S {
  1187. valueStr += fmt.Sprint(cellS.Value)
  1188. }
  1189. }
  1190. }
  1191. tmpErr = f.SetCellStr(sheetName, cellName, valueStr)
  1192. if tmpErr != nil {
  1193. err = errors.New("设置单元格数据失败,ERR:" + tmpErr.Error())
  1194. return
  1195. }
  1196. }
  1197. }
  1198. for _, v := range tableData.MergeList {
  1199. //开始列
  1200. startColumnName, tmpErr := excelize.ColumnNumberToName(v.StartColumnIndex + 1)
  1201. if tmpErr != nil {
  1202. err = tmpErr
  1203. return
  1204. }
  1205. startCellName := startColumnName + strconv.Itoa(v.StartRowIndex+1)
  1206. //结束列
  1207. endColumnName, tmpErr := excelize.ColumnNumberToName(v.StartColumnIndex + v.MergeColumnNum + 1)
  1208. if tmpErr != nil {
  1209. err = tmpErr
  1210. return
  1211. }
  1212. endCellName := endColumnName + strconv.Itoa(v.StartRowIndex+v.MergeRowNum+1)
  1213. err = f.MergeCell(sheetName, startCellName, endCellName)
  1214. if err != nil {
  1215. return
  1216. }
  1217. }
  1218. // Set active sheet of the workbook.
  1219. f.SetActiveSheet(sheetIndex)
  1220. // Save spreadsheet by the given path.
  1221. err = f.SaveAs(downloadFilePath)
  1222. return
  1223. }
  1224. // getExcelizeFontConf 获取表格字体配置
  1225. func getExcelizeFontConf(cellInfo LuckySheetDataValue) *excelize.Font {
  1226. fontSize := 10
  1227. familyName := ``
  1228. //single 单线 、double 双线
  1229. underlineStyle := ``
  1230. var isBold, isItalic, isUnderline bool
  1231. // 字体
  1232. {
  1233. if cellInfo.Bold == 1 {
  1234. isBold = true
  1235. }
  1236. if cellInfo.Italic == 1 {
  1237. isItalic = true
  1238. }
  1239. if cellInfo.CancelLine == 1 {
  1240. isUnderline = true
  1241. }
  1242. //if cellInfo.Fontsize != `` {
  1243. // convSize, _ := strconv.Atoi(cellInfo.Fontsize)
  1244. // if convSize > 0 {
  1245. // fontSize = convSize
  1246. // }
  1247. //}
  1248. if cellInfo.Fontsize > 0 {
  1249. fontSize = cellInfo.Fontsize
  1250. }
  1251. tmpFamilyName, familyNameOk := LuckyFontFamilyMap[cellInfo.FontFamily]
  1252. if !familyNameOk {
  1253. tmpFamilyName = "宋体"
  1254. }
  1255. familyName = tmpFamilyName
  1256. }
  1257. if isUnderline {
  1258. underlineStyle = "single"
  1259. }
  1260. //VertAlign取值:
  1261. //BASELINE、superscript、subscript
  1262. return &excelize.Font{
  1263. Bold: isBold,
  1264. Italic: isItalic,
  1265. Underline: underlineStyle,
  1266. Family: familyName,
  1267. Size: float64(fontSize),
  1268. Strike: isUnderline,
  1269. Color: cellInfo.FontColor,
  1270. VertAlign: "",
  1271. }
  1272. }
  1273. // getExcelizeAlignmentConf 获取表格单元格排列配置
  1274. func getExcelizeAlignmentConf(cellInfo LuckySheetDataValue) *excelize.Alignment {
  1275. //自动换行
  1276. isWrapText := false
  1277. if cellInfo.TextBeak == 2 {
  1278. isWrapText = true
  1279. }
  1280. rotateText := 0
  1281. //if cellInfo.RotateText != `` {
  1282. // convSize, _ := strconv.Atoi(cellInfo.RotateText)
  1283. // if convSize > 0 {
  1284. // rotateText = convSize
  1285. // }
  1286. //}
  1287. return &excelize.Alignment{
  1288. Horizontal: LuckyHorizontalMap[cellInfo.HorizontalType],
  1289. //Indent: 0,
  1290. //JustifyLastLine: false,
  1291. //ReadingOrder: 0,
  1292. //RelativeIndent: 0,
  1293. //ShrinkToFit: false,
  1294. TextRotation: rotateText,
  1295. Vertical: LuckyVerticalMap[cellInfo.VerticalType],
  1296. WrapText: isWrapText,
  1297. }
  1298. }
  1299. // getColor 获取hex颜色
  1300. func getColor(bgStr string) string {
  1301. if strings.Contains(bgStr, "(") {
  1302. arr := strings.Split(bgStr, ",")
  1303. if len(arr) != 3 {
  1304. return bgStr
  1305. }
  1306. // 第一位
  1307. tmpFirstArr := strings.Split(arr[0], "(")
  1308. arr[0] = tmpFirstArr[len(tmpFirstArr)-1]
  1309. // 最后一位
  1310. tmpLastArr := strings.Split(arr[2], ")")
  1311. arr[2] = tmpLastArr[0]
  1312. rgbArr := make([]int64, 0)
  1313. for _, v := range arr {
  1314. tmpInt, err := strconv.Atoi(utils.TrimStr(v))
  1315. if err != nil {
  1316. return bgStr
  1317. }
  1318. rgbArr = append(rgbArr, int64(tmpInt))
  1319. }
  1320. rgb := RGB{
  1321. rgbArr[0],
  1322. rgbArr[1],
  1323. rgbArr[2],
  1324. }
  1325. bgStr = "" + rgb.Rgb2Hex().Str
  1326. }
  1327. return bgStr
  1328. }
  1329. // GetTableDataByCustomData 通过自定义表格数据获取表格数据
  1330. func GetTableDataByCustomData(excelType int, data request.TableDataReq) (selfTableData TableData, err error) {
  1331. tableDataList := make([][]LuckySheetDataValue, 0)
  1332. mergeList := make([]TableDataMerge, 0)
  1333. // 指标数
  1334. lenEdb := len(data.Data)
  1335. if lenEdb <= 0 {
  1336. return
  1337. }
  1338. // 日期数
  1339. lenCol := len(data.Data[0].Data)
  1340. if lenCol <= 0 {
  1341. return
  1342. }
  1343. // 指标列:1;指标行:2
  1344. if excelType == 1 {
  1345. mergeList = append(mergeList, TableDataMerge{
  1346. StartRowIndex: 0,
  1347. StartColumnIndex: 0,
  1348. MergeRowNum: 1,
  1349. MergeColumnNum: 0,
  1350. })
  1351. // 第一行
  1352. {
  1353. firstCol := make([]LuckySheetDataValue, 0)
  1354. firstCol = append(firstCol, LuckySheetDataValue{
  1355. Value: "日期",
  1356. Monitor: "日期",
  1357. MergeCell: LuckySheetDataConfigMerge{
  1358. Row: 0, //行数
  1359. Column: 0, //列数
  1360. Rs: 2, //合并的行数
  1361. Cs: 1, //合并的列数
  1362. },
  1363. })
  1364. for _, v := range data.Data {
  1365. edbName := v.EdbName
  1366. if v.EdbAliasName != `` {
  1367. edbName = v.EdbAliasName
  1368. }
  1369. firstCol = append(firstCol, LuckySheetDataValue{
  1370. Value: edbName,
  1371. Monitor: edbName,
  1372. MergeCell: LuckySheetDataConfigMerge{},
  1373. })
  1374. }
  1375. tableDataList = append(tableDataList, firstCol)
  1376. }
  1377. // 第二行
  1378. {
  1379. secondCol := make([]LuckySheetDataValue, 0)
  1380. secondCol = append(secondCol, LuckySheetDataValue{})
  1381. for _, v := range data.Data {
  1382. name := v.Unit + " / " + v.Frequency
  1383. secondCol = append(secondCol, LuckySheetDataValue{
  1384. Value: name,
  1385. Monitor: name,
  1386. MergeCell: LuckySheetDataConfigMerge{},
  1387. })
  1388. }
  1389. tableDataList = append(tableDataList, secondCol)
  1390. }
  1391. // 开始数据了
  1392. {
  1393. for i := 0; i < lenCol; i++ {
  1394. dataCol := make([]LuckySheetDataValue, 0)
  1395. // 日期
  1396. dataCol = append(dataCol, LuckySheetDataValue{
  1397. Value: data.Data[0].Data[i].DataTime,
  1398. Monitor: data.Data[0].Data[i].DataTime,
  1399. MergeCell: LuckySheetDataConfigMerge{},
  1400. })
  1401. // 数据值
  1402. for _, v := range data.Data {
  1403. dataCol = append(dataCol, LuckySheetDataValue{
  1404. Value: v.Data[i].Value,
  1405. Monitor: v.Data[i].ShowValue,
  1406. MergeCell: LuckySheetDataConfigMerge{},
  1407. })
  1408. }
  1409. tableDataList = append(tableDataList, dataCol)
  1410. }
  1411. }
  1412. // 开始文本行了
  1413. {
  1414. for _, textColList := range data.TextRowData {
  1415. dataCol := make([]LuckySheetDataValue, 0)
  1416. for _, v := range textColList {
  1417. dataCol = append(dataCol, LuckySheetDataValue{
  1418. Value: v.Value,
  1419. Monitor: v.ShowValue,
  1420. MergeCell: LuckySheetDataConfigMerge{},
  1421. })
  1422. }
  1423. tableDataList = append(tableDataList, dataCol)
  1424. }
  1425. }
  1426. } else {
  1427. // 指标行
  1428. mergeList = append(mergeList, TableDataMerge{
  1429. StartRowIndex: 0,
  1430. StartColumnIndex: 0,
  1431. MergeRowNum: 0,
  1432. MergeColumnNum: 1,
  1433. })
  1434. // 第一行
  1435. {
  1436. firstCol := make([]LuckySheetDataValue, 0)
  1437. firstCol = append(firstCol, LuckySheetDataValue{
  1438. Value: "日期",
  1439. Monitor: "日期",
  1440. MergeCell: LuckySheetDataConfigMerge{
  1441. Row: 0, //行数
  1442. Column: 0, //列数
  1443. Rs: 1, //合并的行数
  1444. Cs: 2, //合并的列数
  1445. },
  1446. })
  1447. firstCol = append(firstCol, LuckySheetDataValue{})
  1448. // 日期列
  1449. for _, v := range data.Data[0].Data {
  1450. firstCol = append(firstCol, LuckySheetDataValue{
  1451. Value: v.DataTime,
  1452. Monitor: v.DataTime,
  1453. MergeCell: LuckySheetDataConfigMerge{},
  1454. })
  1455. }
  1456. // 文本列
  1457. for _, textColList := range data.TextRowData {
  1458. firstCol = append(firstCol, LuckySheetDataValue{
  1459. Value: textColList[0].Value,
  1460. Monitor: textColList[0].ShowValue,
  1461. MergeCell: LuckySheetDataConfigMerge{},
  1462. })
  1463. }
  1464. tableDataList = append(tableDataList, firstCol)
  1465. }
  1466. // 日期列+文本列+两列表头(日期这个文案表头)
  1467. //colLen := lenCol+2+len(data.TextRowData)
  1468. for i := 0; i < lenEdb; i++ {
  1469. dataCol := make([]LuckySheetDataValue, 0)
  1470. // 指标信息
  1471. tmpEdbInfo := data.Data[i]
  1472. // 指标名称
  1473. {
  1474. edbName := tmpEdbInfo.EdbName
  1475. if tmpEdbInfo.EdbAliasName != `` {
  1476. edbName = tmpEdbInfo.EdbAliasName
  1477. }
  1478. dataCol = append(dataCol, LuckySheetDataValue{
  1479. Value: edbName,
  1480. Monitor: edbName,
  1481. MergeCell: LuckySheetDataConfigMerge{},
  1482. })
  1483. }
  1484. // 指标单位、频度
  1485. {
  1486. name := tmpEdbInfo.Unit + " / " + tmpEdbInfo.Frequency
  1487. dataCol = append(dataCol, LuckySheetDataValue{
  1488. Value: name,
  1489. Monitor: name,
  1490. MergeCell: LuckySheetDataConfigMerge{},
  1491. })
  1492. }
  1493. // 指标数据列
  1494. for _, tmpData := range tmpEdbInfo.Data {
  1495. dataCol = append(dataCol, LuckySheetDataValue{
  1496. Value: tmpData.Value,
  1497. Monitor: tmpData.ShowValue,
  1498. MergeCell: LuckySheetDataConfigMerge{},
  1499. })
  1500. }
  1501. // 文本列
  1502. for _, textColList := range data.TextRowData {
  1503. dataCol = append(dataCol, LuckySheetDataValue{
  1504. Value: textColList[i+1].Value,
  1505. Monitor: textColList[i+1].ShowValue,
  1506. MergeCell: LuckySheetDataConfigMerge{},
  1507. })
  1508. }
  1509. tableDataList = append(tableDataList, dataCol)
  1510. }
  1511. }
  1512. selfTableData.MergeList = mergeList
  1513. selfTableData.TableDataList = tableDataList
  1514. return
  1515. }
  1516. // GetTableDataByMixedTableData 通过混合表格数据获取表格数据
  1517. func GetTableDataByMixedTableData(config [][]request.MixedTableCellDataReq) (selfTableData TableData, err error) {
  1518. tableDataList := make([][]LuckySheetDataValue, 0)
  1519. mergeList := make([]TableDataMerge, 0)
  1520. // 开始文本行了
  1521. {
  1522. for _, row := range config {
  1523. dataCol := make([]LuckySheetDataValue, 0)
  1524. for _, cell := range row {
  1525. dataCol = append(dataCol, LuckySheetDataValue{
  1526. Value: cell.Value,
  1527. Monitor: cell.ShowValue,
  1528. MergeCell: LuckySheetDataConfigMerge{},
  1529. })
  1530. }
  1531. tableDataList = append(tableDataList, dataCol)
  1532. }
  1533. }
  1534. selfTableData.MergeList = mergeList
  1535. selfTableData.TableDataList = tableDataList
  1536. return
  1537. }