diff --git a/src/app/views/status/answer-booklet/answer-booklet.component.ts b/src/app/views/status/answer-booklet/answer-booklet.component.ts
index 578357e..cb98258 100644
--- a/src/app/views/status/answer-booklet/answer-booklet.component.ts
+++ b/src/app/views/status/answer-booklet/answer-booklet.component.ts
@@ -15,22 +15,34 @@ export class AnswerBookletComponent implements OnInit {
ngOnInit(){
this.applicationDetails = [
{
- entrollemntId: '0001',
+ formId: '0001',
studentName: 'xyz',
+ fatherName: 'SSS',
mobile: '+91 9999999999',
- course: 'B.Com'
+ course: 'B.Com',
+ sem: '2',
+ batch: 'Jun 2017',
+ status: 'Sent to SC'
},
{
- entrollemntId: '0002',
+ formId: '0002',
studentName: 'svs',
+ fatherName: 'MMM',
mobile: '+91 9999911111',
- course: 'BSc'
+ course: 'BSc',
+ sem: '3',
+ batch: 'Jun 2017',
+ status: 'Sent to SC'
},
{
- entrollemntId: '0003',
+ formId: '0003',
studentName: 'pns',
+ fatherName: 'VVV',
mobile: '+91 9999900000',
- course: 'MCA'
+ course: 'MCA',
+ sem: '1',
+ batch: 'Jun 2017',
+ status: 'Sent to SC'
}
]
}
diff --git a/src/app/views/status/courier/courier.component.html b/src/app/views/status/courier/courier.component.html
new file mode 100644
index 0000000..4a460ac
--- /dev/null
+++ b/src/app/views/status/courier/courier.component.html
@@ -0,0 +1,203 @@
+
+
+
+
+
+ Courier Details List
+
+
+
+
+
+
+
+
+ | Courier Name |
+ Docket No. |
+ Type |
+ Comments |
+ Received By/ Dispatched By |
+ Status |
+ Action |
+
+
+
+
+ | {{cour.courierName}} |
+ {{cour.docketNo}} |
+ {{cour.type}} |
+ {{cour.comments}} |
+ {{cour.receiveBy}} |
+ {{cour.status}} |
+
+
+
+ |
+
+
+
+
+
+
+
+
+ Add Courier
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{myModalData.docketNo}}
+
+
+
+
+ {{myModalData.type}}
+
+
+ {{myModalData.comments}}
+
+
+
+
+ {{myModalData.qt}}
+
+
+ {{myModalData.weight}}
+
+
+
+
+ {{myModalData.amt}}
+
+
+ {{myModalData.date}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/views/status/courier/courier.component.scss b/src/app/views/status/courier/courier.component.scss
new file mode 100644
index 0000000..ec8889d
--- /dev/null
+++ b/src/app/views/status/courier/courier.component.scss
@@ -0,0 +1 @@
+//courier
\ No newline at end of file
diff --git a/src/app/views/status/courier/courier.component.ts b/src/app/views/status/courier/courier.component.ts
new file mode 100644
index 0000000..50c19bd
--- /dev/null
+++ b/src/app/views/status/courier/courier.component.ts
@@ -0,0 +1,63 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ templateUrl: 'courier.component.html',
+ styleUrls: ['./courier.component.scss']
+})
+
+export class CourierComponent implements OnInit {
+ show = false;
+ closed = false;
+ public myModal;
+ public myModalData;
+ courier: any;
+ constructor() { }
+ ngOnInit(){
+ this.courier = [
+ {
+ courierName: 'Documents',
+ docketNo: '234dsf',
+ type: 'Received',
+ comments: 'Documents Details',
+ receiveBy: 'sss',
+ status: 'sent',
+ date: '20/07/2018',
+ qt: 120,
+ weight: '12kgm',
+ amt : 120
+ },
+ {
+ courierName: 'Answer Booklets',
+ docketNo: '43526345',
+ type: 'Dispatched',
+ comments: 'answer booklets details',
+ receiveBy: 'asd',
+ status: 'received by SC',
+ date: '28/06/2018',
+ qt: 120,
+ weight: '12kgm',
+ amt : 120
+ },
+ {
+ courierName: 'Forms',
+ docketNo: '8855435',
+ type: 'Dispatched',
+ comments: 'details',
+ receiveBy: 'abc',
+ status: 'Sent by SC',
+ date: '12/06/2018',
+ qt: 120,
+ weight: '12kgm',
+ amt : 120
+ }
+ ]
+ }
+
+ getModelWindowDetails(stuCent) {
+ this.myModalData = stuCent||null;
+ }
+ editDocuments(){
+ this.show = !this.show;
+ }
+
+}
diff --git a/src/app/views/status/documents/documents.component.html b/src/app/views/status/documents/documents.component.html
index a50271d..6852a80 100644
--- a/src/app/views/status/documents/documents.component.html
+++ b/src/app/views/status/documents/documents.component.html
@@ -24,7 +24,7 @@