| | |
| | | |
| | | namespace WIDESEA_WMSServer.Controllers.Outbound |
| | | { |
| | | /// <summary> |
| | | /// åºåºå |
| | | /// </summary> |
| | | [Route("api/OutboundOrder")] |
| | | [ApiController] |
| | | public class OutboundOrderController : ApiBaseController<IOutboundOrderService, Dt_OutboundOrder> |
| | |
| | | { |
| | | |
| | | } |
| | | [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); |
| | | } |
| | | } |
| | | } |