@if ((query | async)?.data?.order; as order) {
| {{ 'profile.amount' | translate }} |
{{ 'profile.type' | translate }} |
{{ 'profile.paymentGateway' | translate }} |
{{ 'profile.documentNumber' | translate }} |
@for (data of basicTable2.data; track data) {
| {{data.amount | currency: data.currency}} |
{{ data.action === 'Deduct' ? ('enum.transactionType.' + data.deductType | translate) : ('enum.transactionType.' + data.rechargeType | translate) }} |
{{data.paymentGateway?.title}} |
{{data.refrenceNumber}} |
}
| {{ 'profile.amount' | translate }} |
{{ 'profile.type' | translate }} |
{{ 'profile.documentNumber' | translate }} |
@for (data of basicTable.data; track data) {
| {{data.amount | currency: data.currency}} |
{{ data.action === 'Deduct' ? ('enum.transactionType.' + data.deductType | translate) : ('enum.transactionType.' + data.rechargeType | translate) }} |
{{data.refrenceNumber}} |
}
| {{ 'profile.amount' | translate }} |
{{ 'profile.type' | translate }} |
{{ 'profile.documentNumber' | translate }} |
@for (data of basicTable3.data; track data) {
| {{data.amount | currency: data.currency}} |
{{ data.action === 'Deduct' ? ('enum.transactionType.' + data.deductType | translate) : ('enum.transactionType.' + data.rechargeType | translate) }} |
{{data.refrenceNumber}} |
}
@if (order.fleetTransactions.length > 0) {
| {{ 'profile.amount' | translate }} |
{{ 'profile.type' | translate }} |
{{ 'profile.documentNumber' | translate }} |
@for (data of basicTable4.data; track data) {
| {{data.amount | currency: data.currency}} |
{{ data.action === 'Deduct' ? ('enum.transactionType.' + data.deductType | translate) : ('enum.transactionType.' + data.rechargeType | translate) }} |
{{data.refrenceNumber}} |
}
}
}