🤖 Auto commit for release 'develop' on 2025-09-21

This commit is contained in:
JC5
2025-09-21 08:28:09 +02:00
parent 69cae3ae55
commit 8c0ee8f024
9 changed files with 299 additions and 280 deletions

View File

@@ -123,8 +123,9 @@ trait JournalServiceTrait
if (null !== $search && in_array($search->accountType->type, $types, true)) {
Log::debug(sprintf('Found "account_id" object: #%d, "%s" of type %s (1)', $search->id, $search->name, $search->accountType->type));
if($opposite?->id === $search->id) {
if ($opposite?->id === $search->id) {
Log::debug(sprintf('Account #%d is the same as opposite account #%d, returning NULL.', $search->id, $opposite->id));
return null;
}
@@ -163,8 +164,9 @@ trait JournalServiceTrait
if (null !== $result) {
Log::debug(sprintf('Found "account_iban" object: #%d, %s', $result->id, $result->name));
if($opposite?->id === $result->id) {
if ($opposite?->id === $result->id) {
Log::debug(sprintf('Account #%d is the same as opposite account #%d, returning NULL.', $result->id, $opposite->id));
return null;
}
@@ -196,8 +198,9 @@ trait JournalServiceTrait
if (null !== $result) {
Log::debug(sprintf('Found account: #%d, %s', $result->id, $result->name));
if($opposite?->id === $result->id) {
if ($opposite?->id === $result->id) {
Log::debug(sprintf('Account #%d is the same as opposite account #%d, returning NULL.', $result->id, $opposite->id));
return null;
}
@@ -231,8 +234,9 @@ trait JournalServiceTrait
if (null !== $result) {
Log::debug(sprintf('Found "account_name" object: #%d, %s', $result->id, $result->name));
if($opposite?->id === $result->id) {
if ($opposite?->id === $result->id) {
Log::debug(sprintf('Account #%d is the same as opposite account #%d, returning NULL.', $result->id, $opposite->id));
return null;
}