LP1889128 Place holds honors default phone
authorBill Erickson <berickxx@gmail.com>
Thu, 8 Oct 2020 14:27:59 +0000 (10:27 -0400)
committerChris Sharp <csharp@georgialibraries.org>
Wed, 15 Sep 2021 18:33:45 +0000 (14:33 -0400)
Adds support for using the 'opac.default_phone' user setting when
placing holds in the staff catalog.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts

index de32057..9814202 100644 (file)
@@ -467,6 +467,10 @@ export class HoldComponent implements OnInit {
                 case 'opac.default_sms_notify':
                     this.smsValue = value;
                     break;
+
+                case 'opac.default_phone':
+                    this.phoneValue = value;
+                    break;
             }
         });