| | |
| | | public StockInfoController(IStockInfoService service) : base(service) |
| | | { |
| | | } |
| | | /// <summary> |
| | | /// 鏌ヨ璁㈠崟绔嬪簱搴撳瓨瑙嗗浘 |
| | | /// </summary> |
| | | /// <param name="orderId"></param> |
| | | /// <param name="materielCode"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("GetStockSelectViews"),AllowAnonymous] |
| | | public List<StockSelectViewDTO> GetStockSelectViews(int orderId, string materielCode) |
| | | { |
| | | return Service.GetStockSelectViews(orderId, materielCode); |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 鏌ヨ璁㈠崟绔嬪簱搴撳瓨瑙嗗浘 |
| | | /// </summary> |
| | | /// <param name="orderId"></param> |
| | | /// <param name="materielCode"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("GetSelectViewDTOs"), AllowAnonymous] |
| | | public List<StockSelectViewDTO> GetSelectViewDTOs(string orderNo, string materielCode) |
| | | { |
| | | return Service.GetSelectViewDTOs(orderNo, materielCode); |
| | | } |
| | | } |
| | | } |