From 85cf72abc7274bfe8be88be061d4a8932b07eb92 Mon Sep 17 00:00:00 2001 From: Zavier Banks Date: Thu, 9 Jan 2020 18:45:26 +0000 Subject: [PATCH] LPXXXXX Cash Reports Migrating the DOJO UI for Cash Reports into Angular. Signed-off-by: Zavier Banks --- .../local/cash-reports/cash-reports.component.html | 5 +++++ .../local/cash-reports/cash-reports.component.ts | 12 +++++++++++ .../local/cash-reports/cash-reports.module.ts | 23 ++++++++++++++++++++++ .../admin/local/cash-reports/routing.module.ts | 15 ++++++++++++++ 4 files changed, 55 insertions(+) create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.module.ts create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/routing.module.ts diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html b/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html new file mode 100644 index 0000000000..49032c2b13 --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html @@ -0,0 +1,5 @@ + + + + + diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts new file mode 100644 index 0000000000..0377d0aada --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts @@ -0,0 +1,12 @@ +import {Component, OnInit, Input, ViewChild} from '@angular/core'; + +@Component({ + templateUrl: './cash-reports.component.html' +}) + +export class CashReportsComponent implements OnInit { + + ngOnInit() { } + +} + diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.module.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.module.ts new file mode 100644 index 0000000000..ef901b1fb5 --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.module.ts @@ -0,0 +1,23 @@ +import {NgModule} from '@angular/core'; +import {TreeModule} from '@eg/share/tree/tree.module'; +import {StaffCommonModule} from '@eg/staff/common.module'; +import {CashReportsComponent} from './cash-reports.component'; +import {CashReportsRoutingModule} from './routing.module' + +@NgModule({ + declarations: [ + CashReportsComponent + ], + imports: [ + StaffCommonModule, + TreeModule, + CashReportsRoutingModule + ], + exports: [ + ], + providers: [ + ] +}) + +export class CashReportsModule { +} \ No newline at end of file diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/routing.module.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/routing.module.ts new file mode 100644 index 0000000000..09ee5147d2 --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/routing.module.ts @@ -0,0 +1,15 @@ +import {NgModule} from '@angular/core'; +import {RouterModule, Routes} from '@angular/router'; +import {CashReportsComponent} from './cash-reports.component'; + +const routes: Routes = [{ + path: '', + component: CashReportsComponent +}]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule] +}) + +export class CashReportsRoutingModule {} \ No newline at end of file -- 2.11.0