transaction logs

added transactionCode and transactionUri to the transaaction logs  table
mazdak/UX-2136
Mazdak Gibran 2 weeks ago
parent 6bc21d59a5
commit c78b500d61

@ -27,6 +27,8 @@ export interface TransactionLog {
sgtGntrdate: string;
channelCode: string;
createdAt: string;
transactionUri: string;
transactionCode: string
}

@ -98,6 +98,8 @@
<th>{{ "crAccount" | translate }}</th>
<th>{{ "drPcaGlacode" | translate }}</th>
<th>{{ "crPcaglacode" | translate }}</th>
<th>{{ "transactionCode" | translate }}</th>
<th>{{ "transactionUri" | translate }}</th>
<th>{{ "paymentMode" | translate }}</th>
<th>{{ "date" | translate }}</th>
<th>{{ "channel" | translate }}</th>
@ -119,6 +121,8 @@
'drPcaGlacode',
'crPcaglacode',
'crAccount',
'transactionUri',
'transactionCode',
'paymentMode',
'date',
'channel',
@ -137,6 +141,8 @@
<td>{{ log.crMbmbkmsnumber || "-" }}</td>
<td>{{ log.drPcaGlacode || "-" }}</td>
<td>{{ log.crPcaglacode || "-" }}</td>
<td>{{log.transactionUri || "N/A"}}</td>
<td>{{log.transactionCode || "N/A"}}</td>
<td>{{ log.ppmPymdcode }}</td>
<td>
{{ log.sgtGntrdate | date: "MMM dd, yyyy" }}

@ -271,5 +271,7 @@
"SAVED_SUCCESSFULLY" :"Saved Successfully",
"oldAndNewPass":"Old password and new password cannot be the same",
"activityLogs": "Activity Logs",
"activityLogDetails": "Activity Log Details"
"activityLogDetails": "Activity Log Details",
"transactionCode": "Transaction Code",
"transactionUri": "Transaction URI"
}
Loading…
Cancel
Save