From 7854eb774b272c33ff8b1bb240025c89b639b469 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 8 Oct 2020 10:27:59 -0400 Subject: [PATCH] LP1889128 Place holds honors default phone Adds support for using the 'opac.default_phone' user setting when placing holds in the staff catalog. Signed-off-by: Bill Erickson Signed-off-by: Michele Morgan --- Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts b/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts index 086652b618..49354bd00f 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts @@ -401,6 +401,10 @@ export class HoldComponent implements OnInit { case 'opac.default_pickup_location': this.pickupLib = value; break; + + case 'opac.default_phone': + this.phoneValue = value; + break; } }); -- 2.11.0