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>
Mon, 7 Dec 2020 14:44:01 +0000 (09:44 -0500)
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 086652b..49354bd 100644 (file)
@@ -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;
             }
         });