- | Batch |
+ Session |
Form Id |
Student Name |
Father Name |
@@ -111,8 +111,9 @@
{{app.course}} / {{app.univ}} |
{{app.sem}} |
- Active
- In-Active
+ {{app.status}}
+
|
{{app.comments}} |
@@ -366,11 +367,12 @@
- | Batch |
+ Session |
Form Id |
Course |
University |
Sem/Year |
+ Action |
@@ -380,6 +382,8 @@
B.Com |
KR Univ |
3 |
+
+ |
| Jul 2017 |
@@ -387,6 +391,10 @@
B.Com |
KR Univ |
2 |
+
+
+
+ |
| Jan 2017 |
@@ -394,6 +402,10 @@
B.Com |
KR Univ |
1 |
+
+
+
+ |
@@ -446,7 +458,7 @@
- | Batch |
+ Session |
Form Id |
Course |
University |
@@ -491,13 +503,14 @@
+
XYZ
@@ -552,6 +565,105 @@
+
+
+
+
+
+
+
+
+ KES08432
+
+
+
+
+ XYZ
+
+
+ UNIV120876
+
+
+
+
+ B.Com
+
+
+ KR Univ
+
+
+
+
+ 3
+
+
+
+ Jan 2018
+
+
+
+
+
+
+ | Subject Code |
+ Subject Name |
+
+
+
+ | SFJK000021 |
+ Subject 1 |
+
+
+ | SFJK000021 |
+ Subject 2 |
+
+
+ | SFJK000021 |
+ Subject 3 |
+
+
+ | SFJK000021 |
+ Subject 4 |
+
+
+ | SFJK000021 |
+ Subject 5 |
+
+
+ | SFJK000021 |
+ Subject 6 |
+
+
+ |
+ |
+
+
+ |
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/views/enrolment/student/student.component.ts b/src/app/views/enrolment/student/student.component.ts
index 842ff4b..de44e15 100644
--- a/src/app/views/enrolment/student/student.component.ts
+++ b/src/app/views/enrolment/student/student.component.ts
@@ -10,6 +10,7 @@ export class StudentComponent implements OnInit {
closed = false;
public myModal;
public myModalData;
+ public myModelReReg;
students: any;
oldReg: boolean = false;
public feesModal;
@@ -23,10 +24,10 @@ export class StudentComponent implements OnInit {
fatherName: 'mmm mmm',
mobile: '+919876543210',
course: 'B.Sc',
- univ: 'KR university',
+ univ: 'KR univ',
sem: 2,
batch: 'Jan 2018',
- status: '1',
+ status: 'Send To Univ',
comments: 'approved by Univ',
feesDetails:[
{
@@ -48,10 +49,10 @@ export class StudentComponent implements OnInit {
fatherName: 'sss sss',
mobile: '+919876511111',
course: 'B.Sc',
- univ: 'KR university',
+ univ: 'KR univ',
sem: 4,
batch: 'Jan 2018',
- status: '1',
+ status: 'Approved by Univ',
comments: 'approved by Univ',
feesDetails:[
{
@@ -73,10 +74,10 @@ export class StudentComponent implements OnInit {
fatherName: 'nnn nnn',
mobile: '+919876500000',
course: 'B.Sc',
- univ: 'KR university',
+ univ: 'KR univ',
sem: 8,
batch: 'Jan 2018',
- status: '0',
+ status: 'rejected by Univ',
comments: 'rejected by Univ',
feesDetails:[
{
|