From 33736f197bd734a2b2e70395d6cc3cc674e89bb4 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期一, 17 十一月 2025 09:17:07 +0800
Subject: [PATCH] 1.生产入库信息查询接口增加是否源单查询字段 2.报表增加MES入库记录删除接口 3.增加存货档案关联工艺查询多存货 4.增加存货档案关联工艺提交多存货 4.通用基础资料中:仓库基础资料接口增加noid(erp中的仓库id)

---
 VueWebCoreApi/Controllers/WorkOrderController.cs |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/VueWebCoreApi/Controllers/WorkOrderController.cs b/VueWebCoreApi/Controllers/WorkOrderController.cs
index bc32548..da766e5 100644
--- a/VueWebCoreApi/Controllers/WorkOrderController.cs
+++ b/VueWebCoreApi/Controllers/WorkOrderController.cs
@@ -890,6 +890,7 @@
         /// <summary>
         /// 鐢熶骇鍏ュ簱淇℃伅鏌ヨ
         /// </summary>
+        /// <param name="issouceorder">鏄惁婧愬崟(Y/N)</param>
         /// <param name="deptno">閮ㄩ棬缂栫爜(T8浣跨敤)</param>
         /// <param name="saleordercode">閿�鍞崟鍙�</param>
         /// <param name="wkshopcode">杞﹂棿缂栫爜</param>
@@ -901,9 +902,9 @@
         /// <returns></returns>
         [Route(template: "ProductInHouseOrderSearch")]
         [HttpGet]
-        public JsonResult ProductInHouseOrderSearch(string deptno, string saleordercode, string wkshopcode, string erpordercode = null, string mesordercode = null, string partcode = null, string partname = null, string partspec = null)
+        public JsonResult ProductInHouseOrderSearch(string issouceorder, string deptno, string saleordercode, string wkshopcode, string erpordercode = null, string mesordercode = null, string partcode = null, string partname = null, string partspec = null)
         {
-            mes = WorkOrderBLL.ProductInHouseOrderSearch(deptno, saleordercode, wkshopcode, erpordercode, mesordercode, partcode, partname, partspec);
+            mes = WorkOrderBLL.ProductInHouseOrderSearch(issouceorder,deptno, saleordercode, wkshopcode, erpordercode, mesordercode, partcode, partname, partspec);
             return Json(mes);
         }
         #endregion

--
Gitblit v1.9.3