From 930f389ddb381f13e0adef7bba580a7ac3c99f2b Mon Sep 17 00:00:00 2001 From: kyy <3283105747@qq.com> Date: 星期五, 26 九月 2025 10:55:20 +0800 Subject: [PATCH] 1、修改送货单 --- Controllers/Warehouse/MesXsckController.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Controllers/Warehouse/MesXsckController.cs b/Controllers/Warehouse/MesXsckController.cs index bd252cf..8ea3e24 100644 --- a/Controllers/Warehouse/MesXsckController.cs +++ b/Controllers/Warehouse/MesXsckController.cs @@ -12,7 +12,7 @@ /// </summary> [Route("api/[controller]")] [ApiController] -public class MesXsckController : ControllerBase +public class MesXsckController : BaseController { private readonly MesXsckManager _manager = new(); @@ -231,7 +231,7 @@ try { dynamic resultInfos = new ExpandoObject(); - resultInfos.tbBillList = _manager.GetFHTZBillNo(query); + resultInfos.tbBillList = _manager.GetFHTZBillNo(query, RequestInfo); return new ResponseResult { status = 0, @@ -266,7 +266,7 @@ try { dynamic resultInfos = new ExpandoObject(); - resultInfos.tbBillList = _manager.GetMesItemFHTZetailByBillNo(query); + resultInfos.tbBillList = _manager.GetMesItemFHTZetailByBillNo(query, RequestInfo); return new ResponseResult { status = 0, -- Gitblit v1.9.3