Bugzilla – Attachment 164368 Details for
Bug 33568
Use the REST API to display items on the staff biblio detail view
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33568: Fix patron_to_html display
Bug-33568-Fix-patrontohtml-display.patch (text/plain), 5.14 KB, created by
Jonathan Druart
on 2024-04-03 07:41:49 UTC
(
hide
)
Description:
Bug 33568: Fix patron_to_html display
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2024-04-03 07:41:49 UTC
Size:
5.14 KB
patch
obsolete
>From f62a2fda599f87f8cad327fed0a4ab91fd5e4353 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 31 Oct 2023 08:45:56 +0100 >Subject: [PATCH] Bug 33568: Fix patron_to_html display >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Take HidePatronName into account >Display cardnumber >Remove parenthesis around cardnumber if the name is hidden > >Signed-off-by: Laurence Rault <laurence.rault@biblibre.com> >Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> >Signed-off-by: Tomás Cohen Arazi <tomascohen@theke.io> >--- > .../tables/items/catalogue_detail.inc | 9 +++++---- > .../prog/en/includes/js-patron-format.inc | 18 +++++++++++++----- > 2 files changed, 18 insertions(+), 9 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc >index 1d3837c1577..f444a049814 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc >@@ -76,6 +76,7 @@ > [% BLOCK build_items_table_js %] > <script> > >+ let hide_patron_name = [% !Koha.Preference('HidePatronName') ? 'false' : 'true' %]; > [% IF StaffDetailItemSelection %] > > let items_selection = {}; >@@ -454,11 +455,11 @@ > > nodes += '<span>'; > if ( row.checkout.onsite_checkout ) { >- let patron_to_html = $patron_to_html(row.checkout.patron, { url: true }); >+ let patron_to_html = $patron_to_html(row.checkout.patron, { url: true, display_cardnumber: true, hide_patron_name }); > nodes += _("Currently in local use by %s").format(patron_to_html); > } else { > nodes += '<span class="datedue">'; >- let patron_to_html = $patron_to_html(row.checkout.patron, { url: true }); >+ let patron_to_html = $patron_to_html(row.checkout.patron, { url: true, display_cardnumber: true, hide_patron_name }); > nodes += _("Checked out to %s").format(patron_to_html); > } > nodes += ': '; >@@ -504,7 +505,7 @@ > [%# Hacky for patron_to_html in case we simply want to display the patron's library name %] > row.first_hold.patron.library = { name: libraries_names.get(row.first_hold.patron.library_id) }; > >- let patron_to_html = $patron_to_html(row.first_hold.patron, { url: true }); >+ let patron_to_html = $patron_to_html(row.first_hold.patron, { url: true, display_cardnumber: true, hide_patron_name }); > nodes += ' <span class="heldfor">%s</span>'.format(_("Hold for: %s").format(patron_to_html)); > } > [% END %] >@@ -521,7 +522,7 @@ > [%# Hacky for patron_to_html in case we simply want to display the patron's library name %] > row.recall.patron.library = { name: libraries_names.get(row.recall.patron.library_id) }; > >- let patron_to_html = $patron_to_html(row.recall.patron, {url: true }); >+ let patron_to_html = $patron_to_html(row.recall.patron, {url: true, display_cardnumber: true, hide_patron_name }); > nodes += '<span>%s</span>'.format(_("recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date))) > } > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc >index a7fb8ad49b3..ae27dd09bab 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc >@@ -36,8 +36,20 @@ > name = firstname + ' ' + surname; > } > >+ if ( name.replace(' ', '').length == 0 ) { >+ return _("A patron from library %s".format(patron.library.name)); >+ } >+ >+ if ( config && config.hide_patron_name ) { >+ name = ''; >+ } >+ > if ( config && config.display_cardnumber ) { >- name = name + ' (' + escape_str(patron.cardnumber) + ')'; >+ if ( name.length > 0 ) { >+ name = name + ' (' + escape_str(patron.cardnumber) + ')'; >+ } else { >+ name = escape_str(patron.cardnumber); >+ } > } > > if (config && config.url) { >@@ -49,10 +61,6 @@ > } > } > >- if ( name.replace(' ', '').length == 0 ) { >- name = _("A patron from library %s".format(patron.library.name)); >- } >- > return name; > }; > })(); >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 33568
:
151339
|
153791
|
164308
|
164309
|
164310
|
164311
|
164312
|
164313
|
164314
|
164315
|
164316
|
164317
|
164318
|
164319
|
164320
|
164321
|
164322
|
164323
|
164324
|
164325
|
164326
|
164327
|
164328
|
164329
|
164330
|
164331
|
164332
|
164333
|
164334
|
164335
|
164336
|
164337
|
164338
|
164339
|
164340
|
164341
|
164342
|
164343
|
164344
|
164345
|
164346
|
164347
|
164348
|
164349
|
164350
|
164351
|
164352
|
164353
|
164354
|
164355
|
164356
|
164358
|
164359
|
164360
|
164361
|
164362
|
164363
|
164364
|
164365
|
164366
|
164367
|
164368
|
164369
|
164370
|
164371
|
164372
|
164373
|
164374
|
164472
|
164480
|
164482
|
164483
|
164485
|
164528