-
Notifications
You must be signed in to change notification settings - Fork 543
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Jose Alberto Hernandez <[email protected]>
- Loading branch information
1 parent
b50ac45
commit 10e84d1
Showing
11 changed files
with
247 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
142 changes: 70 additions & 72 deletions
142
...w/external-asset-owner-tab/external-asset-transfer/external-asset-transfer.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,70 @@ | ||
<div fxLayout="row" fxLayoutGap="32px" class="asset-transfer-container"> | ||
<table> | ||
<tbody> | ||
<tr> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Status :</b> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5 left"> | ||
<div [ngClass]="itemStatus(transferData.status)"> | ||
<fa-icon icon="stop"></fa-icon> | ||
<span class="m-l-5 status">{{transferData.status}}</span> | ||
</div> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Owner External Id :</b> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5 left"> | ||
<mifosx-external-identifier externalId="{{transferData.owner.externalId}}" completed="true"></mifosx-external-identifier> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Settlement Date :</b> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5"> | ||
{{transferData.settlementDate | dateFormat}} | ||
</td> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Effective Date :</b> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5"> | ||
{{transferData.effectiveFrom | dateFormat}} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Details :</b> | ||
</td> | ||
<td fxFlex="75%" class="left"> | ||
<table> | ||
<tbody> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Principal Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalPrincipalOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Interest Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalInterestOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Fees Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalFeeChargesOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Penalties Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalPenaltyChargesOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Overpaid :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalOverpaid | formatNumber}}</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<table> | ||
<tbody> | ||
<tr> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Status :</b> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5 left"> | ||
<div [ngClass]="itemStatus(transferData.status)"> | ||
<fa-icon icon="stop"></fa-icon> | ||
<span class="m-l-5 status">{{transferData.status}}</span> | ||
</div> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Owner External Id :</b> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5 left"> | ||
<mifosx-external-identifier externalId="{{transferData.owner.externalId}}" completed="true"></mifosx-external-identifier> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Settlement Date :</b> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5"> | ||
{{transferData.settlementDate | dateFormat}} | ||
</td> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Effective Date :</b> | ||
</td> | ||
<td fxFlex="25%" class="m-l-5"> | ||
{{transferData.effectiveFrom | dateFormat}} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="25%" class="m-l-5"> | ||
<b>Details :</b> | ||
</td> | ||
<td fxFlex="75%" class="left"> | ||
<table> | ||
<tbody> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Principal Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalPrincipalOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Interest Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalInterestOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Fees Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalFeeChargesOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Penalties Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalPenaltyChargesOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Outstanding :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalOutstanding | formatNumber}}</td> | ||
</tr> | ||
<tr> | ||
<td fxFlex="50%" class="m-l-5"><b>Overpaid :</b></td> | ||
<td fxFlex="50%" class="r-amount">{{transferData.details.totalOverpaid | formatNumber}}</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.