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 |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/VueWebCoreApi/DLL/BLL/ReportManagerBLL.cs b/VueWebCoreApi/DLL/BLL/ReportManagerBLL.cs
index c48b6ee..8034461 100644
--- a/VueWebCoreApi/DLL/BLL/ReportManagerBLL.cs
+++ b/VueWebCoreApi/DLL/BLL/ReportManagerBLL.cs
@@ -1,8 +1,11 @@
 锘縰sing System;
 using System.Collections.Generic;
+using System.Data;
 using System.Linq;
 using System.Threading.Tasks;
 using VueWebCoreApi.DLL.DAL;
+using VueWebCoreApi.Models;
+using VueWebCoreApi.Models.InventoryModel;
 using VueWebCoreApi.Tools;
 
 namespace VueWebCoreApi.DLL.BLL
@@ -134,5 +137,63 @@
             return ReportManagerDAL.AnDonReportSumExcelSearch(wkshopcode, eqpcode, calltypecode, callopendate, callclosedate, respondopendate, respondclosedate);
         }
         #endregion
+
+
+        #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.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
+
+        #region[鍏ュ簱璁板綍鍒犻櫎]
+        public static ToMessage DeleteStorageRecord(List<StorageRecord> json, User us)
+        {
+            return ReportManagerDAL.DeleteStorageRecord(json,us);
+        }
+        #endregion
+
+        #region[鍏ュ簱璁板綍瀵煎嚭]
+        public static ToMessage StorageRecordExcelSearch(string hbillno, string sono, string mono, string wocode, string partcode,string partname, string stockcode, string respondopendate, string respondclosedate)
+        {
+            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