101 lines
2.0 KiB
TypeScript
101 lines
2.0 KiB
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-status-master',
|
|
templateUrl: './status-master.component.html',
|
|
styleUrls: ['./status-master.component.scss']
|
|
})
|
|
export class StatusMasterComponent implements OnInit {
|
|
bookStatus: any;
|
|
courierStatus: any;
|
|
feesStatus: any;
|
|
formStatus: any;
|
|
markCardStatus: any;
|
|
studyMaterialStatus: any;
|
|
documentStatus: any;
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
this.bookStatus = [
|
|
{
|
|
statusName: 'Sent to SC ',
|
|
type: 'Answer Booklet',
|
|
status: 'Active'
|
|
},
|
|
{
|
|
statusName: 'Received by SC ',
|
|
type: 'Answer Booklet',
|
|
status: 'Active'
|
|
},
|
|
]
|
|
this.courierStatus = [
|
|
{
|
|
statusName: 'Sent by SC',
|
|
type: 'Courier',
|
|
status: 'Active'
|
|
},
|
|
{
|
|
statusName: 'Received by Apollo',
|
|
type: 'Courier',
|
|
status: 'Active'
|
|
},
|
|
]
|
|
this.documentStatus = [
|
|
{
|
|
statusName: 'Sent to SC ',
|
|
type: 'Document',
|
|
status: 'Active'
|
|
},
|
|
{
|
|
statusName: 'Received by SC',
|
|
type: 'Document',
|
|
status: 'Active'
|
|
},
|
|
]
|
|
this.feesStatus = [
|
|
{
|
|
statusName: 'Paid',
|
|
type: 'Fees',
|
|
status: 'Active'
|
|
},
|
|
{
|
|
statusName: 'Refund',
|
|
type: 'Fees',
|
|
status: 'Active'
|
|
},
|
|
]
|
|
this.formStatus = [
|
|
{
|
|
statusName: 'Sent to Apollo ',
|
|
type: 'Form',
|
|
status: 'Active'
|
|
},
|
|
]
|
|
this.markCardStatus = [
|
|
{
|
|
statusName: 'Sent to SC ',
|
|
type: 'Mark Card',
|
|
status: 'Active'
|
|
},
|
|
{
|
|
statusName: 'Received by SC ',
|
|
type: 'Mark Card',
|
|
status: 'Active'
|
|
},
|
|
]
|
|
this.studyMaterialStatus = [
|
|
{
|
|
statusName: 'Received',
|
|
type: 'Study Material',
|
|
status: 'Active'
|
|
},
|
|
{
|
|
statusName: 'Pending',
|
|
type: 'Study Material',
|
|
status: 'Active'
|
|
},
|
|
]
|
|
}
|
|
|
|
}
|