mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 16:00:13 +00:00
Fix #9835
This commit is contained in:
@@ -381,6 +381,7 @@ class CreateRecurringTransactions implements ShouldQueue
|
|||||||
|
|
||||||
$array = [
|
$array = [
|
||||||
'user' => $recurrence->user,
|
'user' => $recurrence->user,
|
||||||
|
'user_group' => $recurrence->user->userGroup,
|
||||||
'group_title' => $groupTitle,
|
'group_title' => $groupTitle,
|
||||||
'transactions' => $this->getTransactionData($recurrence, $repetition, $date),
|
'transactions' => $this->getTransactionData($recurrence, $repetition, $date),
|
||||||
];
|
];
|
||||||
@@ -421,7 +422,8 @@ class CreateRecurringTransactions implements ShouldQueue
|
|||||||
$single = [
|
$single = [
|
||||||
'type' => null === $transaction?->transactionType?->type ? strtolower($recurrence->transactionType->type) : strtolower($transaction->transactionType->type), // @phpstan-ignore-line
|
'type' => null === $transaction?->transactionType?->type ? strtolower($recurrence->transactionType->type) : strtolower($transaction->transactionType->type), // @phpstan-ignore-line
|
||||||
'date' => $date,
|
'date' => $date,
|
||||||
'user' => $recurrence->user_id,
|
'user' => $recurrence->user,
|
||||||
|
'user_group' => $recurrence->user->userGroup,
|
||||||
'currency_id' => $transaction->transaction_currency_id,
|
'currency_id' => $transaction->transaction_currency_id,
|
||||||
'currency_code' => null,
|
'currency_code' => null,
|
||||||
'description' => $transaction->description,
|
'description' => $transaction->description,
|
||||||
|
Reference in New Issue
Block a user