From d338606f82f0bcc53ce836b72f5e30013d930510 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 15 Jul 2019 12:15:35 -0400 Subject: [PATCH] JBAS-2315 Vandelay sets cat date Porting to new Angular Vandelay code. Signed-off-by: Bill Erickson --- Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts | 4 ++++ 1 file changed, 4 insertions(+) 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 87a2d7f001..a465a3c78a 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 @@ -48,6 +48,7 @@ interface ImportOptions { fall_through_merge_profile?: any; strip_field_groups?: number[]; match_quality_ratio: number; + set_cat_date: boolean; // KCLS JBAS-2315 exit_early: boolean; } @@ -563,6 +564,9 @@ export class ImportComponent implements OnInit, AfterViewInit, OnDestroy { fall_through_merge_profile: this.selectedFallThruMergeProfile, strip_field_groups: this.selectedTrashGroups, match_quality_ratio: this.minQualityRatio, + // KCLS JBAS-2315 On the server, cat date setting is limited + // to newly created records, so we just pass it always. + set_cat_date: true, exit_early: true }; -- 2.11.0