Admission Status Label
unknown
typescript
3 years ago
1.7 kB
13
Indexable
export const statusLabel = [
{
status: 'unknown',
label: 'Unknown',
step: 'Unknown',
},
{
status: 'registration_unfilled',
label: 'Have not filled the registration form yet',
step: 'Registration',
},
{
status: 'payment_registration_waiting',
label: 'Waiting for registration form payment',
step: 'Registration Payment',
},
{
status: 'payment_registration_confirmation_waiting',
label: 'Waiting for registration form payment confirmation',
step: 'Registration Payment',
},
{
status: 'test_schedule_none',
label: 'Test schedule has not been created',
step: 'Test Schedule',
},
{
status: 'test_schedule_waiting',
label: 'Waiting for test schedule',
step: 'Test Schedule',
},
{
status: 'test_result_waiting',
label: 'Waiting for test result',
step: 'Test Result',
},
{
status: 'test_result_failed',
label: 'Test failed',
step: 'Test Result',
},
{
status: 'payment_final_waiting',
label: 'Waiting for final payment',
step: 'Final Payment',
},
{
status: 'payment_final_confirmation_waiting',
label: 'Waiting for final payment confirmation',
step: 'Final Payment',
},
{
status: 'nis_waiting',
label: 'Waiting for Generate NIS',
step: 'Completed',
},
{
status: 'nis_complete',
label: 'NIS Complete',
step: 'Completed',
},
{
status: 'completed',
label: 'Completed',
step: 'Completed',
},
{
status: 'canceled',
label: 'Canceled',
step: 'Canceled',
},
{
status: 'deleted',
label: 'Deleted',
step: 'Canceled',
}
];Editor is loading...