Split account balances in working, cleared and reconciled #25

Merged
jacob1123 merged 3 commits from account-balances into master 2022-02-27 19:33:44 +01:00
Showing only changes of commit 422a74704b - Show all commits

View File

@ -19,12 +19,22 @@ const TransactionsList = computed(() => accountStore.TransactionsList);
<template>
<h1 class="inline">{{ CurrentAccount?.Name }}</h1>
<EditAccount />
<EditAccount /> <br />
<p>
<span>
Current Balance:
<Currency :value="CurrentAccount?.Balance" />
</p>
<Currency :value="CurrentAccount?.WorkingBalance" />
</span>
<span>
Cleared Balance:
<Currency :value="CurrentAccount?.ClearedBalance" />
</span>
<span>
Reconciled Balance:
<Currency :value="CurrentAccount?.ReconciledBalance" />
</span>
<table>
<tr class="font-bold">
<td style="width: 90px;">Date</td>