From 7ff74f599084561338eef1230db5aa45f74565f8 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期一, 15 四月 2024 18:03:33 +0800
Subject: [PATCH] 1.ERP订单关闭增加单据id 2.MES工单关闭增加源单id关联

---
 VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs b/VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs
index 668c121..a90435e 100644
--- a/VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs
+++ b/VueWebCoreApi/DLL/BLL/ExcelCheckBLL.cs
@@ -1,5 +1,6 @@
 锘縰sing System;
 using System.Collections.Generic;
+using System.Data;
 using System.Linq;
 using System.Threading.Tasks;
 using VueWebCoreApi.DLL.DAL;
@@ -11,23 +12,23 @@
     public class ExcelCheckBLL
     {
         #region銆怑xcel瀵煎叆妯℃澘楠岃瘉銆�
-        public static ToMessage ExcelCheck(string fileCode, string savePath)
+        public static ToMessage ExcelCheck(string fileCode, List<DataTable> dataTable)
         {
-            return ExcelCheckDAL.ExcelCheck(fileCode, savePath);
+            return ExcelCheckDAL.ExcelCheck(fileCode, dataTable);
         }
         #endregion
 
         #region[Excel瀵煎叆鏁版嵁楠岃瘉]
-        public static List<ExcelErro> ExcelCheckData(string fileCode, string savePath, out string stuCode, out string message, out int count)
+        public static List<ExcelErro> ExcelCheckData(string fileCode, List<DataTable> dataTable, out string stuCode, out string message, out int count)
         {
-            return ExcelCheckDAL.ExcelCheckData(fileCode, savePath, out stuCode, out message, out count);
+            return ExcelCheckDAL.ExcelCheckData(fileCode, dataTable, out stuCode, out message, out count);
         }
         #endregion
 
         #region[Excel瀵煎叆鏁版嵁]
-        public static ToMessage ExcelImportSubmit(string fileCode, string savePath, string username)
+        public static ToMessage ExcelImportSubmit(string FileCode, List<DataTable> dataTable, User us)
         {
-            return ExcelCheckDAL.ExcelImportSubmit(fileCode, savePath, username);
+            return ExcelCheckDAL.ExcelImportSubmit(FileCode, dataTable, us);
         }
         #endregion
     }

--
Gitblit v1.9.3