Browse Source

fix 名称

sun-pc-linux 3 months ago
parent
commit
e544f6d72e
2 changed files with 3 additions and 3 deletions
  1. 1 1
      boxcost/api/plan-process-track-excel.go
  2. 2 2
      boxcost/api/summary-sample-excel.go

+ 1 - 1
boxcost/api/plan-process-track-excel.go

@@ -267,7 +267,7 @@ func NewPlanProcessTrackExcel(f *excelize.File) *PlanProcessTrackExcel {
 	})
 
 	b := &PlanProcessTrackExcel{
-		Title:            "2024月饼礼盒加工追踪表",
+		Title:            "追踪表",
 		Row:              0,
 		SheetName:        "Sheet1",
 		Excel:            f,

+ 2 - 2
boxcost/api/summary-sample-excel.go

@@ -36,7 +36,7 @@ func (b *SummarySampleExcel) drawTitle() error {
 		return err
 	}
 	b.Excel.SetRowHeight(b.SheetName, b.Row, 23)
-	b.Excel.SetCellValue(b.SheetName, startCell, "追踪表")
+	b.Excel.SetCellValue(b.SheetName, startCell, "汇总简表")
 	return nil
 }
 
@@ -386,7 +386,7 @@ func (b *SummarySampleExcel) drawSupplierContent() error {
 		return err
 	}
 	b.Excel.SetRowHeight(b.SheetName, 1, 32)
-	b.Excel.SetCellValue(b.SheetName, "A1", fmt.Sprintf("【%s】-追踪表", supplier))
+	b.Excel.SetCellValue(b.SheetName, "A1", fmt.Sprintf("【%s】-汇总简表", supplier))
 
 	return nil
 }