lucky_sheet.go 52 KB

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