From 4000c331acda34ea01c967ba45267c1b6de927e3 Mon Sep 17 00:00:00 2001 From: anerx <512464164@qq.com> Date: Sat, 29 Mar 2025 14:27:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=80=8E=E5=8A=A0=E6=8A=A5=E8=A1=A8=E7=A0=81?= =?UTF-8?q?=E5=9E=9B=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Seyounth.Hyosung.Data/Services/ReportExportService.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Seyounth.Hyosung.Data/Services/ReportExportService.cs b/Seyounth.Hyosung.Data/Services/ReportExportService.cs index 304d203..5d15926 100644 --- a/Seyounth.Hyosung.Data/Services/ReportExportService.cs +++ b/Seyounth.Hyosung.Data/Services/ReportExportService.cs @@ -58,17 +58,18 @@ public class ReportExportService( dt.Columns.Add("生产时间"); dt.Columns.Add("机台"); dt.Columns.Add("班次"); + dt.Columns.Add("码垛时间"); for (int i = 1; i <= yarns.Count; i++) { if (i == 1) { dt.Rows.Add(yarns[i - 1].Lot, tray.DtexFila, yarns.Count, yarns[i - 1].ProduceTime, - yarns[i - 1].Machine, yarns[i - 1].WorkShift); + yarns[i - 1].Machine, yarns[i - 1].WorkShift, yarns[i - 1].StackTime); } else { dt.Rows.Add(yarns[i - 1].Lot, tray.DtexFila, " ", yarns[i - 1].ProduceTime, - yarns[i - 1].Machine, yarns[i - 1].WorkShift); + yarns[i - 1].Machine, yarns[i - 1].WorkShift,yarns[i - 1].StackTime); } }