| | |
| | | { |
| | | } |
| | | |
| | | [HttpPost, Route("GetAllStockViews"), AllowAnonymous] |
| | | [HttpPost, Route("GetAllStockViews"),AllowAnonymous] |
| | | public List<StockViewDTO> GetAllStockViews() |
| | | { |
| | | return Service.Repository.GetAllStockViews(); |
| | | } |
| | | |
| | | [HttpPost, Route("GetStockSelectViews"), AllowAnonymous] |
| | | public List<StockSelectViewDTO> GetStockSelectViews([FromBody]string materielCode) |
| | | public List<StockSelectViewDTO> GetStockSelectViews(string materielCode) |
| | | { |
| | | return Service.GetStockSelectViews(materielCode); |
| | | } |
| | | [HttpPost, Route("GetPalletStockInfo"), AllowAnonymous] |
| | | public Dt_StockInfo GetPalletStockInfo(string roadwayNo) |
| | | public Dt_StockInfo GetPalletStockInfo([FromBody] string roadwayNo) |
| | | { |
| | | return Service.Repository.GetPalletStockInfo(roadwayNo); |
| | | } |