LP1956619 Holdings editor sanity check for VIEW_USER perm
authorBill Erickson <berickxx@gmail.com>
Mon, 11 Jul 2022 14:58:40 +0000 (10:58 -0400)
committerMichele Morgan <mmorgan@noblenet.org>
Fri, 14 Oct 2022 19:48:00 +0000 (15:48 -0400)
When the staff accessing holdings in the holdings editor do not have the
VIEW_USER permission at a level sufficient to display the creator/editor
of a set of items, display the ID of the user instead of attempting and
failing to display the username, which causes a page rendering error.

Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Mary Llewellyn <mllewell@biblio.org>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
Open-ILS/src/eg2/src/app/staff/cat/volcopy/copy-attrs.component.ts

index 17e8c87..729a62e 100644 (file)
@@ -223,7 +223,9 @@ export class CopyAttrsComponent implements OnInit, AfterViewInit {
 
             case 'editor':
             case 'creator':
-                return value.usrname();
+                // VIEW_USER permission may be too narrow.  If so,
+                // just display the user ID instead of the username.
+                return typeof value === 'object' ? value.usrname() : value;
 
             case 'circ_lib':
                 return this.org.get(value).shortname();