From: Bill Erickson Date: Mon, 2 Jul 2018 05:16:59 +0000 (-0400) Subject: LP#1779158 Angular vandelay more import form X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=0cafe0293676b615c1566facdb24925f3f580483;p=working%2FEvergreen.git LP#1779158 Angular vandelay more import form Signed-off-by: Bill Erickson --- 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 5583413c36..3286fc57dd 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 @@ -8,29 +8,39 @@
- + + + + +
- - + +
- +
- - + + +
+
+ +
+
+
@@ -38,30 +48,28 @@
- -
-
- +
+
- +
- +
- - +
-
+
+ [(ngModel)]="mergeOnExact">
@@ -69,28 +77,28 @@
- - +
-
+
+ [(ngModel)]="mergeOnSingleMatch">
- - +
-
+
+ [(ngModel)]="mergeOnBestMatch">
@@ -100,10 +108,11 @@
-
+
+
+ [(ngModel)]="autoOverlayAcqCopies">
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 ed640b14a7..c5b7f0585b 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 @@ -1,7 +1,7 @@ import {Component, OnInit, AfterViewInit, Input, ViewChild} from '@angular/core'; import {IdlObject} from '@eg/core/idl.service'; import {OrgService} from '@eg/core/org.service'; -import {TypeaheadEntry} from '@eg/share/typeahead/typeahead.component'; +import {ComboboxEntry} from '@eg/share/combobox/combobox.component'; import {VandelayService} from './vandelay.service'; import {ProgressDialogComponent} from '@eg/share/dialog/progress.component'; @@ -21,6 +21,7 @@ export class ImportComponent implements OnInit, AfterViewInit { mergeOnSingleMatch: boolean; mergeOnBestMatch: boolean; minQualityRatio: number; + autoOverlayAcqCopies: boolean; @ViewChild('progressDialog') private progressDialog: ProgressDialogComponent; @@ -69,7 +70,7 @@ export class ImportComponent implements OnInit, AfterViewInit { } // Format typeahead data sets - formatEntries(etype: string): TypeaheadEntry[] { + formatEntries(etype: string): ComboboxEntry[] { const rtype = this.recordType; let list;