From ac2f359d397c0ec5eb87c9cbc415584d1d88439f Mon Sep 17 00:00:00 2001 From: 快乐的昕的电脑 <快乐的昕的电脑@DESKTOP-C2BQPQU> Date: 星期二, 16 九月 2025 08:56:53 +0800 Subject: [PATCH] 采购退料:列表选择、列表明细更改为存储过程,添加组织隔离,添加库位列表,添加隐藏完结单号功能 --- Controllers/Warehouse/MesCgthSqController.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Controllers/Warehouse/MesCgthSqController.cs b/Controllers/Warehouse/MesCgthSqController.cs index cc451a7..f27b6f4 100644 --- a/Controllers/Warehouse/MesCgthSqController.cs +++ b/Controllers/Warehouse/MesCgthSqController.cs @@ -10,7 +10,7 @@ [ApiController] [Route("api/[controller]")] -public class MesCgthSqController : ControllerBase +public class MesCgthSqController : BaseController { private readonly MesCgthSqManager m = new(); private readonly MesPrintMangeer _mCf = new(); @@ -26,7 +26,7 @@ try { dynamic resultInfos = new ExpandoObject(); - resultInfos.tbBillList = m.GetMesCgthSq(); + resultInfos.tbBillList = m.GetMesCgthSq(RequestInfo); return new ResponseResult { status = 0, @@ -50,7 +50,7 @@ try { dynamic resultInfos = new ExpandoObject(); - resultInfos.tbBillList = m.GetSumItem(query); + resultInfos.tbBillList = m.GetSumItem(query, RequestInfo); return new ResponseResult { status = 0, -- Gitblit v1.9.3