| | |
| | | { |
| | | |
| | | } |
| | | [HttpPost,Route("TestOutUpload"),AllowAnonymous] |
| | | public WebResponseContent TestOutUpload(int id) |
| | | { |
| | | return Service.TestOutUpload(id); |
| | | } |
| | | |
| | | [HttpPost, Route("GetOutboundOrder"), AllowAnonymous] |
| | | public WebResponseContent GetOutboundOrder([FromBody] OutboundOrderGetDTO outboundOrderGetDTO) |
| | | { |
| | | return Service.GetOutboundOrder(outboundOrderGetDTO); |
| | | } |
| | | [HttpPost, Route("GetOutboundOrderDetail"), AllowAnonymous] |
| | | public WebResponseContent GetOutboundOrderDetail([FromBody] string OrderNo) |
| | | { |
| | | return Service.GetOutboundOrderDetail(OrderNo); |
| | | } |
| | | } |
| | | } |