From b727409bf046acea9533065da35e8e3872cac783 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期五, 22 八月 2025 10:54:32 +0800 Subject: [PATCH] 1.生产领料库位信息查询 --- Controllers/Wom/WomdaaController.cs | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/Controllers/Wom/WomdaaController.cs b/Controllers/Wom/WomdaaController.cs index 809832b..1d26e46 100644 --- a/Controllers/Wom/WomdaaController.cs +++ b/Controllers/Wom/WomdaaController.cs @@ -121,6 +121,31 @@ } } + + /// <summary> + /// 鐢熶骇棰嗘枡鐐瑰嚮鐗╂枡鏄庣粏鑾峰彇鐩稿叧鏉$爜淇℃伅 + /// </summary> + /// <returns></returns> + [HttpPost("GetBarKwByItem")] + public ResponseResult GetBarKwByItem(dynamic unity) + { + try + { + dynamic resultInfos = new ExpandoObject(); + resultInfos.tbBillList = m.GetBarKwByItem(unity); + return new ResponseResult + { + status = 0, + message = "OK", + data = resultInfos + }; + } + catch (Exception ex) + { + return ResponseResult.ResponseError(ex); + } + } + /// <summary> /// 鑾峰彇鎵�鏈� /// </summary> -- Gitblit v1.9.3