|
@@ -31,7 +31,7 @@ func (b *ReportProduceExcel) drawTitle() error {
|
|
|
|
|
|
|
|
|
startCell := fmt.Sprintf("A%d", b.Row)
|
|
|
- endCell := fmt.Sprintf("L%d", b.Row)
|
|
|
+ endCell := fmt.Sprintf("J%d", b.Row)
|
|
|
marginLeft := excelize.PageMarginLeft(0.15)
|
|
|
|
|
|
if b.Content.IsPrint {
|
|
@@ -46,7 +46,7 @@ func (b *ReportProduceExcel) drawTitle() error {
|
|
|
} else {
|
|
|
|
|
|
|
|
|
- endCell = fmt.Sprintf("G%d", b.Row)
|
|
|
+ endCell = fmt.Sprintf("I%d", b.Row)
|
|
|
marginLeft = excelize.PageMarginLeft(0.6)
|
|
|
b.Excel.SetColWidth(b.SheetName, "A", "A", 16)
|
|
|
b.Excel.SetColWidth(b.SheetName, "B", "B", 14)
|
|
@@ -56,7 +56,7 @@ func (b *ReportProduceExcel) drawTitle() error {
|
|
|
if b.Content.IsLam {
|
|
|
|
|
|
|
|
|
- endCell = fmt.Sprintf("I%d", b.Row)
|
|
|
+ endCell = fmt.Sprintf("K%d", b.Row)
|
|
|
marginLeft = excelize.PageMarginLeft(0.3)
|
|
|
b.Excel.SetColWidth(b.SheetName, "A", "A", 16)
|
|
|
b.Excel.SetColWidth(b.SheetName, "B", "C", 14)
|