From 291558a5ddd495195047a23a27b44ce5b0bbca5a Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期五, 15 十一月 2024 11:06:00 +0800
Subject: [PATCH] 1.T8入库记录(查询、删除) 2.T+入库记录(查询、删除) 3.生产入库记录查询增加部门查询条件 4.看板视图根据配置文件区分T8还是T+

---
 VueWebCoreApi/DLL/BLL/ReportManagerBLL.cs |   43 ++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 40 insertions(+), 3 deletions(-)

diff --git a/VueWebCoreApi/DLL/BLL/ReportManagerBLL.cs b/VueWebCoreApi/DLL/BLL/ReportManagerBLL.cs
index 1717cd8..8034461 100644
--- a/VueWebCoreApi/DLL/BLL/ReportManagerBLL.cs
+++ b/VueWebCoreApi/DLL/BLL/ReportManagerBLL.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;
@@ -138,10 +139,24 @@
         #endregion
 
 
-        #region[鍏ュ簱璁板綍]
-        public static ToMessage StorageRecordSearch(string hbillno, string sono, string mono, string wocode, string partcode,string partname, string stockcode, string respondopendate, string respondclosedate, int startNum, int endNum, string prop, string order)
+        #region[T8鍏ュ簱璁板綍琛ㄥご]
+        public static ToMessage StorageRecordMainSearch(string hbillno, string username, string hbdateopendate, string hbdateclosedate, string userdateopendate, string userdateclosedate, int startNum, int endNum, string prop, string order)
         {
-            return ReportManagerDAL.StorageRecordSearch(hbillno,sono,mono,wocode,partcode, partname,stockcode, respondopendate,respondclosedate,startNum,endNum,prop,order);
+            return ReportManagerDAL.StorageRecordMainSearch(hbillno, username, hbdateopendate, hbdateclosedate, userdateopendate, userdateclosedate, startNum, endNum, prop, order);
+        }
+        #endregion
+
+        #region[T8鍏ュ簱璁板綍琛ㄤ綋]
+        public static ToMessage StorageRecordSubSearch(string hbillno)
+        {
+            return ReportManagerDAL.StorageRecordSubSearch(hbillno);
+        }
+        #endregion
+
+        #region[T8鍏ュ簱璁板綍鍒犻櫎]
+        public static ToMessage StorageRecordDelete(DataTable dt, User us)
+        {
+            return ReportManagerDAL.StorageRecordDelete(dt, us);
         }
         #endregion
 
@@ -158,5 +173,27 @@
             return ReportManagerDAL.StorageRecordExcelSearch(hbillno, sono, mono, wocode, partcode, partname, stockcode, respondopendate, respondclosedate);
         }
         #endregion
+
+
+        #region[T+鍏ュ簱璁板綍琛ㄥご]
+        public static ToMessage InStorageRecordMainSearch(string hbillno, string username, string hbdateopendate, string hbdateclosedate, string userdateopendate, string userdateclosedate, int startNum, int endNum, string prop, string order)
+        {
+            return ReportManagerDAL.InStorageRecordMainSearch(hbillno, username, hbdateopendate, hbdateclosedate, userdateopendate, userdateclosedate, startNum, endNum, prop, order);
+        }
+        #endregion
+
+        #region[T+鍏ュ簱璁板綍琛ㄤ綋]
+        public static ToMessage InStorageRecordSubSearch(string hbillno)
+        {
+            return ReportManagerDAL.InStorageRecordSubSearch(hbillno);
+        }
+        #endregion
+
+        #region[T+鍏ュ簱璁板綍鍒犻櫎]
+        public static ToMessage DeleteInStorageRecord(DataTable dt, User us)
+        {
+            return ReportManagerDAL.DeleteInStorageRecord(dt, us);
+        }
+        #endregion
     }
 }

--
Gitblit v1.9.3