| | |
| | | public InboundOrderController(IInboundOrderService service) : base(service) |
| | | { |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("MaterielGroupSingle")] |
| | | public WebResponseContent MaterielGroup(int inboundOrderId, string palletCode, string serNum) |
| | | { |
| | | return Service.MaterielGroup(inboundOrderId, palletCode, serNum); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("MaterielGroup")] |
| | | public WebResponseContent MaterielGroup(int inboundOrderId, string palletCode, List<string> serNums) |
| | | { |
| | | return Service.MaterielGroup(inboundOrderId, palletCode, serNums); |
| | | } |
| | | } |
| | | } |