Bugzilla – Attachment 151765 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 staff client circulation paes
Bug-33845-Display-hold-notes-in-staff-client-circu.patch (text/plain), 3.69 KB, created by
Andrew Fuerste-Henry
on 2023-05-26 15:54:38 UTC
(
hide
)
Description:
Bug 33845: Display hold notes in staff client circulation paes
Filename:
MIME Type:
Creator:
Andrew Fuerste-Henry
Created:
2023-05-26 15:54:38 UTC
Size:
3.69 KB
patch
obsolete
>From 1bba41c11c3f7b99f971c656d1466de3dde7afe8 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Fri, 26 May 2023 10:58:33 +0000 >Subject: [PATCH] Bug 33845: Display hold notes in staff client circulation > paes > >This patch adds the reservenotes column to svc holds, and ensures they display on >circulation and memeber details > >To test: >1 - Enable system preference 'OpacHoldNotes' >2 - Place a hold for a ptron via the OPAC >3 - View the patron in the staff client >4 - Click on the 'Holds' tab >5 - Ensure you can see the hold note >6 - Click on the 'Circulation' tab on the left >7 - Click the 'Holds' tab and confirm you can view the note > >Signed-off-by: Andrew Fuerste-Henry <andrewfh@dubcolib.org> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 1 + > koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 1 + > koha-tmpl/intranet-tmpl/prog/js/holds.js | 1 + > svc/holds | 1 + > 4 files changed, 4 insertions(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index 6fc4e740c5..2b3c2b0893 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -917,6 +917,7 @@ > <th>Pickup at</th> > <th>Expiration</th> > <th>Priority</th> >+ <th>Notes</th> > <th>Cancel?</th> > <th>Suspend?</th> > <th>Status</th> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >index 6baa7e2ace..86eee74f5c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >@@ -797,6 +797,7 @@ > <th>Pickup at</th> > <th>Expiration</th> > <th>Priority</th> >+ <th>Notes</th> > <th>Delete?</th> > <th>Suspend?</th> > <th>Status</th> >diff --git a/koha-tmpl/intranet-tmpl/prog/js/holds.js b/koha-tmpl/intranet-tmpl/prog/js/holds.js >index 0b223bf302..7cf0de410c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/holds.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/holds.js >@@ -233,6 +233,7 @@ $(document).ready(function() { > } > } > }, >+ { "data": "reservenotes" }, > { > "bSortable": false, > "mDataProp": function( oObj ) { >diff --git a/svc/holds b/svc/holds >index 8043297573..49888cdaf2 100755 >--- a/svc/holds >+++ b/svc/holds >@@ -113,6 +113,7 @@ while ( my $h = $holds_rs->next() ) { > waiting_at => $h->branch()->branchname(), > waiting_here => $h->branch()->branchcode() eq $branch, > priority => $h->priority(), >+ reservenotes => $h->reservenotes(), > itemtype_limit => $itemtype_limit, > reservedate_formatted => $h->reservedate() ? output_pref( > { dt => dt_from_string( $h->reservedate() ), dateonly => 1 } >-- >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