Files
grocy/services/RecipesService.php
T

125 lines
4.8 KiB
PHP
Raw Normal View History

2018-07-14 18:23:41 +02:00
<?php
namespace Grocy\Services;
2020-09-01 19:59:40 +02:00
use LessQL\Result;
2018-07-14 18:23:41 +02:00
class RecipesService extends BaseService
{
const RECIPE_TYPE_MEALPLAN_DAY = 'mealplan-day'; // A recipe per meal plan day => name = YYYY-MM-DD
const RECIPE_TYPE_MEALPLAN_WEEK = 'mealplan-week'; // A recipe per meal plan week => name = YYYY-WW (week number)
2018-07-14 18:23:41 +02:00
const RECIPE_TYPE_MEALPLAN_SHADOW = 'mealplan-shadow'; // A recipe per meal plan recipe (for separated stock fulfillment checking) => name = YYYY-MM-DD#<meal_plan.id>
const RECIPE_TYPE_NORMAL = 'normal'; // Normal / manually created recipes
2018-07-14 22:49:42 +02:00
public function AddNotFulfilledProductsToShoppingList($recipeId, $excludedProductIds = null)
2018-07-14 22:49:42 +02:00
{
$recipe = $this->getDataBase()->recipes($recipeId);
$recipePositions = $this->GetRecipesPosResolved();
2020-08-31 20:40:31 +02:00
if ($excludedProductIds == null)
{
$excludedProductIds = [];
}
2018-07-14 22:49:42 +02:00
foreach ($recipePositions as $recipePosition)
{
2020-08-31 20:40:31 +02:00
if ($recipePosition->recipe_id == $recipeId && !in_array($recipePosition->product_id, $excludedProductIds))
2018-07-14 22:49:42 +02:00
{
$product = $this->getDataBase()->products($recipePosition->product_id);
$toOrderAmount = round(($recipePosition->missing_amount - $recipePosition->amount_on_shopping_list), 2);
2020-08-31 20:40:31 +02:00
if ($recipe->not_check_shoppinglist == 1)
{
$toOrderAmount = round($recipePosition->missing_amount, 2);
}
2020-08-31 20:40:31 +02:00
if ($toOrderAmount > 0)
2018-07-14 22:49:42 +02:00
{
$note = $this->getLocalizationService()->__t('Added for recipe %s', $recipe->name);
if (!empty($recipePosition->note))
{
$note .= "\n" . $recipePosition->note;
}
2020-08-31 20:40:31 +02:00
$shoppinglistRow = $this->getDataBase()->shopping_list()->createRow([
2018-07-14 22:49:42 +02:00
'product_id' => $recipePosition->product_id,
'amount' => $toOrderAmount,
'note' => $note
2020-08-31 20:40:31 +02:00
]);
2018-07-14 22:49:42 +02:00
$shoppinglistRow->save();
}
}
}
}
public function ConsumeRecipe($recipeId)
{
if (!$this->RecipeExists($recipeId))
{
throw new \Exception('Recipe does not exist');
}
$transactionId = uniqid();
2020-08-31 20:40:31 +02:00
2021-07-16 17:32:08 +02:00
$recipePositions = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id', $recipeId)->fetchAll();
foreach ($recipePositions as $recipePosition)
{
if ($recipePosition->only_check_single_unit_in_stock == 0)
{
2020-10-14 17:48:37 +02:00
$this->getStockService()->ConsumeProduct($recipePosition->product_id, $recipePosition->recipe_amount, false, StockService::TRANSACTION_TYPE_CONSUME, 'default', $recipeId, null, $transactionId, true, true);
}
}
2020-01-21 20:45:34 +01:00
$recipeRow = $this->getDatabase()->recipes()->where('id = :1', $recipeId)->fetch();
2020-01-21 20:45:34 +01:00
if (!empty($recipeRow->product_id))
{
$recipeResolvedRow = $this->getDatabase()->recipes_resolved()->where('recipe_id = :1', $recipeId)->fetch();
$this->getStockService()->AddProduct($recipeRow->product_id, floatval($recipeRow->desired_servings), null, StockService::TRANSACTION_TYPE_SELF_PRODUCTION, date('Y-m-d'), floatval($recipeResolvedRow->costs), null, null, $dummyTransactionId, 0, true);
2020-01-21 20:45:34 +01:00
}
2020-08-31 20:40:31 +02:00
}
public function GetRecipesPosResolved()
{
$sql = 'SELECT * FROM recipes_pos_resolved';
return $this->getDataBaseService()->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ);
}
public function GetRecipesResolved($customWhere = null): Result
2020-08-31 20:40:31 +02:00
{
if ($customWhere == null)
{
return $this->getDatabase()->recipes_resolved();
}
else
{
return $this->getDatabase()->recipes_resolved()->where($customWhere);
}
}
2021-07-13 19:29:23 +02:00
public function CopyRecipe($recipeId)
{
if (!$this->RecipeExists($recipeId))
{
throw new \Exception('Recipe does not exist');
}
$newName = $this->getLocalizationService()->__t('Copy of %s', $this->getDataBase()->recipes($recipeId)->name);
$this->getDatabaseService()->ExecuteDbStatement('INSERT INTO recipes (name, description, picture_file_name, base_servings, desired_servings, not_check_shoppinglist, type, product_id) SELECT \'' . $newName . '\', description, picture_file_name, base_servings, desired_servings, not_check_shoppinglist, type, product_id FROM recipes WHERE id = ' . $recipeId);
$lastInsertId = $this->getDatabase()->lastInsertId();
$this->getDatabaseService()->ExecuteDbStatement('INSERT INTO recipes_pos (recipe_id, product_id, amount, note, qu_id, only_check_single_unit_in_stock, ingredient_group, not_check_stock_fulfillment, variable_amount, price_factor) SELECT ' . $lastInsertId . ', product_id, amount, note, qu_id, only_check_single_unit_in_stock, ingredient_group, not_check_stock_fulfillment, variable_amount, price_factor FROM recipes_pos WHERE recipe_id = ' . $recipeId);
$this->getDatabaseService()->ExecuteDbStatement('INSERT INTO recipes_nestings (recipe_id, includes_recipe_id, servings) SELECT ' . $lastInsertId . ', includes_recipe_id, servings FROM recipes_nestings WHERE recipe_id = ' . $recipeId);
return $lastInsertId;
}
private function RecipeExists($recipeId)
{
$recipeRow = $this->getDataBase()->recipes()->where('id = :1', $recipeId)->fetch();
return $recipeRow !== null;
}
2018-07-14 18:23:41 +02:00
}