1
Huangxiaoqiang-03
2024-11-04 fe941b73b9496f6cfab1a8957f319f74ea09fe1d
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Inbound/InboundOrderController.cs
@@ -23,10 +23,15 @@
            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);
        }
    }
}