From: Galen Charlton Date: Thu, 9 Dec 2021 17:00:27 +0000 (-0500) Subject: LP#1942220: add missed files for previous commit X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a19c8704decf5afedc378278a9665c357065dfaf;p=working%2FEvergreen.git LP#1942220: add missed files for previous commit Signed-off-by: Galen Charlton --- 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); } +} + +