From eb7892b61b050646ad11e7a36942c2a2a16a24f2 Mon Sep 17 00:00:00 2001 From: wangxinhui <wangxinhui@hnkhzn.com> Date: 星期四, 03 七月 2025 20:12:58 +0800 Subject: [PATCH] 1 --- 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Stock/StockInfoController.cs | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 42 insertions(+), 0 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Stock/StockInfoController.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Stock/StockInfoController.cs" index 530fa23..d4db578 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Stock/StockInfoController.cs" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Stock/StockInfoController.cs" @@ -22,11 +22,53 @@ { } + /// <summary> + /// 鏌ヨ璁㈠崟绔嬪簱搴撳瓨瑙嗗浘 + /// </summary> + /// <param name="orderId"></param> + /// <param name="materielCode"></param> + /// <returns></returns> [HttpPost, HttpGet, Route("GetStockSelectViews")] public List<StockSelectViewDTO> GetStockSelectViews(int orderId, string materielCode) { return Service.GetStockSelectViews(orderId, materielCode); } + + /// <summary> + /// 鏌ヨ璁㈠崟骞冲簱搴撳瓨瑙嗗浘 + /// </summary> + /// <param name="orderId"></param> + /// <param name="materielCode"></param> + /// <returns></returns> + [HttpPost, HttpGet, Route("GetPKStockSelectViews")] + public List<StockSelectViewDTO> GetPKStockSelectViews(int orderId, string materielCode) + { + return Service.GetPKStockSelectViews(orderId, materielCode); + } + + /// <summary> + /// 鏌ヨPP绔嬪簱搴撳瓨瑙嗗浘 + /// </summary> + /// <param name="orderId"></param> + /// <param name="materlCode"></param> + /// <returns></returns> + [HttpPost, HttpGet, Route("PPGetStockSelectViews")] + public List<PPStockSelectViewDTO> PPGetStockSelectViews(int orderId, string materielCode) + { + return Service.PPGetStockSelectViews(orderId, materielCode); + } + + /// <summary> + /// 鏌ヨ璁㈠崟PP骞冲簱搴撳瓨瑙嗗浘 + /// </summary> + /// <param name="orderId"></param> + /// <param name="materielCode"></param> + /// <returns></returns> + [HttpPost, HttpGet, Route("PPGetPKStockSelectViews")] + public List<PPStockSelectViewDTO> PPGetPKStockSelectViews(int orderId, string materielCode) + { + return Service.PPGetPKStockSelectViews(orderId, materielCode); + } /// <summary> /// 鏍规嵁鎵樼洏鍜屽簱鍖烘煡璇㈠簱瀛樹俊鎭� /// </summary> -- Gitblit v1.9.3