update
This commit is contained in:
@ -158,11 +158,15 @@ const ApprovalTransactionProvider = ({ children }: { children: React.ReactNode }
|
||||
},
|
||||
{
|
||||
accessorFn: (row) => {
|
||||
|
||||
switch (row.status) {
|
||||
case 'C': return 'COMPLETE';
|
||||
case 'F': return 'FAILED';
|
||||
case 'O': return 'ON PROCESS';
|
||||
default: return 'PENDING';
|
||||
case "P" : return 'PENDING';
|
||||
case 'R': return 'ROLLBACK';
|
||||
case 'S': return 'REVERSAL';
|
||||
default: return 'UNKNOWN';
|
||||
}
|
||||
},
|
||||
id: 'status',
|
||||
|
||||
Reference in New Issue
Block a user