diff --git a/src/app/components/app-sidebar/app-sidebar.component.ts b/src/app/components/app-sidebar/app-sidebar.component.ts
index cd5cc75..6a15335 100644
--- a/src/app/components/app-sidebar/app-sidebar.component.ts
+++ b/src/app/components/app-sidebar/app-sidebar.component.ts
@@ -133,6 +133,11 @@ export class AppSidebar {
name: 'AllocateMaterial',
url: '/studymaterial/allocatematerial',
icon: 'fa fa-user-secret'
+ },
+ {
+ name: 'Studymaterial Stock',
+ url: '/studymaterial/studymaterialstock',
+ icon: 'fa fa-user-secret'
}
]
},{
diff --git a/src/app/views/studymaterial/studymaterial-routing.module.ts b/src/app/views/studymaterial/studymaterial-routing.module.ts
index afa5d60..3c9bb7f 100644
--- a/src/app/views/studymaterial/studymaterial-routing.module.ts
+++ b/src/app/views/studymaterial/studymaterial-routing.module.ts
@@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { ReceivedmaterialComponent } from './receivedmaterial/receivedmaterial.component';
import { AllocatematerialComponent } from './allocatematerial/allocatematerial.component';
+import { StudymaterialstockComponent } from './studymaterialstock/studymaterialstock.component';
import { StudyMaterialComponent } from './study-material/study-material.component';
const routes: Routes = [
@@ -24,6 +25,13 @@ const routes: Routes = [
data: {
title: 'AllocateMaterial'
}
+ },
+ {
+ path: 'studymaterialstock',
+ component: StudymaterialstockComponent,
+ data: {
+ title: 'Studymaterialstock'
+ }
},
{
path: 'studyMaterialStatus',
diff --git a/src/app/views/studymaterial/studymaterial.module.ts b/src/app/views/studymaterial/studymaterial.module.ts
index b706e6a..d5383fd 100644
--- a/src/app/views/studymaterial/studymaterial.module.ts
+++ b/src/app/views/studymaterial/studymaterial.module.ts
@@ -11,17 +11,19 @@ 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';
+import { StudymaterialstockComponent } from './studymaterialstock/studymaterialstock.component';
@NgModule({
imports: [
CommonModule,
FormsModule,
TooltipModule,
- ModalModule,
+ ModalModule,
TabsModule,
StudymaterialRoutingModule
],
declarations: [ReceivedmaterialComponent, AllocatematerialComponent,
- StudyMaterialComponent]
+ StudyMaterialComponent,
+ StudymaterialstockComponent]
})
export class StudymaterialModule { }
diff --git a/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.html b/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.html
new file mode 100644
index 0000000..e704f32
--- /dev/null
+++ b/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.html
@@ -0,0 +1,294 @@
+
+
+
+
+ Stock on Hand
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | University Name |
+ Course Name |
+ Sem/Year |
+ Current Registration |
+ Stock on Hand |
+ Action |
+
+
+
+
+ | Anna University |
+ MCA |
+ 1st Sem |
+ 10 |
+ 10 |
+
+
+ |
+
+
+
+ | Bharathi University |
+ MBA |
+ 2nd Sem |
+ 15 |
+ 15 |
+
+
+ |
+
+
+ | Thiruvalluvar University |
+ BE |
+ 3rd Sem |
+ 20 |
+ 20 |
+
+
+ |
+
+
+ | Kamaraj University |
+ DE |
+ 4th sem |
+ 34 |
+ 34 |
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Studymaterial Status
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | Studycenter Name |
+ University Name |
+ Course Name |
+ Sem/Year |
+ Registration |
+ Studymaterial Sent |
+ Balance |
+
+
+
+
+
+ | SC 1 |
+ Anna University |
+ MCA |
+ 1st Sem |
+ 10 |
+ 10 |
+ 0 |
+
+
+
+
+ | SC 2 |
+ Bharathi University |
+ MBA |
+ 2nd Sem |
+ 15 |
+ 10 |
+ 5 |
+
+
+
+ | SC 3 |
+ Thiruvalluvar University |
+ BE |
+ 3rd Sem |
+ 20 |
+ 20 |
+ 0 |
+
+
+
+ | SC 4 |
+ Kamaraj University |
+ DE |
+ 4th sem |
+ 34 |
+ 30 |
+ 4 |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.scss b/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.spec.ts b/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.spec.ts
new file mode 100644
index 0000000..aa3c885
--- /dev/null
+++ b/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { StudymaterialstockComponent } from './studymaterialstock.component';
+
+describe('StudymaterialstockComponent', () => {
+ let component: StudymaterialstockComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ StudymaterialstockComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(StudymaterialstockComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.ts b/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.ts
new file mode 100644
index 0000000..f42c1a8
--- /dev/null
+++ b/src/app/views/studymaterial/studymaterialstock/studymaterialstock.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-studymaterialstock',
+ templateUrl: './studymaterialstock.component.html',
+ styleUrls: ['./studymaterialstock.component.scss']
+})
+export class StudymaterialstockComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}