From: Garry Collum Date: Thu, 15 Apr 2021 23:39:56 +0000 (-0400) Subject: LP1924621 Staff catalog place hold screen preferred name X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=51d734a4bceab1e97ae3ab88729d6428b69cd49d;p=working%2FEvergreen.git LP1924621 Staff catalog place hold screen preferred name Displays the preferred first or last name on the place holds screen, if a patron barcode is entered. To test. 1. Set up a borrower with a preferred first name, and one with a preferred last name, and one with both. 2. Use the catalog place hold screen to search for these borrowers and notice that the preferred names, if available, are displayed. * note newline added by Bill to break up wide column. Signed-off-by: Garry Collum Signed-off-by: Mary Llewellyn Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.html b/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.html index cdc864ddcb..3941d8756b 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.html +++ b/Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.html @@ -19,7 +19,8 @@

Place Hold - ({{user.family_name()}}, {{user.first_given_name()}}) + ({{user.pref_family_name() ? user.pref_family_name() : user.family_name()}}, + {{user.pref_first_given_name() ? user.pref_first_given_name() :user.first_given_name()}})