Implemented frontend external barcode lookup workflow + a plugin for Open Food Facts (closes #158)

This commit is contained in:
Bernd Bestel
2025-01-11 20:04:32 +01:00
parent a2c2049037
commit c9ffe4885d
9 changed files with 101 additions and 16 deletions

View File

@@ -47,7 +47,7 @@ class BaseService
return LocalizationService::getInstance(GROCY_LOCALE);
}
protected function getStockservice()
protected function getStockService()
{
return StockService::getInstance();
}
@@ -66,4 +66,9 @@ class BaseService
{
return PrintService::getInstance();
}
protected function getFilesService()
{
return FilesService::getInstance();
}
}