mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 13:51:55 +00:00
167_not posted interest
This commit is contained in:
parent
ea9b9e1888
commit
e46c8cd8fa
@ -1968,6 +1968,8 @@
|
||||
"label.totalinterestearned": "Interest earned",
|
||||
"label.totalinterestposted": "Interest posted",
|
||||
"label.totaloverdraftinterestderived": "Interest on overdraft",
|
||||
"label.interestEarnedNotPosted":"Earned interest not posted",
|
||||
"label.overdraftInterestNotPosted":"Overdraft interest not posted",
|
||||
"label.interestrate": "Nominal interest rate",
|
||||
"label.interestcompoundingperiod": "Interest compounding period",
|
||||
"label.interestpostingperiod": "Interest posting period",
|
||||
@ -2005,6 +2007,7 @@
|
||||
"label.account.recurring.deposit.amount":"Recurring Deposit Amount",
|
||||
"label.account.deposit.frequency":"Deposit Frequency",
|
||||
"label.account.closed.on.date":"Closed on Date",
|
||||
"label.heading.interest.calculation.date":"Interest Recalculation Date",
|
||||
|
||||
"#tool tip for saving products":"..",
|
||||
"label.tooltip.productname":"A unique identifier for the saving product",
|
||||
|
||||
@ -191,7 +191,7 @@
|
||||
<td><span class="padded-td">{{savingaccountdetails.currency.displaySymbol}} {{savingaccountdetails.summary.totalAnnualFees| number}}</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr ng-show="savingaccountdetails.summary.totalInterestEarned">
|
||||
<tr ng-hide="savingaccountdetails.summary.totalInterestEarned >= 0">
|
||||
<td class="table-bold-acc fontnormal">{{'label.totalinterestearned' |
|
||||
translate}}
|
||||
</td>
|
||||
@ -205,6 +205,14 @@
|
||||
<td><span class="padded-td">{{savingaccountdetails.currency.displaySymbol}} {{savingaccountdetails.summary.totalInterestPosted| number}}</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr ng-show="savingaccountdetails.summary.interestNotPosted >= 0">{{savingaccountdetails.summary.earnedInterestNotPosted | number}}
|
||||
<td class="table-bold-acc fontnormal">{{'label.interestEarnedNotPosted' |
|
||||
translate}}
|
||||
</td>
|
||||
<td><span class="padded-td">
|
||||
{{savingaccountdetails.currency.displaySymbol }} {{savingaccountdetails.summary.interestNotPosted | number}}</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr ng-show="savingaccountdetails.summary.totalOverdraftInterestDerived">
|
||||
<td class="table-bold-acc fontnormal">{{'label.totaloverdraftinterestderived' |
|
||||
translate}}
|
||||
@ -212,6 +220,15 @@
|
||||
<td><span class="padded-td">{{savingaccountdetails.currency.displaySymbol}} {{savingaccountdetails.summary.totalOverdraftInterestDerived| number}}</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr ng-show="savingaccountdetails.summary.interestNotPosted < 0">
|
||||
<td class="table-bold-acc fontnormal">{{'label.overdraftInterestNotPosted' |
|
||||
translate}}
|
||||
</td>
|
||||
<td><span class="padded-td">{{savingaccountdetails.currency.displaySymbol}} {{savingaccountdetails.summary.interestNotPosted| number}}</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="table-bold-acc fontnormal">{{'label.interestrate' | translate}}</td>
|
||||
<td><span class="padded-td">{{savingaccountdetails.nominalAnnualInterestRate}}%</span></td>
|
||||
@ -310,6 +327,10 @@
|
||||
<td class="table-bold-acc fontnormal"> {{'label.heading.minRequiredBalance' | translate}}</td>
|
||||
<td><span class="padded-td">{{savingaccountdetails.minRequiredBalance| number}}</span></td>
|
||||
</tr>
|
||||
<tr data-ng-show="savingaccountdetails.summary.lastInterestCalculationDate">
|
||||
<td class="table-bold-acc fontnormal"> {{'label.heading.interest.calculation.date' | translate}}</td>
|
||||
<td><span class="padded-td">{{savingaccountdetails.summary.lastInterestCalculationDate | DateFormat}}</span></td>
|
||||
</tr>
|
||||
<tr ng-show="showonhold">
|
||||
<td class="table-bold-acc fontnormal"> {{'label.heading.onholdfunds' | translate}}</td>
|
||||
<td><span class="padded-td">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user