From: Galen Charlton Date: Wed, 4 Dec 2019 22:34:45 +0000 (-0500) Subject: LP#1830923: add support for editing queued authority records X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=77bed51583a65a9c380f20042554b31f1e44541a;p=working%2FEvergreen.git LP#1830923: add support for editing queued authority records Signed-off-by: Galen Charlton Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.html b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.html index ebb51b4081..b8fcdec714 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.html +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.html @@ -21,10 +21,15 @@ - + (recordSaved)="handleMarcRecordSaved($event)" + *ngIf="queueType === 'bib'"> + diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.ts index 3b5ba4caf9..87ef08045d 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/queued-record.component.ts @@ -53,13 +53,15 @@ export class QueuedRecordComponent { loadRecord() { this.queuedRecord = null; - this.pcrud.retrieve('vqbr', this.recordId) + this.pcrud.retrieve((this.queueType === 'bib' ? 'vqbr' : 'vqar'), this.recordId) .subscribe(rec => this.queuedRecord = rec); } handleMarcRecordSaved(saveEvent: any) { this.queuedRecord.marc(saveEvent.marcXml); - this.queuedRecord.bib_source(saveEvent.bibSource); + if (this.queueType === 'bib') { + this.queuedRecord.bib_source(saveEvent.bibSource); + } this.pcrud.update(this.queuedRecord).subscribe( response => this.toast.success(this.updateSuccess.text), error => {