mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix #9835
This commit is contained in:
parent
8457a1c881
commit
a795755618
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user