Add assigned, deassigned and activity to budgeting screen

This commit is contained in:
2022-04-05 15:08:33 +00:00
parent ae529665a3
commit cef62574bb
2 changed files with 43 additions and 1 deletions

View File

@ -79,7 +79,23 @@ function assignedChanged(e : Event, category : Category){
<span>Available balance:
<Currency
:value="accountStore.GetIncomeAvailable(selected.Year, selected.Month)"
/></span>
/>
</span><br />
<span>Budgeted this month:
<Currency
:value="accountStore.GetBudgeted(selected.Year, selected.Month).assigned"
/>
</span><br />
<span>Budgeted this month:
<Currency
:value="accountStore.GetBudgeted(selected.Year, selected.Month).deassigned"
/>
</span><br />
<span>Budgeted this month:
<Currency
:value="accountStore.GetBudgeted(selected.Year, selected.Month).activity"
/>
</span><br />
<div>
<router-link
:to="'/budget/' + CurrentBudgetID + '/budgeting/' + previous.Year + '/' + previous.Month"