mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-05 11:49:29 +00:00
🤖 Auto commit for release 'develop' on 2025-07-30
This commit is contained in:
@@ -280,6 +280,7 @@ class BudgetController extends Controller
|
|||||||
$amount = '0';
|
$amount = '0';
|
||||||
$limit = null;
|
$limit = null;
|
||||||
$converter = new ExchangeRateConverter();
|
$converter = new ExchangeRateConverter();
|
||||||
|
|
||||||
/** @var BudgetLimit $current */
|
/** @var BudgetLimit $current */
|
||||||
foreach ($limits as $current) {
|
foreach ($limits as $current) {
|
||||||
if (true === $this->convertToNative) {
|
if (true === $this->convertToNative) {
|
||||||
|
|||||||
@@ -231,8 +231,7 @@ class OperationsRepository implements OperationsRepositoryInterface, UserGroupIn
|
|||||||
?Collection $budgets = null,
|
?Collection $budgets = null,
|
||||||
?TransactionCurrency $currency = null,
|
?TransactionCurrency $currency = null,
|
||||||
bool $convertToNative = false
|
bool $convertToNative = false
|
||||||
): array
|
): array {
|
||||||
{
|
|
||||||
Log::debug(sprintf('Start of %s(date, date, array, array, "%s", %s).', __METHOD__, $currency?->code, var_export($convertToNative, true)));
|
Log::debug(sprintf('Start of %s(date, date, array, array, "%s", %s).', __METHOD__, $currency?->code, var_export($convertToNative, true)));
|
||||||
// this collector excludes all transfers TO liabilities (which are also withdrawals)
|
// this collector excludes all transfers TO liabilities (which are also withdrawals)
|
||||||
// because those expenses only become expenses once they move from the liability to the friend.
|
// because those expenses only become expenses once they move from the liability to the friend.
|
||||||
@@ -255,7 +254,8 @@ class OperationsRepository implements OperationsRepositoryInterface, UserGroupIn
|
|||||||
$collector->setUser($this->user)
|
$collector->setUser($this->user)
|
||||||
->setRange($start, $end)
|
->setRange($start, $end)
|
||||||
// ->excludeDestinationAccounts($selection)
|
// ->excludeDestinationAccounts($selection)
|
||||||
->setTypes([TransactionTypeEnum::WITHDRAWAL->value]);
|
->setTypes([TransactionTypeEnum::WITHDRAWAL->value])
|
||||||
|
;
|
||||||
|
|
||||||
if ($accounts instanceof Collection) {
|
if ($accounts instanceof Collection) {
|
||||||
$collector->setAccounts($accounts);
|
$collector->setAccounts($accounts);
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ return [
|
|||||||
// see cer.php for exchange rates feature flag.
|
// see cer.php for exchange rates feature flag.
|
||||||
],
|
],
|
||||||
'version' => 'develop/2025-07-30',
|
'version' => 'develop/2025-07-30',
|
||||||
'build_time' => 1753858473,
|
'build_time' => 1753878970,
|
||||||
'api_version' => '2.1.0', // field is no longer used.
|
'api_version' => '2.1.0', // field is no longer used.
|
||||||
'db_version' => 26,
|
'db_version' => 26,
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user