From 51d734a4bceab1e97ae3ab88729d6428b69cd49d Mon Sep 17 00:00:00 2001 From: Garry Collum Date: Thu, 15 Apr 2021 19:39:56 -0400 Subject: [PATCH] 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 --- Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()}})

-- 2.11.0