From: Bill Erickson Date: Tue, 25 Sep 2018 16:55:09 +0000 (-0400) Subject: LP#1779158 Optional vandelay session name X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3d3cc85a94544859a6a576f9d062936d839f53bb;p=working%2FEvergreen.git LP#1779158 Optional vandelay session name Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/active-imports.component.html b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/active-imports.component.html index 7a0f591011..f77ae51bcb 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/active-imports.component.html +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/active-imports.component.html @@ -14,7 +14,8 @@
- Import Tracker {{tracker.name()}} + Import Tracker + {{tracker.name()}}
@@ -23,7 +24,8 @@ Created on {{tracker.create_time() | date}} for - + Queue {{tracker.queue().name()}} 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 58f875b1a2..6f48fb649b 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 @@ -143,13 +143,12 @@ [(ngModel)]="autoOverlayAcqCopies">
-
+
- +
- +
@@ -162,6 +161,15 @@
+
+
+ +
+
+ +
+
diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts index 928a691eb0..3b36f6a341 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts @@ -74,6 +74,9 @@ export class ImportComponent implements OnInit, AfterViewInit, OnDestroy { // Generated by the server sessionKey: string; + // Optional enqueue/import tracker session name. + sessionName: string; + @ViewChild('fileSelector') private fileSelector; @ViewChild('uploadProgress') private uploadProgress: ProgressInlineComponent; @@ -371,7 +374,8 @@ export class ImportComponent implements OnInit, AfterViewInit, OnDestroy { this.net.request( 'open-ils.vandelay', method, this.auth.token(), this.sessionKey, this.activeQueueId, - null, null, this.selectedBibSource, null, true + null, null, this.selectedBibSource, + (this.sessionName || null), true ).subscribe( tracker => { const e = this.evt.parse(tracker);