From 2b25f973bb6d72ce6971d6f9c3cdccf51b7962ab Mon Sep 17 00:00:00 2001 From: wangxinhui <wangxinhui@hnkhzn.com> Date: 星期六, 06 九月 2025 14:27:08 +0800 Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/ZhiHuiQiCe/LongDeLiLiKu --- 项目代码/WMS/WMSServices/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs | 25 ++++++++++++++++++++++--- 1 files changed, 22 insertions(+), 3 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs" index 342f455..f6446dc 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs" @@ -75,9 +75,9 @@ /// </summary> /// <returns></returns> [HttpPost, HttpGet, Route("InboundFLTask"), AllowAnonymous] - public WebResponseContent InboundFLTask(string barCode, string startPoint, string matCode, int matCount) + public WebResponseContent InboundFLOrCPTask(string barCode, string startPoint, string matCode, int matCount) { - return Service.InboundFLTask(barCode, startPoint, matCode, matCount); + return Service.InboundFLOrCPTask(barCode, startPoint, matCode, matCount); } /// <summary> @@ -183,6 +183,16 @@ return Service.RequestYLWMSTaskSimple(stationCode,palletCode); } /// <summary> + /// 鍘熸枡鍏ュ簱鐢宠 + /// </summary> + /// <param name="palletCode">鏉$爜</param> + /// <returns></returns> + [HttpPost, HttpGet, Route("YLPurchaseBoxing"), AllowAnonymous] + public WebResponseContent YLPurchaseBoxing(string palletCode) + { + return Service.YLPurchaseBoxing(palletCode); + } + /// <summary> /// 鍒嗛厤鍘熸枡鍏ュ簱宸烽亾 /// </summary> /// <param name="palletCode"></param> @@ -223,7 +233,6 @@ /// </summary> /// <param name="materielCode">鐗╂枡浠g爜</param> /// <param name="materielWide">鐗╂枡骞呭</param> - /// <param name="Count">鍗锋暟</param> /// <returns></returns> [HttpPost, HttpGet, Route("RequestYLWMSTaskOut"), AllowAnonymous] public WebResponseContent RequestYLWMSTaskOut(string materielCode,int materielWide, int count,string address="") @@ -280,5 +289,15 @@ { return Service.PrintInbound(saveModel); } + /// <summary> + /// 鍒涘缓鍘熺焊鐢熶骇鎺掔▼鍑哄簱浠诲姟 + /// </summary> + /// <param name="saveModel"></param> + /// <returns></returns> + [HttpPost, HttpGet, Route("CreateBSTOutboundTasks"), AllowAnonymous] + public WebResponseContent CreateBSTOutboundTasks([FromBody] int[] keys) + { + return Service.CreateBSTOutboundTasks(keys); + } } } -- Gitblit v1.9.3