From e15ce41f590d36e9493bf13e7e4db0287c9b6ee6 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 Signed-off-by: Jane Sandberg --- 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 89bb3da1e4..935fa33c4b 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 @@ -415,6 +415,10 @@ export class HoldComponent implements OnInit { case 'opac.default_pickup_location': this.pickupLib = Number(value); break; + + case 'opac.default_phone': + this.phoneValue = value; + break; } }); -- 2.11.0