From e719f3e5d5d16ee8a9dece97d9889610507628ac Mon Sep 17 00:00:00 2001 From: wangxinhui <wangxinhui@hnkhzn.com> Date: 星期一, 18 八月 2025 08:15:27 +0800 Subject: [PATCH] 1 --- 项目代码/WMS/WMSServices/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 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 2c8be3d..24cc3df 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" @@ -182,5 +182,39 @@ { return Service.RequestYLWMSTaskSimple(stationCode,palletCode); } + + /// <summary> + /// 鎴愬搧鍑哄簱浠诲姟璇锋眰 + /// </summary> + /// <returns></returns> + [HttpPost, HttpGet, Route("RequestCPWMSTaskOut"), AllowAnonymous] + public WebResponseContent RequestCPWMSTaskOut(int Count) + { + return Service.RequestCPWMSTaskOut(Count); + } + /// <summary> + /// 鍘熸枡鍑哄簱浠诲姟 + /// </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) + { + return Service.RequestYLWMSTaskOut(materielCode, materielWide, Count); + } + /// <summary> + /// 鍘熸枡绉诲簱浠诲姟 + /// </summary> + /// <param name="startAddress"></param> + /// <param name="endAddress"></param> + /// <param name="roadWay"></param> + /// <returns></returns> + [HttpPost, HttpGet, Route("Relocation"), AllowAnonymous] + public WebResponseContent IsRelocation(string startAddress, string endAddress, string roadWay) + { + return Service.IsRelocation(startAddress, endAddress, roadWay); + } } } -- Gitblit v1.9.3