Bugzilla – Attachment 151755 Details for
Bug 33845
Hold notes should show when viewing a patron's hold list
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33845: Display hold notes in OPAC
Bug-33845-Display-hold-notes-in-OPAC.patch (text/plain), 1.92 KB, created by
Nick Clemens (kidclamp)
on 2023-05-26 12:29:04 UTC
(
hide
)
Description:
Bug 33845: Display hold notes in OPAC
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2023-05-26 12:29:04 UTC
Size:
1.92 KB
patch
obsolete
>From 68ec0c7d294d07021ab3e5a21e6e613d0ee42280 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Fri, 26 May 2023 11:02:51 +0000 >Subject: [PATCH] Bug 33845: Display hold notes in OPAC > >This patch adds the holds notes to the patron's account holds list > >1 - Ensure system preference 'OpacHoldNotes' is enabled >2 - Place a hold on the OPAC and add a note >3 - Confirm the note displays on the Summary page Holds tab of 'Your account' >4 - In staff client, disable system preference 'OpacHoldNotes' >5 - View Holds on patron's account in opac >6 - Confirm the note no longer shows >--- > koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc | 6 ++++++ > 1 file changed, 6 insertions(+) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc >index 973332fd29..afec482936 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc >@@ -23,6 +23,9 @@ > [% IF ( showpriority ) %] > <th class="psort">Priority</th> > [% END %] >+ [% IF Koha.Preference('OpacHoldNotes') %] >+ <th>Notes</th> >+ [% END %] > <th>Status</th> > [% IF SuspendHoldsOpac and ! onlyinfo %] > <th class="nosort" >Suspend</th> >@@ -127,6 +130,9 @@ > [% HOLD.priority | html %] > </td> > [% END %] >+ [% IF Koha.Preference('OpacHoldNotes') %] >+ <td>[% HOLD.reservenotes | html | html_line_break %]</td> >+ [% END %] > <td class="status"> > <span class="tdlabel">Status:</span> > [% IF ( HOLD.is_waiting ) %] >-- >2.30.2
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 33845
:
151754
|
151755
|
151756
|
151757
|
151765
|
151766
|
151767
|
151768
|
152046
|
156416
|
156417
|
156418
|
156419
|
156420
|
156421
|
156692
|
156693
|
156694
|
156695
|
156696
|
156697