| | |
| | | { |
| | | return Service.GetUpstreamOutOrder(); |
| | | } |
| | | |
| | | /// æ¥è¯¢çç¹åä¿¡æ¯ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("GetCheckOrders")] |
| | | public WebResponseContent GetCheckOrders([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.GetCheckOrders(saveModel); |
| | | } |
| | | |
| | | /// æ¥è¯¢åºåºåä¿¡æ¯ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("GetDeliveryOrders")] |
| | | public WebResponseContent GetDeliveryOrders([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.GetDeliveryOrders(saveModel); |
| | | } |
| | | |
| | | /// æ¥è¯¢åºåº/çç¹å详æ
|
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("GetDeliveryOrderDetail")] |
| | | public WebResponseContent GetDeliveryOrderDetail(int pageNo, string orderNo, bool isPick) |
| | | { |
| | | return Service.GetDeliveryOrderDetail(pageNo, orderNo,isPick); |
| | | } |
| | | /// <summary> |
| | | /// 宿çç¹ä»»å¡ |
| | | /// </summary> |
| | | /// <param name="saveModel"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("CheckFinish")] |
| | | public WebResponseContent CheckFinish([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.CheckFinish(saveModel); |
| | | } |
| | | /// <summary> |
| | | /// 宿åºåºä»»å¡ |
| | | /// </summary> |
| | | /// <param name="saveModel"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("OutFinish")] |
| | | public WebResponseContent OutFinish([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.OutFinish(saveModel); |
| | | } |
| | | /// <summary> |
| | | /// æ¥æ¾æªå®æçç¹/åºåºä»»å¡ |
| | | /// </summary> |
| | | /// <param name="saveModel"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("GetCheckOutTasks")] |
| | | public WebResponseContent GetCheckOutTasks([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.GetCheckOutTasks(saveModel); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// çç¹åºåºæ¥å£ |
| | |
| | | /// <param name="externalOrderNo"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("InventoryGood"), AllowAnonymous] |
| | | public WebResponseContent InventoryGood(string externalOrderNo) |
| | | public WebResponseContent InventoryGood(string batchNo, string goodsNo) |
| | | { |
| | | return Service.InventoryGood(externalOrderNo); |
| | | return Service.InventoryGood(batchNo, goodsNo); |
| | | } |
| | | |
| | | |
| | | } |
| | | } |