| | |
| | | /// <param name="skuName"></param> |
| | | /// <returns></returns> |
| | | [HttpGet] |
| | | public IActionResult GetInventoryList(string skuNo, string skuName,string ownerNo,string ownerName) |
| | | public IActionResult GetInventoryList(string skuNo, string skuName,string ownerNo,string ownerName,string lotNo) |
| | | { |
| | | List<MateDataStockDto> StockList = _stock.GetDataStockList(skuNo, skuName,ownerNo,ownerName); |
| | | List<MateDataStockDto> StockList = _stock.GetDataStockList(skuNo, skuName,ownerNo,ownerName,lotNo); |
| | | return Ok(new |
| | | { |
| | | data = StockList, |