Added Open NCR report.

This commit is contained in:
Daniel Wathen
2023-01-23 21:27:01 -07:00
parent f40cee57a7
commit 348c233eb1
9 changed files with 126 additions and 10 deletions

View File

@ -65,4 +65,11 @@ public class ProductionReportController : Controller
return View(holdLots);
}
public IActionResult NCRReport()
{
List<NCR> ncrs = ApiCaller.GetApi<List<NCR>>(_baseDBUrl + "GetCurrentNCRs").Result;
return View(ncrs);
}
}