mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
Fixed recipe ingredient costs/calories calculation when having different QUs and when only_check_single_unit_in_stock is set (fixes #2529) Added a new column "Product picture" on /products (closes #2640) Fixed partly opening stock entries stock_id handling (fixes #2391)
31 lines
841 B
PHP
31 lines
841 B
PHP
<?php
|
|
|
|
// This is executed inside DatabaseMigrationService class/context
|
|
|
|
$localizationService = $this->getLocalizationService();
|
|
$db = $this->getDatabaseService()->GetDbConnection();
|
|
|
|
if ($db->quantity_units()->count() === 0)
|
|
{
|
|
// Create 2 default quantity units
|
|
$newRow = $db->quantity_units()->createRow([
|
|
'name' => $localizationService->__n(1, 'Piece', 'Pieces'),
|
|
'name_plural' => $localizationService->__n(2, 'Piece', 'Pieces')
|
|
]);
|
|
$newRow->save();
|
|
$newRow = $db->quantity_units()->createRow([
|
|
'name' => $localizationService->__n(1, 'Pack', 'Packs'),
|
|
'name_plural' => $localizationService->__n(2, 'Pack', 'Packs')
|
|
]);
|
|
$newRow->save();
|
|
}
|
|
|
|
if ($db->locations()->count() === 0)
|
|
{
|
|
// Create a default location
|
|
$newRow = $db->locations()->createRow([
|
|
'name' => $localizationService->__t('Fridge')
|
|
]);
|
|
$newRow->save();
|
|
}
|