diff --git a/services/StockService.php b/services/StockService.php index 05566baa..2b3c20d7 100644 --- a/services/StockService.php +++ b/services/StockService.php @@ -51,12 +51,6 @@ class StockService extends BaseService return $this->getDatabaseService()->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ); } - public function GetCurrentProductPrices() - { - $sql = 'SELECT * FROM products_current_price'; - return $this->getDatabaseService()->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ); - } - public function GetMissingProducts() { $sql = 'SELECT * FROM stock_missing_products_including_opened';