From: Bill Erickson Date: Thu, 8 Oct 2020 14:27:59 +0000 (-0400) Subject: LP1889128 Place holds honors default phone X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e15ce41f590d36e9493bf13e7e4db0287c9b6ee6;p=Evergreen.git 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 --- 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; } });