From 76c20a9e2c1d06588abdca2fbdb51fe28f72a20d Mon Sep 17 00:00:00 2001 From: dineshkumarkannan Date: Wed, 1 Aug 2018 16:01:44 +0530 Subject: [PATCH 1/5] routing changes : kdk --- src/app/app.module.ts | 8 +- src/app/app.routing.ts | 8 +- .../app-sidebar/app-sidebar.component.html | 2 +- .../app-sidebar/app-sidebar.component.ts | 39 ++-- .../views/courier/courier-routing.module.ts | 19 ++ src/app/views/courier/courier.module.ts | 27 +++ .../courier/courier/courier.component.html | 203 ++++++++++++++++++ .../courier/courier.component.scss} | 0 .../courier/courier/courier.component.ts | 63 ++++++ .../enrolment-routing.module.ts} | 21 +- .../enrolment.module.ts} | 6 +- .../student/student.component.html | 2 +- .../enrolment/student/student.component.scss | 0 .../student/student.component.ts | 0 src/app/views/status/status-routing.module.ts | 27 +-- src/app/views/status/status.module.ts | 9 +- .../study-material.component.html | 152 +++++++++++++ .../study-material.component.ts | 50 +++++ .../studymaterial-routing.module.ts | 10 +- .../studymaterial/studymaterial.module.ts | 4 +- 20 files changed, 570 insertions(+), 80 deletions(-) create mode 100644 src/app/views/courier/courier-routing.module.ts create mode 100644 src/app/views/courier/courier.module.ts create mode 100644 src/app/views/courier/courier/courier.component.html rename src/app/views/{entrollment/student/student.component.scss => courier/courier/courier.component.scss} (100%) create mode 100644 src/app/views/courier/courier/courier.component.ts rename src/app/views/{entrollment/entrollment-routing.module.ts => enrolment/enrolment-routing.module.ts} (54%) rename src/app/views/{entrollment/entrollment.module.ts => enrolment/enrolment.module.ts} (81%) rename src/app/views/{entrollment => enrolment}/student/student.component.html (99%) create mode 100644 src/app/views/enrolment/student/student.component.scss rename src/app/views/{entrollment => enrolment}/student/student.component.ts (100%) create mode 100644 src/app/views/studymaterial/study-material/study-material.component.html create mode 100644 src/app/views/studymaterial/study-material/study-material.component.ts diff --git a/src/app/app.module.ts b/src/app/app.module.ts index f4cd3d9..ce2a5af 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -7,8 +7,9 @@ import { HttpClientModule } from '@angular/common/http'; import { LocationStrategy, HashLocationStrategy } from '@angular/common'; import { StatusModule } from './views/status/status.module'; -import { EntrollmentModule } from './views/entrollment/entrollment.module'; +import { EnrolmentModule } from './views/enrolment/enrolment.module'; import { StudymaterialModule } from './views/studymaterial/studymaterial.module'; +import { CourierModule } from './views/courier/courier.module'; import { AppComponent } from './app.component'; @@ -75,8 +76,9 @@ import { ChartsModule } from 'ng2-charts/ng2-charts'; TooltipModule.forRoot(), ChartsModule, StatusModule, - EntrollmentModule, - StudymaterialModule + EnrolmentModule, + StudymaterialModule, + CourierModule ], declarations: [ AppComponent, diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index fc5e2b1..ace28d4 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -49,12 +49,16 @@ export const routes: Routes = [ loadChildren: './views/status/status.module#StatusModule' }, { - path: 'entrollment', - loadChildren: './views/entrollment/entrollment.module#EntrollmentModule' + path: 'enrolment', + loadChildren: './views/enrolment/enrolment.module#EnrolmentModule' }, { path: 'studymaterial', loadChildren: './views/studymaterial/studymaterial.module#StudymaterialModule' + }, + { + path: 'courier', + loadChildren: './views/courier/courier.module#CourierModule' } ] }, diff --git a/src/app/components/app-sidebar/app-sidebar.component.html b/src/app/components/app-sidebar/app-sidebar.component.html index 2c1f853..5fa20f2 100644 --- a/src/app/components/app-sidebar/app-sidebar.component.html +++ b/src/app/components/app-sidebar/app-sidebar.component.html @@ -8,7 +8,7 @@ {{nav.name}} diff --git a/src/app/components/app-sidebar/app-sidebar.component.ts b/src/app/components/app-sidebar/app-sidebar.component.ts index 2b65cf8..5c51bef 100644 --- a/src/app/components/app-sidebar/app-sidebar.component.ts +++ b/src/app/components/app-sidebar/app-sidebar.component.ts @@ -80,31 +80,21 @@ export class AppSidebar { url: '/masters/FormMaster', icon: 'fa fa-language' }, - { name: 'Exam Timetable', url: '/masters/ExamTimetable', icon: 'fa fa-language' } ] + },{ + name: 'Student Enrolment', + icon: 'fa fa-graduation-cap', + url : '/enrolment' },{ name: 'Status', icon: 'fa fa-tasks', children: [ { - name: 'Application', - url: '/status/application', - icon: 'fa fa-sticky-note' - }, - { - name: 'Courier', - url: '/status/courier', - icon: 'fa fa-suitcase' - },{ - name: 'Study Material', - url: '/status/studyMaterial', - icon: 'fa fa-square-o' - },{ name: 'Answer Booklet', url: '/status/answerBooklet', icon: 'fa fa-file-word-o' @@ -113,22 +103,12 @@ export class AppSidebar { url: '/status/documents', icon: 'fa fa-file-pdf-o' }, - { + { name: 'PaymentDetails', url: '/status/paymentdetails', icon: 'fa fa-user-secret' } ] - },{ - name: 'Entrollment', - icon: 'fa fa-graduation-cap', - children: [ - { - name: 'Student Entrollment', - url: '/entrollment/student', - icon: 'fa fa-user' - } - ] },{ name: 'Study Material', icon: 'fa fa-gear', @@ -142,8 +122,17 @@ export class AppSidebar { name: 'AllocateMaterial', url: '/studymaterial/allocatematerial', icon: 'fa fa-user-secret' + }, + { + name: 'Study Material Status', + url: '/studymaterial/studyMaterialStatus', + icon: 'fa fa-square-o' } ] + },{ + name: 'Courier', + icon: 'fa fa-suitcase', + url : '/courier' } ]; } diff --git a/src/app/views/courier/courier-routing.module.ts b/src/app/views/courier/courier-routing.module.ts new file mode 100644 index 0000000..62f0e66 --- /dev/null +++ b/src/app/views/courier/courier-routing.module.ts @@ -0,0 +1,19 @@ +import { NgModule } from '@angular/core'; +import { Routes, RouterModule } from '@angular/router'; +// Courier +import { CourierComponent } from './courier/courier.component'; +const routes: Routes = [ + { + path: '', + component: CourierComponent, + data: { + title: 'Courier' + } + } +]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule] +}) +export class CourierRoutingModule {} diff --git a/src/app/views/courier/courier.module.ts b/src/app/views/courier/courier.module.ts new file mode 100644 index 0000000..b199f48 --- /dev/null +++ b/src/app/views/courier/courier.module.ts @@ -0,0 +1,27 @@ +import { NgModule } from '@angular/core'; +import {CommonModule} from '@angular/common'; +import { FormsModule } from '@angular/forms'; +// import { BrowserModule } from '@angular/platform-browser'; +// Tabs Component +import { TabsModule } from 'ngx-bootstrap/tabs'; +import { TooltipModule } from 'ngx-bootstrap/tooltip'; +import { ModalModule } from 'ngx-bootstrap/modal'; + +import { CourierRoutingModule } from './courier-routing.module'; + +// Courier +import { CourierComponent } from './courier/courier.component'; +@NgModule({ + imports: [ + CommonModule, + FormsModule, + TabsModule, + ModalModule.forRoot(), + TooltipModule, + CourierRoutingModule + ], + declarations: [ + CourierComponent + ] +}) +export class CourierModule { } diff --git a/src/app/views/courier/courier/courier.component.html b/src/app/views/courier/courier/courier.component.html new file mode 100644 index 0000000..4a460ac --- /dev/null +++ b/src/app/views/courier/courier/courier.component.html @@ -0,0 +1,203 @@ + + +
+ + + Courier Details List +
+
+ Courier Details List +
+
+
+
+
+ + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Courier NameDocket No.TypeCommentsReceived By/ Dispatched ByStatusAction
{{cour.courierName}}{{cour.docketNo}}{{cour.type}}{{cour.comments}}{{cour.receiveBy}}{{cour.status}} + + +
+ +
+
+
+ + Add Courier +
+
+
+
+
+ Add Courier Details +
+
+
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
+
+
+
+
+
+
+ + + + \ No newline at end of file diff --git a/src/app/views/entrollment/student/student.component.scss b/src/app/views/courier/courier/courier.component.scss similarity index 100% rename from src/app/views/entrollment/student/student.component.scss rename to src/app/views/courier/courier/courier.component.scss diff --git a/src/app/views/courier/courier/courier.component.ts b/src/app/views/courier/courier/courier.component.ts new file mode 100644 index 0000000..50c19bd --- /dev/null +++ b/src/app/views/courier/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/entrollment/entrollment-routing.module.ts b/src/app/views/enrolment/enrolment-routing.module.ts similarity index 54% rename from src/app/views/entrollment/entrollment-routing.module.ts rename to src/app/views/enrolment/enrolment-routing.module.ts index 56c0f45..b3f31a0 100644 --- a/src/app/views/entrollment/entrollment-routing.module.ts +++ b/src/app/views/enrolment/enrolment-routing.module.ts @@ -6,16 +6,17 @@ import { StudentComponent } from './student/student.component'; const routes: Routes = [ { path: '', + component: StudentComponent, data: { - title: 'Entrollment' - }, - children: [{ - path: 'student', - component: StudentComponent, - data : { - title: 'Student Entollement' - } - }] + title: 'Student Enrolment' + } + // children: [{ + // path: 'student', + // component: StudentComponent, + // data : { + // title: 'Student Enrolment' + // } + // }] } ]; @@ -23,4 +24,4 @@ const routes: Routes = [ imports: [RouterModule.forChild(routes)], exports: [RouterModule] }) -export class EntrollmentRoutingModule {} +export class EnrolmentRoutingModule {} diff --git a/src/app/views/entrollment/entrollment.module.ts b/src/app/views/enrolment/enrolment.module.ts similarity index 81% rename from src/app/views/entrollment/entrollment.module.ts rename to src/app/views/enrolment/enrolment.module.ts index 83976cd..dc81123 100644 --- a/src/app/views/entrollment/entrollment.module.ts +++ b/src/app/views/enrolment/enrolment.module.ts @@ -7,7 +7,7 @@ import { TabsModule } from 'ngx-bootstrap/tabs'; import { TooltipModule } from 'ngx-bootstrap/tooltip'; import { ModalModule } from 'ngx-bootstrap/modal'; -import { EntrollmentRoutingModule } from './entrollment-routing.module'; +import { EnrolmentRoutingModule } from './enrolment-routing.module'; // Student import { StudentComponent } from './student/student.component'; @@ -18,10 +18,10 @@ import { StudentComponent } from './student/student.component'; TabsModule, ModalModule.forRoot(), TooltipModule, - EntrollmentRoutingModule + EnrolmentRoutingModule ], declarations: [ StudentComponent ] }) -export class EntrollmentModule { } +export class EnrolmentModule { } diff --git a/src/app/views/entrollment/student/student.component.html b/src/app/views/enrolment/student/student.component.html similarity index 99% rename from src/app/views/entrollment/student/student.component.html rename to src/app/views/enrolment/student/student.component.html index 59aca34..c954de0 100644 --- a/src/app/views/entrollment/student/student.component.html +++ b/src/app/views/enrolment/student/student.component.html @@ -4,7 +4,7 @@
- Student Entrollment + Student Enrolment
diff --git a/src/app/views/enrolment/student/student.component.scss b/src/app/views/enrolment/student/student.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/views/entrollment/student/student.component.ts b/src/app/views/enrolment/student/student.component.ts similarity index 100% rename from src/app/views/entrollment/student/student.component.ts rename to src/app/views/enrolment/student/student.component.ts diff --git a/src/app/views/status/status-routing.module.ts b/src/app/views/status/status-routing.module.ts index 09d2c18..e397809 100644 --- a/src/app/views/status/status-routing.module.ts +++ b/src/app/views/status/status-routing.module.ts @@ -1,11 +1,8 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; -import { ApplicationComponent } from './application/application.component'; -import { StudyMaterialComponent } from './study-material/study-material.component'; import { DocumentsComponent } from './documents/documents.component'; import { AnswerBookletComponent } from './answer-booklet/answer-booklet.component'; -import { CourierComponent } from './courier/courier.component'; import { PaymentdetailsComponent } from './paymentdetails/paymentdetails.component'; const routes: Routes = [ @@ -14,26 +11,7 @@ const routes: Routes = [ data: { title: 'Status' }, - children: [ - { - path: 'application', - component: ApplicationComponent, - data: { - title: 'Application' - } - },{ - path: 'courier', - component: CourierComponent, - data: { - title: 'Couriers' - } - },{ - path: 'studyMaterial', - component: StudyMaterialComponent, - data: { - title: 'Study Material' - } - },{ + children: [{ path: 'answerBooklet', component: AnswerBookletComponent, data: { @@ -45,8 +23,7 @@ const routes: Routes = [ data: { title: 'Documents' } - } - ,{ + },{ path: 'paymentdetails', component: PaymentdetailsComponent, data: { diff --git a/src/app/views/status/status.module.ts b/src/app/views/status/status.module.ts index 1338b38..34c8ca5 100644 --- a/src/app/views/status/status.module.ts +++ b/src/app/views/status/status.module.ts @@ -9,17 +9,13 @@ import { ModalModule } from 'ngx-bootstrap/modal'; import { StatusRoutingModule } from './status-routing.module'; //application -import { ApplicationComponent } from './application/application.component'; -//study material -import { StudyMaterialComponent } from './study-material/study-material.component'; +// import { ApplicationComponent } from './application/application.component'; //documents import { DocumentsComponent } from './documents/documents.component'; import { EditDocumentsComponent } from './documents/edit-documents/edit-documents.component'; //answer-booklet import { AnswerBookletComponent } from './answer-booklet/answer-booklet.component'; import { EditAnswerBookletComponent } from './answer-booklet/edit-answer-booklet/edit-answer-booklet.component'; -//courier -import { CourierComponent } from './courier/courier.component'; //paymentdetails import { PaymentdetailsComponent } from './paymentdetails/paymentdetails.component'; @@ -33,13 +29,10 @@ import { PaymentdetailsComponent } from './paymentdetails/paymentdetails.compone StatusRoutingModule ], declarations: [ - ApplicationComponent, - StudyMaterialComponent, DocumentsComponent, EditDocumentsComponent, AnswerBookletComponent, EditAnswerBookletComponent, - CourierComponent, PaymentdetailsComponent ] }) diff --git a/src/app/views/studymaterial/study-material/study-material.component.html b/src/app/views/studymaterial/study-material/study-material.component.html new file mode 100644 index 0000000..3e39fd6 --- /dev/null +++ b/src/app/views/studymaterial/study-material/study-material.component.html @@ -0,0 +1,152 @@ +
+ + + Study Material Status +
+
+
+ + +
+
+
+
+
+ Study Matrial Status List +
+
+
+
+
+ + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
IDStudy Material DetailsUniversityCourseTotalStatusAction
{{app.applicationId}}{{app.details}}{{app.univ}}{{app.course}}{{app.total}} + Received + Sent + + + +
+ +
+
+
+
+
+ + + + \ No newline at end of file diff --git a/src/app/views/studymaterial/study-material/study-material.component.ts b/src/app/views/studymaterial/study-material/study-material.component.ts new file mode 100644 index 0000000..7ff1f5d --- /dev/null +++ b/src/app/views/studymaterial/study-material/study-material.component.ts @@ -0,0 +1,50 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + templateUrl: 'study-material.component.html' +}) + +export class StudyMaterialComponent implements OnInit { + show = false; + closed = false; + public myModal; + public myModalData; + studyMaterialDetails: any; + constructor() { } + ngOnInit(){ + this.studyMaterialDetails = [ + { + applicationId: '1', + details: 'xyz', + univ: 'kr university', + course: 'B.com', + total: '12', + status: '1' + }, + { + applicationId: '2', + details: 'xyz', + univ: 'kr university', + course: 'B.Sc', + total: '12', + status: '1' + }, + { + applicationId: '3', + details: 'xyz', + univ: 'kr university', + course: 'MCA', + total: '12', + status: '0' + } + ] + } + + getModelWindowDetails(stuCent) { + this.myModalData = stuCent||null; + } + editStudyCenter(){ + this.show = !this.show; + } + +} diff --git a/src/app/views/studymaterial/studymaterial-routing.module.ts b/src/app/views/studymaterial/studymaterial-routing.module.ts index 53f7fe8..afa5d60 100644 --- a/src/app/views/studymaterial/studymaterial-routing.module.ts +++ b/src/app/views/studymaterial/studymaterial-routing.module.ts @@ -2,12 +2,13 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { ReceivedmaterialComponent } from './receivedmaterial/receivedmaterial.component'; import { AllocatematerialComponent } from './allocatematerial/allocatematerial.component'; +import { StudyMaterialComponent } from './study-material/study-material.component'; const routes: Routes = [ { path: '', data: { - title: 'Studymaterial' + title: 'Study Material' }, children: [ { @@ -23,6 +24,13 @@ const routes: Routes = [ data: { title: 'AllocateMaterial' } + }, + { + path: 'studyMaterialStatus', + component: StudyMaterialComponent, + data: { + title: 'Study Material Status' + } } ] }]; diff --git a/src/app/views/studymaterial/studymaterial.module.ts b/src/app/views/studymaterial/studymaterial.module.ts index 6db115d..b706e6a 100644 --- a/src/app/views/studymaterial/studymaterial.module.ts +++ b/src/app/views/studymaterial/studymaterial.module.ts @@ -10,6 +10,7 @@ import { ModalModule } from 'ngx-bootstrap/modal'; import { StudymaterialRoutingModule } from './studymaterial-routing.module'; import { ReceivedmaterialComponent } from './receivedmaterial/receivedmaterial.component'; import { AllocatematerialComponent } from './allocatematerial/allocatematerial.component'; +import { StudyMaterialComponent } from './study-material/study-material.component'; @NgModule({ imports: [ @@ -20,6 +21,7 @@ import { AllocatematerialComponent } from './allocatematerial/allocatematerial.c TabsModule, StudymaterialRoutingModule ], - declarations: [ReceivedmaterialComponent, AllocatematerialComponent] + declarations: [ReceivedmaterialComponent, AllocatematerialComponent, + StudyMaterialComponent] }) export class StudymaterialModule { } From d7d26472c31995aafa60ddea1fa2888bf90612fb Mon Sep 17 00:00:00 2001 From: dineshkumarkannan Date: Wed, 1 Aug 2018 16:08:43 +0530 Subject: [PATCH 2/5] nav name changes --- src/app/components/app-sidebar/app-sidebar.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/app-sidebar/app-sidebar.component.ts b/src/app/components/app-sidebar/app-sidebar.component.ts index 4c89d61..6691bce 100644 --- a/src/app/components/app-sidebar/app-sidebar.component.ts +++ b/src/app/components/app-sidebar/app-sidebar.component.ts @@ -66,7 +66,7 @@ export class AppSidebar { icon: 'fa fa-book' }, { - name: 'Share Allocate', + name: 'Allocate Fees', url: '/masters/shareallotmentmaster', icon: 'fa fa-adjust' }, From 41c7e0090c803ef831f7fc377131597cef552eac Mon Sep 17 00:00:00 2001 From: gayathri1990 Date: Wed, 1 Aug 2018 16:39:29 +0530 Subject: [PATCH 3/5] studymaterial --- .../app-sidebar/app-sidebar.component.ts | 5 -- .../allocatematerial.component.html | 52 ++++++++++--------- .../receivedmaterial.component.html | 37 ++++++------- 3 files changed, 43 insertions(+), 51 deletions(-) diff --git a/src/app/components/app-sidebar/app-sidebar.component.ts b/src/app/components/app-sidebar/app-sidebar.component.ts index 6691bce..0e74865 100644 --- a/src/app/components/app-sidebar/app-sidebar.component.ts +++ b/src/app/components/app-sidebar/app-sidebar.component.ts @@ -138,11 +138,6 @@ export class AppSidebar { name: 'AllocateMaterial', url: '/studymaterial/allocatematerial', icon: 'fa fa-user-secret' - }, - { - name: 'Study Material Status', - url: '/studymaterial/studyMaterialStatus', - icon: 'fa fa-square-o' } ] },{ diff --git a/src/app/views/studymaterial/allocatematerial/allocatematerial.component.html b/src/app/views/studymaterial/allocatematerial/allocatematerial.component.html index 310c329..b85d23b 100644 --- a/src/app/views/studymaterial/allocatematerial/allocatematerial.component.html +++ b/src/app/views/studymaterial/allocatematerial/allocatematerial.component.html @@ -35,10 +35,10 @@
@@ -67,7 +67,7 @@ Study Center Name - Batch Name + Sem/Year Course Name Quantity Status @@ -78,7 +78,7 @@ Center A - Batch A + 1st Sem / 2018 MCA 10 @@ -88,7 +88,7 @@ Center B - Batch B + 2nd Sem / 2018 MBA 15 @@ -98,7 +98,7 @@ Center C - Batch C + 3rd Sem / 2019 BE 20 @@ -108,7 +108,7 @@ Center D - Batch D + 4th Sem / 2019 DE 34 @@ -148,10 +148,10 @@
@@ -169,10 +169,10 @@
@@ -209,10 +209,10 @@ Select Study Center Name - Batch Name + Sem/Year Course Name - - Request Quantity + Register Forms + Paid Forms Allocate Quantity @@ -225,6 +225,7 @@ MCA 10 + 10 @@ -233,8 +234,8 @@ Center B Batch B MBA - - 15 + 15 + 15 @@ -243,9 +244,9 @@ Center C Batch C BE - - 20 - + 20 + 18 + @@ -255,6 +256,7 @@ DE 34 + 34 diff --git a/src/app/views/studymaterial/receivedmaterial/receivedmaterial.component.html b/src/app/views/studymaterial/receivedmaterial/receivedmaterial.component.html index e3ac12c..a27defa 100644 --- a/src/app/views/studymaterial/receivedmaterial/receivedmaterial.component.html +++ b/src/app/views/studymaterial/receivedmaterial/receivedmaterial.component.html @@ -36,10 +36,10 @@
@@ -69,7 +69,7 @@ University Name Course Name - Courier No + Sem/Year Quantity Received Date @@ -78,28 +78,28 @@ Anna University MCA - 1A + 1st Sem 10 10/10/2018 Bharathi University MBA - 1B + 2nd Sem 15 15/10/2018 Thiruvalluvar University BE - 1C + 3rd Sem 20 10/11/2018 Kamaraj University DE - 1D + 4th sem 34 12/11/2018 @@ -170,25 +170,20 @@
-
- - -
+ -
- -
+
-
-
-
- -
+ +
+
+ +
+
+ + +
- +
- - + +
+    + +
-
- - +
+ + +
+ +
-
+
+
+ + +
- +
-
- - -
diff --git a/src/app/views/courier/courier/courier.component.ts b/src/app/views/courier/courier/courier.component.ts index 50c19bd..d27058b 100644 --- a/src/app/views/courier/courier/courier.component.ts +++ b/src/app/views/courier/courier/courier.component.ts @@ -20,6 +20,7 @@ export class CourierComponent implements OnInit { type: 'Received', comments: 'Documents Details', receiveBy: 'sss', + sendTo: 'KR Univ', status: 'sent', date: '20/07/2018', qt: 120, @@ -32,6 +33,7 @@ export class CourierComponent implements OnInit { type: 'Dispatched', comments: 'answer booklets details', receiveBy: 'asd', + sendTo: 'SC 2', status: 'received by SC', date: '28/06/2018', qt: 120, @@ -44,6 +46,7 @@ export class CourierComponent implements OnInit { type: 'Dispatched', comments: 'details', receiveBy: 'abc', + sendTo: 'SC 1', status: 'Sent by SC', date: '12/06/2018', qt: 120, diff --git a/src/app/views/enrolment/student/student.component.html b/src/app/views/enrolment/student/student.component.html index c954de0..ea47bb9 100644 --- a/src/app/views/enrolment/student/student.component.html +++ b/src/app/views/enrolment/student/student.component.html @@ -93,7 +93,7 @@ Student Name Father Name Mobile - Course + Course/University Sem/Year Batch Status @@ -106,13 +106,13 @@ {{app.studentName}} {{app.fatherName}} {{app.mobile}} - {{app.course}} + {{app.course}} / {{app.univ}} {{app.sem}} {{app.batch}} Active In-Active - + @@ -136,14 +136,14 @@ Add Student
- - +

- Add Student Personal Details + Personal Details
@@ -156,6 +156,18 @@
+
+ + +
+ + +
+
@@ -186,16 +198,7 @@
-
- - - - -
+
@@ -208,12 +211,13 @@
- +
- + + Same as Permanent Address
@@ -223,7 +227,7 @@
- Add Course Details + Course Details
@@ -287,7 +291,11 @@
-
+ + + + Re-registertion +
Re-registration diff --git a/src/app/views/enrolment/student/student.component.ts b/src/app/views/enrolment/student/student.component.ts index 0958466..4885938 100644 --- a/src/app/views/enrolment/student/student.component.ts +++ b/src/app/views/enrolment/student/student.component.ts @@ -21,6 +21,7 @@ export class StudentComponent implements OnInit { fatherName: 'mmm mmm', mobile: '+919876543210', course: 'B.Sc', + univ: 'KR university', sem: 2, batch: 'Jan 2018', status: '1' @@ -31,6 +32,7 @@ export class StudentComponent implements OnInit { fatherName: 'sss sss', mobile: '+919876511111', course: 'B.Sc', + univ: 'KR university', sem: 4, batch: 'Jan 2018', status: '1' @@ -41,6 +43,7 @@ export class StudentComponent implements OnInit { fatherName: 'nnn nnn', mobile: '+919876500000', course: 'B.Sc', + univ: 'KR university', sem: 8, batch: 'Jan 2018', status: '0' diff --git a/src/app/views/masters/form-list/form-list.component.html b/src/app/views/masters/form-list/form-list.component.html index d61f9e6..fed3447 100644 --- a/src/app/views/masters/form-list/form-list.component.html +++ b/src/app/views/masters/form-list/form-list.component.html @@ -23,6 +23,7 @@ From Name From Type + Course / University Description Status Action @@ -32,6 +33,7 @@ {{form.formName}} {{form.formType}} + {{form.course}} / {{form.univ}} {{form.description}} Active @@ -78,17 +80,39 @@
+
+ + + +
+
+
+
+ + + +
-
-
Upload Form :
-
+
+
+
Active/De-Active :