From 30200672a8327642cd17840bea513711ee099fa2 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 Signed-off-by: Gina Monti Signed-off-by: Jason Boyer --- 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 a5fcb520fe..2b733af027 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 @@ -26,7 +26,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