From be2a307d9cfaacdbeb169a3ad61637e23a96bebe Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期四, 31 八月 2023 17:32:46 +0800
Subject: [PATCH] 1.同步ERP存货档案、仓库信息 2.存货分类(查询、新增、修改、删除) 3.存货档案(查询、新增、修改)

---
 VueWebCoreApi/DLL/BLL/ProductModelBLL.cs |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/VueWebCoreApi/DLL/BLL/ProductModelBLL.cs b/VueWebCoreApi/DLL/BLL/ProductModelBLL.cs
index 03cbf61..bc48825 100644
--- a/VueWebCoreApi/DLL/BLL/ProductModelBLL.cs
+++ b/VueWebCoreApi/DLL/BLL/ProductModelBLL.cs
@@ -45,5 +45,45 @@
             return ProductModelDAL.DeleteTUnit(data_sources, tunittype, tunitgroupcode, tunitcode, us);
         }
         #endregion
+
+
+
+        #region[瀛樿揣鍒嗙被淇℃伅]
+        public static ToMessage TMaterielClassTree()
+        {
+            return ProductModelDAL.TMaterielClassTree();
+        }
+        #endregion
+
+        #region[瀛樿揣鍒嗙被鏂板/缂栬緫鎻愪氦]
+        public static ToMessage TMaterielClassTreeAddUpdate(string data_sources, string inventoryclasscode, string inventoryclassname, string parentcode, string OperType, User us)
+        {
+            return ProductModelDAL.TMaterielClassTreeAddUpdate(data_sources,inventoryclasscode, inventoryclassname, parentcode, OperType,us);
+        }
+        #endregion
+
+        #region[瀛樿揣鍒嗙被鍒犻櫎]
+        public static ToMessage TMaterielClassTreeDelete(string inventoryclasscode, User us)
+        {
+            return ProductModelDAL.TMaterielClassTreeDelete(inventoryclasscode, us);
+        }
+        #endregion
+
+
+        #region[瀛樿揣淇℃伅鍒楄〃]
+        public static ToMessage TMaterielData(string inventoryclasscode, string partcode, string partname, string partspec, int startNum, int endNum, string prop, string order)
+        {
+            return ProductModelDAL.TMaterielData(inventoryclasscode, partcode, partname, partspec, startNum, endNum, prop, order);
+        }
+        #endregion
+
+
+        #region[瀛樿揣淇℃伅鏂板/缂栬緫淇濆瓨]
+        public static ToMessage TMaterielAddUpdate(string data_sources, string partcode, string partname, string partspec, string inventoryclasscode, string unittypcode, string unitcode, string unitsubcode, string idSubUnitByReport, string idUnitByStock, string idUnitByPurchase, string idUnitBySale, string idunitbymanufacture, string isPurchase, string isSale, string isMadeSelf, string isMaterial, string isMadeRequest, string idwarehouse, string status, string OperType, User us)
+        {
+            return ProductModelDAL.TMaterielAddUpdate(data_sources, partcode, partname, partspec, inventoryclasscode, unittypcode, unitcode, unitsubcode, idSubUnitByReport,
+                idUnitByStock, idUnitByPurchase, idUnitBySale, idunitbymanufacture, isPurchase, isSale, isMadeSelf, isMaterial, isMadeRequest, idwarehouse, status, OperType, us);
+        }
+        #endregion
     }
 }

--
Gitblit v1.9.3