| | |
| | | { |
| | | return Service.GetUpstreamOutOrder(); |
| | | } |
| | | |
| | | /// æ¥è¯¢çç¹åä¿¡æ¯ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("GetPdDeliveryOrders")] |
| | | public WebResponseContent GetPdDeliveryOrders([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.GetPdDeliveryOrders(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); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("MatPicking")] |
| | | public WebResponseContent MatPicking([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.MatPicking(saveModel); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("FeedbackOut")] |
| | | public WebResponseContent FeedbackOut([FromBody] SaveModel saveModel) |
| | | { |
| | | return Service.FeedbackOut(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); |
| | | } |
| | | |
| | | |
| | | } |
| | | } |