From a19c8704decf5afedc378278a9665c357065dfaf Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 9 Dec 2021 12:00:27 -0500 Subject: [PATCH] LP#1942220: add missed files for previous commit Signed-off-by: Galen Charlton --- .../export-attributes-dialog.component.html | 38 ++++++++++++++++++++++ .../lineitem/export-attributes-dialog.component.ts | 18 ++++++++++ 2 files changed, 56 insertions(+) create mode 100644 Open-ILS/src/eg2/src/app/staff/acq/lineitem/export-attributes-dialog.component.html create mode 100644 Open-ILS/src/eg2/src/app/staff/acq/lineitem/export-attributes-dialog.component.ts diff --git a/Open-ILS/src/eg2/src/app/staff/acq/lineitem/export-attributes-dialog.component.html b/Open-ILS/src/eg2/src/app/staff/acq/lineitem/export-attributes-dialog.component.html new file mode 100644 index 0000000000..6ffb3dd59e --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/acq/lineitem/export-attributes-dialog.component.html @@ -0,0 +1,38 @@ + +
+ + + +
+
+ diff --git a/Open-ILS/src/eg2/src/app/staff/acq/lineitem/export-attributes-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/acq/lineitem/export-attributes-dialog.component.ts new file mode 100644 index 0000000000..d6e8a666d5 --- /dev/null +++ b/Open-ILS/src/eg2/src/app/staff/acq/lineitem/export-attributes-dialog.component.ts @@ -0,0 +1,18 @@ +import {Component, Input, ViewChild, TemplateRef, OnInit} from '@angular/core'; +import {NgbModal} from '@ng-bootstrap/ng-bootstrap'; +import {DialogComponent} from '@eg/share/dialog/dialog.component'; +import {IdlService, IdlObject} from '@eg/core/idl.service'; +import {ComboboxEntry} from '@eg/share/combobox/combobox.component'; + +@Component({ + selector: 'eg-acq-export-attributes-dialog', + templateUrl: './export-attributes-dialog.component.html' +}) + +export class ExportAttributesDialogComponent extends DialogComponent { + @Input() ids: number[]; + selectedAttr = 'isbn'; + constructor(private modal: NgbModal) { super(modal); } +} + + -- 2.11.0