Blame view

imports/constants/constants.js 3.46 KB
102b779c9   satheesh   [#0001]-Student_csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  export default class Constants{
  
  csv_students_data() {
       // Constants Fields required to Export Valid CSV
       var csv_students_fields =['Errors',
                                'Student Admission ID*',
                                'Enrollment Date(YYYY-MM-DD)*',
                                'First Name*',
                                'Last Name*',
                                'Gender(male/female)*',
                                'Birthday(YYYY-MM-DD)*',
                                'Blood Group*',
                                'Nationality*',
                                'Mother Tongue*',
                                'Religion*',
167dd6325   satheesh   [#004]-Revised Sc...
16
                                'community*',
102b779c9   satheesh   [#0001]-Student_csv
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
                                'Student Roll*',
                                'Student Class Name*',
                                'Student Section Name*',
                                'Previous Institution Name',
                                'Class-From',
                                'Class-To',
                                'From-Year',
                                'To-Year',
                                'Student Line Adress*',
                                'Student City*',
                                'Student State*',
                                'Student Zip Code*',
                                'Parent Name*',
                                'Parent Email*',
                                'Parent Relation*',
                                'Parent Profession',
                                'Parent Mobile*',                        
                                ];
97d8d6ce8   satheesh   [#0002]
35
      return csv_students_fields;
102b779c9   satheesh   [#0001]-Student_csv
36
37
38
39
    };
  
    csv_staff_data() {
       // Constants Fields required to Export Valid CSV
167dd6325   satheesh   [#004]-Revised Sc...
40
41
  	   var csv_staffs_fields = [  'Errors',
  								  'Employee ID*',
102b779c9   satheesh   [#0001]-Student_csv
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  	                              'First Name*',
  	                              'Last Name*',
  	                              'Gender(male/female)*',
  	                              'Marital Status(married/unmarried)*',
  	                              'Staff Email*','Staff Phone*',
  	                              'Staff Birthday(YYYY-MM-DD)*',
  	                              'Blood group*',
  	                              'Nationality*',
  	                              'Mother Tongue*',
  	                              'Religion*',
  	                              'Staff Line Address*',
  	                              'City*',
  	                              'State*',
  	                              'Zip*',
  	                              'Job Role*',
  	                              'Teaching Staff(yes/no)*',
  	                              'Job Type(permanent/contract)*',
  	                              'Date of joining(YYYY-MM-DD)*',
  	                              'Qualification*',
  	                              'University*',
  	                              'Specialization*',
  	                              'From*',
  	                              'To*',
167dd6325   satheesh   [#004]-Revised Sc...
65
66
67
68
69
70
71
72
  	                              'Bank Account No',
  	                              'Bank IFSC',
  	                              'Bank Branch Details',
  	                              'Previous job Role',
  	                              'Previous Job Type',
  	                              'Previous Organization',
  	                              'From',
  	                              'To',
102b779c9   satheesh   [#0001]-Student_csv
73
74
75
76
77
  	                              'PAN Number',
  	                              'ESI Number',
  	                              'Aadhar Number',
  	                              'PF Number'
  	                            ]
167dd6325   satheesh   [#004]-Revised Sc...
78

102b779c9   satheesh   [#0001]-Student_csv
79
80
81
82
       return csv_staffs_fields;
    };
  
  }