From 633ae3b99cd192aeacda0229dc685ed9974f3213 Mon Sep 17 00:00:00 2001 From: jh_peng Date: Fri, 25 Oct 2024 15:32:17 +0800 Subject: [PATCH] =?UTF-8?q?V0=20=E7=BB=93=E6=89=B9=E6=8A=A5=E5=91=8A?= =?UTF-8?q?=E5=8E=82=E5=95=86=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- repository/test.data/import.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/repository/test.data/import.go b/repository/test.data/import.go index a1f9e6e..56e910f 100644 --- a/repository/test.data/import.go +++ b/repository/test.data/import.go @@ -11,23 +11,23 @@ func ImportSTS8200(fileText *model.FileText) { func ImportFinalReport(r *request.ImportFinalReport) { if r.Step == "FT" { - if r.Factory == "赛美科" { + if r.Factory == "华润赛美科" { reader2.FTSMCReportReader(r.FilePath) - } else if r.Factory == "长电" { + } else if r.Factory == "江苏长电科技" { reader2.FTSuQianChangDianReportReader(r.FilePath) } else if r.Factory == "气派" { reader2.FTQiPaiReportReader(r.FilePath) - } else if r.Factory == "睿思" { + } else if r.Factory == "深圳睿思" { reader2.FTRuiSiReportReader(r.FilePath) - } else if r.Factory == "芯德" { + } else if r.Factory == "江苏芯德" { reader2.FTXinDeReportReader(r.FilePath) } } else if r.Step == "CP" { - if r.Factory == "赛美科" { + if r.Factory == "华润赛美科" { reader2.CPSMCReportReader(r.FilePath) - } else if r.Factory == "圆方" { + } else if r.Factory == "无锡圆方" { reader2.CPYuanFangReportReader(r.FilePath) - } else if r.Factory == "育诚" { + } else if r.Factory == "深圳育诚" { reader2.CPYuChengReportReader(r.FilePath) } }