From: Bill Erickson Date: Thu, 18 Jul 2019 21:30:56 +0000 (-0400) Subject: LP1823367 Volume moniker migration continued X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=67533c7dea2f23cec149a6e7aa6f878915e1a6c2;p=evergreen%2Fequinox.git LP1823367 Volume moniker migration continued Map a server-generated 'volume' field to its local/client equivalent of 'callNum'. Signed-off-by: Bill Erickson Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/staff/share/holds/holds.service.ts b/Open-ILS/src/eg2/src/app/staff/share/holds/holds.service.ts index 231b44cba5..a6ddb7e881 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/holds/holds.service.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/holds/holds.service.ts @@ -131,6 +131,7 @@ export class HoldsService { ).pipe(mergeMap(meta => { const target: HoldRequestTarget = meta; target.bibId = target.bibrecord.id(); + target.callNum = meta.volume; // map to client terminology return this.bib.getBibSummary(target.bibId) .pipe(map(sum => {