| | |
| | | return Service.AddInboundOrder(orderAddDTO); |
| | | } |
| | | |
| | | [HttpPost, Route("MaterielGroup")] |
| | | public WebResponseContent MaterielGroup([FromBody] MaterielGroupDTO materielGroupDTO) |
| | | [HttpPost, Route("GetInboundOrder"), AllowAnonymous] |
| | | public WebResponseContent GetInboundOrder([FromBody] InboundOrderGetDTO inboundOrderGetDTO) |
| | | { |
| | | return Service.MaterielGroup(materielGroupDTO); |
| | | return Service.GetInboundOrder(inboundOrderGetDTO); |
| | | } |
| | | [HttpPost, Route("GetInboundOrderDetail"), AllowAnonymous] |
| | | public WebResponseContent GetInboundOrderDetail([FromBody] string OrderNo) |
| | | { |
| | | return Service.GetInboundOrderDetail(OrderNo); |
| | | } |
| | | } |
| | | } |