Expand net worth calculation. TODO in three places.

This commit is contained in:
James Cole
2023-01-08 18:51:24 +01:00
parent 8447670ed5
commit 862140a9fc
3 changed files with 4 additions and 4 deletions

View File

@@ -73,7 +73,7 @@ class NetWorth implements NetWorthInterface
$cache->addProperty('net-worth-by-currency');
$cache->addProperty(implode(',', $accounts->pluck('id')->toArray()));
if ($cache->has()) {
return $cache->get();
// return $cache->get();
}
$netWorth = [];
@@ -184,7 +184,7 @@ class NetWorth implements NetWorthInterface
*/
private function getAccounts(): Collection
{
$accounts = $this->accountRepository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT]);
$accounts = $this->accountRepository->getAccountsByType([AccountType::ASSET, AccountType::DEFAULT, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE]);
$filtered = new Collection();
/** @var Account $account */
foreach ($accounts as $account) {