Update meta files for new release v6.0.6.

This commit is contained in:
James Cole
2023-04-01 07:50:53 +02:00
parent 0359a98681
commit c4f2519b6f
34 changed files with 525 additions and 476 deletions

View File

@@ -497,10 +497,10 @@ class JournalUpdateService
{
$type = $this->transactionJournal->transactionType->type;
if ((
array_key_exists('bill_id', $this->data)
|| array_key_exists('bill_name', $this->data)
)
&& TransactionType::WITHDRAWAL === $type
array_key_exists('bill_id', $this->data)
|| array_key_exists('bill_name', $this->data)
)
&& TransactionType::WITHDRAWAL === $type
) {
$billId = (int)($this->data['bill_id'] ?? 0);
$billName = (string)($this->data['bill_name'] ?? '');