mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 13:36:46 +00:00
Merge 8786f590a9 into 45ec7b82e9
This commit is contained in:
commit
893a9e1b2d
@ -405,6 +405,11 @@
|
||||
]
|
||||
};
|
||||
}
|
||||
if (!data.canDisburse){
|
||||
scope.showNetDisbursal = true;
|
||||
}
|
||||
scope.netDisbursal = data.repaymentSchedule.totalPrincipalDisbursed - data.repaymentSchedule.totalFeeChargesCharged;
|
||||
|
||||
|
||||
resourceFactory.standingInstructionTemplateResource.get({fromClientId: scope.loandetails.clientId,fromAccountType: 1,fromAccountId: routeParams.id},function (response) {
|
||||
scope.standinginstruction = response;
|
||||
|
||||
@ -120,6 +120,10 @@
|
||||
<th class="table-bold-loan">{{'label.heading.externalid' | translate}}</th>
|
||||
<td><span class="padded-td">{{loandetails.externalId}}</span><span ng-hide="loandetails.externalId">{{'label.heading.notprovided' | translate}}</span></td>
|
||||
</tr>
|
||||
<tr ng-show="showNetDisbursal">
|
||||
<th class="table-bold-loan">{{'Net Disbursal Amount' | translate}}</th>
|
||||
<td><span class="padded-td">{{netDisbursal | number}}</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
<div ng-show="loandetails.summary">
|
||||
<h3>{{'label.heading.currentBalance' | translate}}: {{loandetails.currency.displaySymbol}} {{loandetails.summary.totalOutstanding | number}}</h3>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user