Bugzilla – Attachment 176940 Details for
Bug 34681
Last returned by and last/previous borrower doesn't display if patron's cardnumber is empty
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34681: Fallback to borrowernumber when there is no cardnumber
Bug-34681-Fallback-to-borrowernumber-when-there-is.patch (text/plain), 3.47 KB, created by
Magnus Enger
on 2025-01-23 08:36:45 UTC
(
hide
)
Description:
Bug 34681: Fallback to borrowernumber when there is no cardnumber
Filename:
MIME Type:
Creator:
Magnus Enger
Created:
2025-01-23 08:36:45 UTC
Size:
3.47 KB
patch
obsolete
>From 6d92e3e4ee5059455413bb4a21fb5759d7d0e905 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Tue, 21 Jan 2025 16:37:51 +0000 >Subject: [PATCH] Bug 34681: Fallback to borrowernumber when there is no > cardnumber > >To test: >1. Have StoreLastBorrower enabled to store Last Returned By. >2. Create account and leave cardnumber empty. >3. Check out and return item with that account. >4. Go to items detail page. >5. See that Last Returned By and, if return is not anonymized, Last Borrower appears blank (you can inspect the fields and see that borrower information is there but not visible). Previous borrower will similarly be blank if it is from an account with no cardnumber. >6. APPLY PATCH >7. Try the items detail page again. You should see the link for 'Last borrower' and/or 'Previous borrower' now as the borrowernumber. > >Signed-off-by: Magnus Enger <magnus@libriotech.no> >Works as advertised, with the tiny followup I am providing. >--- > .../intranet-tmpl/prog/en/modules/catalogue/moredetail.tt | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >index 5a5327baca..efbf925a16 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >@@ -439,9 +439,10 @@ > [% IF (ITEM_DAT.datelastborrowed ) %][% ITEM_DAT.datelastborrowed | $KohaDates %][% END %] > </li> > [% IF Koha.Preference('StoreLastBorrower') && ITEM_DAT.object.last_returned_by %] >+ [% SET last_returned_by = ITEM_DAT.object.last_returned_by.cardnumber || ITEM_DAT.object.last_returned_by.borrowernumber %] > <li> > <span class="label">Last returned by:</span> >- <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% ITEM_DAT.object.last_returned_by.borrowernumber | uri %]">[% ITEM_DAT.object.last_returned_by.cardnumber | html %]</a> >+ <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% ITEM_DAT.object.last_returned_by.borrowernumber | uri %]">[% last_retruned_by | html %]</a> > </li> > [% END %] > [% FOR i IN ITEM_DAT.old_issues %] >@@ -452,7 +453,8 @@ > [% ELSE %] > <span class="label">Previous borrower:</span> > [% END %] >- <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% b.borrowernumber | uri %]">[% b.cardnumber | html %]</a> >+ [% SET last_or_previous_borrower = b.cardnumber || b.borrowernumber %] >+ <a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% b.borrowernumber | uri %]">[% last_or_previous_borrower| html %]</a> > </li> > [% END %] > [% IF ( ITEM_DAT.paidfor ) %] >-- >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 34681
:
176876
|
176940
|
176941
|
177117
|
177118