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>
|
||||
<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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user