Version update.

This commit is contained in:
James Cole
2019-11-13 06:57:17 +01:00
parent 88f1adf650
commit 8a9e12c2b9
5 changed files with 10 additions and 9 deletions

View File

@@ -72,7 +72,7 @@ trait UserNavigation
return false;
}
$type = $journal->transactionType->type;
$editable = [TransactionType::WITHDRAWAL, TransactionType::TRANSFER, TransactionType::DEPOSIT];
$editable = [TransactionType::WITHDRAWAL, TransactionType::TRANSFER, TransactionType::DEPOSIT, TransactionType::RECONCILIATION];
return in_array($type, $editable, true);
}