From f4af195e76fc6a6dc30c2b7793fc0bf8b7739be9 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 16 Nov 2018 12:35:24 -0500 Subject: [PATCH] initial place holds page Signed-off-by: Bill Erickson --- .../share/date-select/date-select.component.html | 3 +- .../app/share/date-select/date-select.component.ts | 5 ++ .../src/app/share/fm-editor/fm-editor.component.ts | 4 +- .../eg2/src/app/staff/catalog/catalog.module.ts | 4 +- .../src/app/staff/catalog/hold/hold.component.html | 93 ++++++++++++++++++++++ .../src/app/staff/catalog/hold/hold.component.ts | 74 +++++++++++++++++ .../eg2/src/app/staff/catalog/routing.module.ts | 4 + Open-ILS/src/eg2/src/styles.css | 5 +- 8 files changed, 185 insertions(+), 7 deletions(-) create mode 100644 Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.html create mode 100644 Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts diff --git a/Open-ILS/src/eg2/src/app/share/date-select/date-select.component.html b/Open-ILS/src/eg2/src/app/share/date-select/date-select.component.html index c686be4d28..4027989afe 100644 --- a/Open-ILS/src/eg2/src/app/share/date-select/date-select.component.html +++ b/Open-ILS/src/eg2/src/app/share/date-select/date-select.component.html @@ -7,11 +7,12 @@ placeholder="yyyy-mm-dd" class="form-control" name="{{fieldName}}" + [disabled]="_disabled" [required]="required" [(ngModel)]="current" (dateSelect)="onDateSelect($event)">
-