- | Batch |
+ Session |
Form Id |
Student Name |
Father Name |
@@ -94,8 +94,9 @@
{{app.course}} / {{app.univ}} |
{{app.sem}} |
- Active
- In-Active
+ {{app.status}}
+
|
{{app.comments}} |
@@ -107,7 +108,7 @@
|
- |
+ |
|
@@ -356,11 +357,12 @@
- | Batch |
+ Session |
Form Id |
Course |
University |
Sem/Year |
+ Action |
@@ -370,6 +372,10 @@
B.Com |
KR Univ |
3 |
+
+
+
+ |
| Jul 2017 |
@@ -377,6 +383,10 @@
B.Com |
KR Univ |
2 |
+
+
+
+ |
| Jan 2017 |
@@ -384,6 +394,10 @@
B.Com |
KR Univ |
1 |
+
+
+
+ |
@@ -436,7 +450,7 @@
- | Batch |
+ Session |
Form Id |
Course |
University |
@@ -540,6 +554,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 6ee88e4..af754d7 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;
public modelType: string;
students: any;
oldReg: boolean = false;
@@ -23,10 +24,10 @@ export class StudentComponent implements OnInit {
studentName: 'xyz',
fatherName: 'mmm mmm',
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:[
{
@@ -47,10 +48,10 @@ export class StudentComponent implements OnInit {
studentName: 'abc',
fatherName: 'sss sss',
course: 'B.Sc',
- univ: 'KR university',
+ univ: 'KR univ',
sem: 4,
batch: 'Jan 2018',
- status: '1',
+ status: 'Send To Univ',
comments: 'approved by Univ',
feesDetails:[
{
@@ -71,10 +72,10 @@ export class StudentComponent implements OnInit {
studentName: 'uvw',
fatherName: 'nnn nnn',
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:[
{
|