From: Bill Erickson Date: Wed, 11 Jul 2018 22:01:32 +0000 (-0400) Subject: LP#1779158 Match overlay target support X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c6f52f06ddc287c498d3bb82f1a020800187c47a;p=working%2FEvergreen.git LP#1779158 Match overlay target support Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/share/grid/grid.ts b/Open-ILS/src/eg2/src/app/share/grid/grid.ts index e04940dd1a..5493bc039b 100644 --- a/Open-ILS/src/eg2/src/app/share/grid/grid.ts +++ b/Open-ILS/src/eg2/src/app/share/grid/grid.ts @@ -396,7 +396,7 @@ export class GridRowSelector { export interface GridRowFlairEntry { icon: string; // name of material icon - title: string; // tooltip string + title?: string; // tooltip string } export class GridColumnPersistConf { diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.html b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.html index 079fe59f2d..5e201045f7 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.html +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.html @@ -1,5 +1,5 @@
-
+
- + diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/vandelay.service.ts b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/vandelay.service.ts index 840b47eea3..178b2f0b72 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/vandelay.service.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/vandelay.service.ts @@ -20,6 +20,12 @@ export class VandelayImportSelection { recordIds: number[]; queue: IdlObject; importQueue: boolean; // import the whole queue + overlayMap: {[qrId: number]: /* breId */ number}; + + constructor() { + this.recordIds = []; + this.overlayMap = {}; + } } @Injectable() @@ -270,6 +276,7 @@ export class VandelayService { method, this.auth.token(), queueId, options); } + // Download a queue as a MARC file. exportQueue(queue: IdlObject, nonImported?: boolean) { const etype = queue.queue_type().match(/auth/) ? 'auth' : 'bib';