mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-22 17:06:39 -06:00
Apply fix for #2070
This commit is contained in:
parent
0d0906c5e2
commit
7658b7d9a6
@ -78,7 +78,7 @@ final class FromAccountContains extends AbstractTrigger implements TriggerInterf
|
||||
$repository = app(JournalRepositoryInterface::class);
|
||||
|
||||
/** @var Account $account */
|
||||
foreach ($repository->getJournalSourceAccounts($journal) as $account) {
|
||||
foreach ($repository->getJournalSourceAccounts($journal, false) as $account) {
|
||||
$fromAccountName .= strtolower($account->name);
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@ final class FromAccountEnds extends AbstractTrigger implements TriggerInterface
|
||||
$repository = app(JournalRepositoryInterface::class);
|
||||
|
||||
/** @var Account $account */
|
||||
foreach ($repository->getJournalSourceAccounts($journal) as $account) {
|
||||
foreach ($repository->getJournalSourceAccounts($journal, false) as $account) {
|
||||
$name .= strtolower($account->name);
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@ final class FromAccountIs extends AbstractTrigger implements TriggerInterface
|
||||
$repository = app(JournalRepositoryInterface::class);
|
||||
|
||||
/** @var Account $account */
|
||||
foreach ($repository->getJournalSourceAccounts($journal) as $account) {
|
||||
foreach ($repository->getJournalSourceAccounts($journal, false) as $account) {
|
||||
$name .= strtolower($account->name);
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@ final class FromAccountStarts extends AbstractTrigger implements TriggerInterfac
|
||||
$repository = app(JournalRepositoryInterface::class);
|
||||
|
||||
/** @var Account $account */
|
||||
foreach ($repository->getJournalSourceAccounts($journal) as $account) {
|
||||
foreach ($repository->getJournalSourceAccounts($journal, false) as $account) {
|
||||
$name .= strtolower($account->name);
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@ final class ToAccountContains extends AbstractTrigger implements TriggerInterfac
|
||||
$repository = app(JournalRepositoryInterface::class);
|
||||
|
||||
/** @var Account $account */
|
||||
foreach ($repository->getJournalDestinationAccounts($journal) as $account) {
|
||||
foreach ($repository->getJournalDestinationAccounts($journal, false) as $account) {
|
||||
$toAccountName .= strtolower($account->name);
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@ final class ToAccountEnds extends AbstractTrigger implements TriggerInterface
|
||||
$repository = app(JournalRepositoryInterface::class);
|
||||
|
||||
/** @var Account $account */
|
||||
foreach ($repository->getJournalDestinationAccounts($journal) as $account) {
|
||||
foreach ($repository->getJournalDestinationAccounts($journal, false) as $account) {
|
||||
$toAccountName .= strtolower($account->name);
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@ final class ToAccountIs extends AbstractTrigger implements TriggerInterface
|
||||
$repository = app(JournalRepositoryInterface::class);
|
||||
|
||||
/** @var Account $account */
|
||||
foreach ($repository->getJournalDestinationAccounts($journal) as $account) {
|
||||
foreach ($repository->getJournalDestinationAccounts($journal, false) as $account) {
|
||||
$toAccountName .= strtolower($account->name);
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,7 @@ final class ToAccountStarts extends AbstractTrigger implements TriggerInterface
|
||||
$repository = app(JournalRepositoryInterface::class);
|
||||
|
||||
/** @var Account $account */
|
||||
foreach ($repository->getJournalDestinationAccounts($journal) as $account) {
|
||||
foreach ($repository->getJournalDestinationAccounts($journal, false) as $account) {
|
||||
$toAccountName .= strtolower($account->name);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user