Show all balances in Account view
This commit is contained in:
parent
c4995bcbaf
commit
422a74704b
@ -19,12 +19,22 @@ const TransactionsList = computed(() => accountStore.TransactionsList);
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<h1 class="inline">{{ CurrentAccount?.Name }}</h1>
|
<h1 class="inline">{{ CurrentAccount?.Name }}</h1>
|
||||||
<EditAccount />
|
<EditAccount /> <br />
|
||||||
|
|
||||||
<p>
|
<span>
|
||||||
Current Balance:
|
Current Balance:
|
||||||
<Currency :value="CurrentAccount?.Balance" />
|
<Currency :value="CurrentAccount?.WorkingBalance" />
|
||||||
</p>
|
</span>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
Cleared Balance:
|
||||||
|
<Currency :value="CurrentAccount?.ClearedBalance" />
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
Reconciled Balance:
|
||||||
|
<Currency :value="CurrentAccount?.ReconciledBalance" />
|
||||||
|
</span>
|
||||||
<table>
|
<table>
|
||||||
<tr class="font-bold">
|
<tr class="font-bold">
|
||||||
<td style="width: 90px;">Date</td>
|
<td style="width: 90px;">Date</td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user