Do "auto add missing products to shopping list" also on product open actions (fixes #1873)

This commit is contained in:
Bernd Bestel 2022-04-27 22:50:20 +02:00
parent 845e69fb96
commit 8ab511361a
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -1075,6 +1075,11 @@ class StockService extends BaseService
}
}
if (boolval($this->getUsersService()->GetUserSetting(GROCY_USER_ID, 'shopping_list_auto_add_below_min_stock_amount')))
{
$this->AddMissingProductsToShoppingList(intval($this->getUsersService()->GetUserSetting(GROCY_USER_ID, 'shopping_list_auto_add_below_min_stock_amount_list_id')));
}
return $transactionId;
}