Add possibility to filter by product group on stock overview page

This commit is contained in:
Bernd Bestel
2018-10-06 18:19:31 +02:00
parent 132999ce36
commit 03eaa6c79f
4 changed files with 28 additions and 1 deletions

View File

@@ -23,7 +23,8 @@ class StockController extends BaseController
'locations' => $this->Database->locations()->orderBy('name'),
'currentStock' => $this->StockService->GetCurrentStock(),
'missingProducts' => $this->StockService->GetMissingProducts(),
'nextXDays' => 5
'nextXDays' => 5,
'productGroups' => $this->Database->product_groups()->orderBy('name')
]);
}