diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index fc5e2b1..cfd9c28 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -70,6 +70,10 @@ export const routes: Routes = [ loadChildren: './views/pages/pages.module#PagesModule', } ] + }, + { + path: 'receivefees', + loadChildren: './views/fees-details/fees-details.module#FeesDetailsModule', } ]; diff --git a/src/app/components/app-sidebar/app-sidebar.component.ts b/src/app/components/app-sidebar/app-sidebar.component.ts index 2b65cf8..6c80eb7 100644 --- a/src/app/components/app-sidebar/app-sidebar.component.ts +++ b/src/app/components/app-sidebar/app-sidebar.component.ts @@ -51,32 +51,52 @@ export class AppSidebar { url: '/masters/studyCenter', icon: 'fa fa-language' },{ - name: 'Form List Master', + name: 'Form List', url: '/masters/formList', icon: 'fa fa-language' }, - { - name: 'University Master', + { + name: 'University', url: '/masters/UniversityMaster', icon: 'fa fa-language' }, - { - name: 'Batch Master', + { + name: 'Course', + url: '/masters/coursemaster', + icon: 'fa fa-book' + }, + { + name: 'Share Allocate', + url: '/masters/shareallotmentmaster', + icon: 'fa fa-adjust' + }, + { + name: 'Batch', url: '/masters/BatchMaster', icon: 'fa fa-language' + }, + { + name: 'Session', + url: '/masters/sessionmaster', + icon: 'fa fa-support' + }, + { + name: 'Status', + url: '/masters/statusmaster', + icon: 'fa fa-bullseye' }, { - name: 'Document Master', + name: 'Document', url: '/masters/DocumentMaster', icon: 'fa fa-language' }, { - name: 'Fees Master', + name: 'Fees', url: '/masters/FeesMaster', icon: 'fa fa-language' }, { - name: 'Form Master', + name: 'Form', url: '/masters/FormMaster', icon: 'fa fa-language' }, @@ -144,6 +164,11 @@ export class AppSidebar { icon: 'fa fa-user-secret' } ] + }, + { + name: 'Fees Receive/Refund ', + icon: 'fa fa-money', + url: '/receivefees', } ]; } diff --git a/src/app/views/masters/masters-routing.module.ts b/src/app/views/masters/masters-routing.module.ts index 35e2d10..8c85eb9 100644 --- a/src/app/views/masters/masters-routing.module.ts +++ b/src/app/views/masters/masters-routing.module.ts @@ -12,6 +12,10 @@ import { FeesMasterComponent } from './fees-master/fees-master.component'; import { FormMasterComponent } from './form-master/form-master.component'; import { ExamtimeTableComponent } from './examtime-table/examtime-table.component'; import { StudyMaterialComponent } from './study-material/study-material.component'; +import { CourseMasterComponent } from './course-master/course-master.component'; +import { FeesShareAllotmentMasterComponent } from './fees-share-allotment-master/fees-share-allotment-master.component'; +import { SessionMasterComponent } from './session-master/session-master.component'; +import { StatusMasterComponent } from './status-master/status-master.component'; const routes: Routes = [ { path: '', @@ -89,7 +93,35 @@ const routes: Routes = [ data: { title: 'Exam Timetable' } - } + }, + { + path: "coursemaster", + component: CourseMasterComponent, + data: { + title: "Course" + } + }, + { + path: "shareallotmentmaster", + component: FeesShareAllotmentMasterComponent, + data: { + title: "Share Allocate" + } + }, + { + path: "sessionmaster", + component: SessionMasterComponent, + data: { + title: "Session" + } + }, + { + path: "statusmaster", + component: StatusMasterComponent, + data: { + title: "Status" + } + } ] } ]; diff --git a/src/app/views/masters/masters.module.ts b/src/app/views/masters/masters.module.ts index 1fcd278..52cfaf9 100644 --- a/src/app/views/masters/masters.module.ts +++ b/src/app/views/masters/masters.module.ts @@ -35,6 +35,13 @@ import { ExamtimeTableComponent } from './examtime-table/examtime-table.componen // Form list import { FormListComponent } from './form-list/form-list.component'; +// import course ,status ,session fees share allotment +import { CourseMasterComponent } from './course-master/course-master.component'; + +import { AddSemyearFeesComponent } from './course-master/add-semyear-fees/add-semyear-fees.component'; +import { FeesShareAllotmentMasterComponent } from './fees-share-allotment-master/fees-share-allotment-master.component'; +import { SessionMasterComponent } from './session-master/session-master.component'; +import { StatusMasterComponent } from './status-master/status-master.component'; @NgModule({ imports: [ CommonModule, @@ -58,7 +65,12 @@ import { FormListComponent } from './form-list/form-list.component'; FeesMasterComponent, FormMasterComponent, StudyMaterialComponent, - ExamtimeTableComponent + ExamtimeTableComponent, + CourseMasterComponent, + AddSemyearFeesComponent, + FeesShareAllotmentMasterComponent, + SessionMasterComponent, + StatusMasterComponent ] }) export class MastersModule { }