First draft for printable location content sheets (references #341)

This commit is contained in:
Bernd Bestel
2019-08-10 16:34:29 +02:00
parent d6e9dc1b59
commit 28716ed96c
6 changed files with 91 additions and 0 deletions

View File

@@ -20,6 +20,12 @@ class StockService extends BaseService
return $this->DatabaseService->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ);
}
public function GetCurrentStockLocationContent()
{
$sql = 'SELECT * FROM stock_current_location_content';
return $this->DatabaseService->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ);
}
public function GetCurrentStockLocations()
{
$sql = 'SELECT * FROM stock_current_locations';