From: Bill Erickson Date: Mon, 15 Jul 2019 16:15:35 +0000 (-0400) Subject: JBAS-2315 Vandelay sets cat date X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d338606f82f0bcc53ce836b72f5e30013d930510;p=working%2FEvergreen.git JBAS-2315 Vandelay sets cat date Porting to new Angular Vandelay code. Signed-off-by: Bill Erickson --- 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 };