@@ -3,30 +3,30 @@ <h3>{{ 'labels.inputs.Deferred income' | translate }} - {{ 'labels.menus.Capital
33
44 < table mat-table [dataSource] ="capitalizedIncomeData " *ngIf ="capitalizedIncomeData.length > 0 ">
55 < ng-container matColumnDef ="amount ">
6- < th mat-header-cell *matHeaderCellDef > {{ 'labels.inputs.Amount' | translate }}</ th >
7- < td mat-cell *matCellDef ="let item ">
6+ < th mat-header-cell class =" center " *matHeaderCellDef > {{ 'labels.inputs.Amount' | translate }}</ th >
7+ < td mat-cell class =" r-amount " *matCellDef ="let item ">
88 {{ item.amount | formatNumber }}
99 </ td >
1010 </ ng-container >
1111
1212 < ng-container matColumnDef ="amortizedAmount ">
13- < th mat-header-cell *matHeaderCellDef > {{ 'labels.inputs.Amortized Amount' | translate }}</ th >
14- < td mat-cell *matCellDef ="let item ">
15- {{ item.amortizedAmount | formatNumber: '0.00' }}
13+ < th mat-header-cell class =" center " *matHeaderCellDef > {{ 'labels.inputs.Amortized Amount' | translate }}</ th >
14+ < td mat-cell class =" r-amount " *matCellDef ="let item ">
15+ {{ item.amortizedAmount | formatNumber }}
1616 </ td >
1717 </ ng-container >
1818
1919 < ng-container matColumnDef ="unrecognizedAmount ">
20- < th mat-header-cell *matHeaderCellDef > {{ 'labels.inputs.Unrecognized Amount' | translate }}</ th >
21- < td mat-cell *matCellDef ="let item ">
22- {{ item.unrecognizedAmount | formatNumber: '0.00' }}
20+ < th mat-header-cell class =" center " *matHeaderCellDef > {{ 'labels.inputs.Unrecognized Amount' | translate }}</ th >
21+ < td mat-cell class =" r-amount " *matCellDef ="let item ">
22+ {{ item.unrecognizedAmount | formatNumber }}
2323 </ td >
2424 </ ng-container >
2525
2626 < ng-container matColumnDef ="amountAdjustment ">
27- < th mat-header-cell *matHeaderCellDef > {{ 'labels.inputs.Adjustment Amount' | translate }}</ th >
28- < td mat-cell *matCellDef ="let item ">
29- {{ item.amountAdjustment | formatNumber: '0.00 ' }}
27+ < th mat-header-cell class =" center " *matHeaderCellDef > {{ 'labels.inputs.Adjustment Amount' | translate }}</ th >
28+ < td mat-cell class =" r-amount " *matCellDef ="let item ">
29+ {{ item.amountAdjustment | formatNumber: '- ' }}
3030 </ td >
3131 </ ng-container >
3232
0 commit comments