@@ -47,7 +48,8 @@
-
+
+
|
@@ -65,8 +67,10 @@
Active
|
+
-
+
+
|
@@ -84,8 +88,10 @@
Active
|
+
-
+
+
|
@@ -103,8 +109,10 @@
InActive
|
+
-
+
+
|
@@ -122,8 +130,10 @@
Active
|
+
-
+
+
|
@@ -209,8 +219,10 @@
-
+
+
+
diff --git a/src/app/views/masters/course-master/course-master.component.ts b/src/app/views/masters/course-master/course-master.component.ts
index d57176f..a7a0730 100644
--- a/src/app/views/masters/course-master/course-master.component.ts
+++ b/src/app/views/masters/course-master/course-master.component.ts
@@ -7,9 +7,11 @@ import { Component, OnInit } from '@angular/core';
export class CourseMasterComponent implements OnInit {
hideCourseMasterC: boolean;
viewSemYearCard: boolean;
+ hideMaster:boolean;
textValue: string;
constructor() {
this.hideCourseMasterC= true;
+ this.hideMaster= true;
this.viewSemYearCard= false;
this.textValue='karthi';
}
@@ -17,11 +19,18 @@ export class CourseMasterComponent implements OnInit {
ngOnInit() {
}
- // load addsem year fees component
- loadAddSemYearFees() {
+
+
+ loadAddSubject() {
+ this.hideMaster= false;
+ }
+ hideAllComponent() {
+ this.hideMaster= true;
+ }
+ // load addsem year fees component
+ loadAddSemYearFees() {
this.hideCourseMasterC= false;
}
-
// hide all child components
hideAllChildComponent() {
this.hideCourseMasterC= true;
diff --git a/src/app/views/masters/masters.module.ts b/src/app/views/masters/masters.module.ts
index 3df85b8..3a4725e 100644
--- a/src/app/views/masters/masters.module.ts
+++ b/src/app/views/masters/masters.module.ts
@@ -42,6 +42,7 @@ import { AddSemyearFeesComponent } from './course-master/add-semyear-fees/add-se
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';
+import { AddSubjectComponent } from './course-master/add-subject/add-subject.component';
@NgModule({
imports: [
CommonModule,
@@ -61,16 +62,17 @@ import { StatusMasterComponent } from './status-master/status-master.component';
FormListComponent,
UniversityMasterComponent,
BatchMasterComponent,
-
FeesMasterComponent,
-DocumentMasterComponent,
+ DocumentMasterComponent,
StudyMaterialComponent,
ExamtimeTableComponent,
CourseMasterComponent,
- AddSemyearFeesComponent,
+ AddSemyearFeesComponent,
+ AddSubjectComponent,
FeesShareAllotmentMasterComponent,
SessionMasterComponent,
StatusMasterComponent
+
]
})
export class MastersModule { }
|