From: Bill Erickson Date: Wed, 6 Jun 2018 18:58:17 +0000 (-0400) Subject: ACQ admin splash page and IU's X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ea7aca447e746330a956cef4478d88bb5f35ef0a;p=working%2FEvergreen.git ACQ admin splash page and IU's Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq-splash.component.html b/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq-splash.component.html new file mode 100644 index 0000000000..3e92971a9a --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq-splash.component.html @@ -0,0 +1,48 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ diff --git a/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq-splash.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq-splash.component.ts new file mode 100644 index 0000000000..dc47db92ec --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq-splash.component.ts @@ -0,0 +1,11 @@ +import {Component, Input, ViewChildren, + AfterViewInit, QueryList} from '@angular/core'; + +@Component({ + templateUrl: './admin-acq-splash.component.html' +}) + +export class AdminAcqSplashComponent { +} + + diff --git a/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq.module.ts b/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq.module.ts new file mode 100644 index 0000000000..5c57b3da0c --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/admin/acq/admin-acq.module.ts @@ -0,0 +1,24 @@ +import {NgModule} from '@angular/core'; +import {StaffCommonModule} from '@eg/staff/common.module'; +import {AdminAcqRoutingModule} from './routing.module'; +import {AdminCommonModule} from '@eg/staff/admin/common.module'; +import {AdminAcqSplashComponent} from './admin-acq-splash.component'; + +@NgModule({ + declarations: [ + AdminAcqSplashComponent + ], + imports: [ + AdminCommonModule, + AdminAcqRoutingModule + ], + exports: [ + ], + providers: [ + ] +}) + +export class AdminAcqModule { +} + + diff --git a/Open-ILS/src/eg2/src/app/staff/admin/acq/routing.module.ts b/Open-ILS/src/eg2/src/app/staff/admin/acq/routing.module.ts new file mode 100644 index 0000000000..c07dd5df56 --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/admin/acq/routing.module.ts @@ -0,0 +1,22 @@ +import {NgModule} from '@angular/core'; +import {RouterModule, Routes} from '@angular/router'; +import {AdminAcqSplashComponent} from './admin-acq-splash.component'; +import {BasicAdminPageComponent} from '@eg/staff/admin/basic-admin-page.component'; + +const routes: Routes = [{ + path: 'splash', + component: AdminAcqSplashComponent +}, { + path: ':table', + component: BasicAdminPageComponent, + // All ACQ admin pages cover data in the acq.* schema. No need to + // duplicate it within the URL path. Pass it manually instead. + data: [{schema: 'acq'}] +}]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule] +}) + +export class AdminAcqRoutingModule {}