Bugzilla – Attachment 68697 Details for
Bug 14919
Holds history for patrons
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14919: Add holds history for patron
Bug-14919-Add-holds-history-for-patron.patch (text/plain), 13.15 KB, created by
Kyle M Hall (khall)
on 2017-10-27 13:25:48 UTC
(
hide
)
Description:
Bug 14919: Add holds history for patron
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2017-10-27 13:25:48 UTC
Size:
13.15 KB
patch
obsolete
>From 1254b6a48e1f4f2a8d703d55121518e09bde0eb6 Mon Sep 17 00:00:00 2001 >From: Josef Moravec <josef.moravec@gmail.com> >Date: Fri, 6 Oct 2017 13:35:46 +0000 >Subject: [PATCH] Bug 14919: Add holds history for patron > >Test plan: >0) Have a patron with some current and old reserves >1) Go to patron circulation page >2) Notice, there is new item called "Holds history" in the left >circulation menu >3) Go to this page and confirm the data on this page are OK, and that >ui does behave as expected >4) Go to adminitration, columns setting, try to change the setting for >holdshistory table and confirm it is taken into account on holds history >page > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > admin/columns_settings.yml | 80 ++++++++---- > .../intranet-tmpl/prog/en/includes/circ-menu.inc | 5 + > .../prog/en/modules/members/holdshistory.tt | 135 +++++++++++++++++++++ > members/holdshistory.pl | 96 +++++++++++++++ > 4 files changed, 291 insertions(+), 25 deletions(-) > create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt > create mode 100644 members/holdshistory.pl > >diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml >index 397472d..25769b8 100644 >--- a/admin/columns_settings.yml >+++ b/admin/columns_settings.yml >@@ -255,43 +255,34 @@ modules: > cannot_be_toggled: 1 > cannot_be_modified: 1 > >- opac: >- biblio-detail: >- holdingst: >- - >- columnname: item_itemtype >- - >- columnname: item_current_location >- - >- columnname: item_home_location >+ holdshistory: >+ holdshistory-table: > - >- columnname: item_shelving_location >- is_hidden: 1 >- - >- columnname: item_ccode >+ columnname: title >+ cannot_be_toggled: 1 >+ cannot_be_modified: 1 > - >- columnname: item_callnumber >+ columnname: author > - >- columnname: item_enumchron >+ columnname: barcode > - >- columnname: item_url >+ columnname: branch > - >- columnname: item_copy >+ columnname: reservedate > - >- columnname: item_status >+ columnname: notificationdate > - >- columnname: item_notes >+ columnname: reminderdate > - >- columnname: item_datedue >+ columnname: expirationdate > - >- columnname: item_barcode >- is_hidden: 1 >+ columnname: waitingdate > - >- columnname: item_holds >+ columnname: cancellationdate > - >- columnname: item_priority >+ columnname: itemtype > - >- columnname: item_coursereserves >+ columnname: status > > reports: > lostitems: >@@ -455,3 +446,42 @@ modules: > columnname: locations > - > columnname: hold_date >+ >+ opac: >+ biblio-detail: >+ holdingst: >+ - >+ columnname: item_itemtype >+ - >+ columnname: item_current_location >+ - >+ columnname: item_home_location >+ - >+ columnname: item_shelving_location >+ is_hidden: 1 >+ - >+ columnname: item_ccode >+ - >+ columnname: item_callnumber >+ - >+ columnname: item_enumchron >+ - >+ columnname: item_url >+ - >+ columnname: item_copy >+ - >+ columnname: item_status >+ - >+ columnname: item_notes >+ - >+ columnname: item_datedue >+ - >+ columnname: item_barcode >+ is_hidden: 1 >+ - >+ columnname: item_holds >+ - >+ columnname: item_priority >+ - >+ columnname: item_coursereserves >+ >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >index e621d64..b0e40db 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc >@@ -88,6 +88,11 @@ > [% IF ( readingrecordview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/readingrec.pl?borrowernumber=[% borrowernumber %]">Circulation history</a></li> > [% END %] > [% END %] >+ [% IF ( CAN_user_borrowers ) %] >+ [% IF ( intranetreadinghistory ) %] >+ [% IF ( holdshistoryview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/holdsshistory.pl?borrowernumber=[% borrowernumber %]">Holds history</a></li> >+ [% END %] >+ [% END %] > [% IF ( CAN_user_parameters ) %] > [% IF ( logview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/tools/viewlog.pl?do_it=1&modules=MEMBERS&modules=circulation&object=[% borrowernumber %]&src=circ">Modification log</a></li> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt >new file mode 100644 >index 0000000..1ac8e81 >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt >@@ -0,0 +1,135 @@ >+[% USE KohaDates %] >+[% USE Koha %] >+[% USE AuthorisedValues %] >+[% USE Branches %] >+[% USE ColumnsSettings %] >+[% INCLUDE 'doc-head-open.inc' %] >+<title>Holds history for [% INCLUDE 'patron-title.inc' %]</title> >+[% INCLUDE 'doc-head-close.inc' %] >+<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" /> >+[% INCLUDE 'datatables.inc' %] >+[% INCLUDE 'columns_settings.inc' %] >+<script type="text/javascript" id="js"> >+//<![CDATA[ >+ >+ $(document).ready(function() { >+ var columns_settings = [% ColumnsSettings.GetColumns('members', 'holdshistory', 'holdshistory-table', 'json') %]; >+ var table = KohaTable("#table_holdshistory", { >+ "sPaginationType": "four_button", >+ "aaSorting": [[4, 'desc']], >+ "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>', >+ "aoColumnDefs": [ >+ { "sType": "anti-the", "aTargets" : [ "anti-the" ] }, >+ { "sType": "title-string", "aTargets" : [ "title-string" ] } >+ ] >+ }, columns_settings); >+ }); >+//]]> >+</script> >+</head> >+<body id="pat_holdshistory" class="pat"> >+[% INCLUDE 'header.inc' %] >+[% INCLUDE 'patron-search.inc' %] >+ >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a> › Holds history for [% INCLUDE 'patron-title.inc' %]</div> >+ >+<div id="doc3" class="yui-t2"> >+ <div id="bd"> >+ <div id="yui-main"> >+ <div class="yui-b"> >+[% INCLUDE 'members-toolbar.inc' %] >+<h1>Holds history</h1> >+ >+[% UNLESS Koha.Preference('intranetreadinghistory') %] >+ <div class="dialog alert">Staff members are not allowed to access patron's holds history</div> >+[% ELSIF is_anonymous %] >+ <div class="dialog alert">This is the anonymous patron, so no holds history is displayed.</div> >+[% ELSIF ( !holds ) %] >+ <div class="dialog message">This patron has no holds history.</div> >+[% ELSE %] >+ >+<div id="holdshistory" style="overflow:hidden"> >+ <table id="table_holdshistory"> >+ <thead> >+ <th class="anti-the">Title</th> >+ <th>Author</th> >+ <th>Barcode</th> >+ <th>Library</th> >+ <th class="title-string">Reserve date</th> >+ <th class="title-string">Notification date</th> >+ <th class="title-string">Reminder date</th> >+ <th class="title-string">Expiration date</th> >+ <th class="title-string">Waiting date</th> >+ <th class="title-string">Cancellation date</th> >+ <th>Item type</th> >+ <th>Status</th> >+ </thead> >+ <tbody> >+ [% FOREACH hold IN holds %] >+ <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% hold.biblio.biblionumber %]">[% hold.biblio.title |html %]</a></td> >+ <td>[% hold.biblio.author %]</td> >+ <td>[% hold.item.barcode %]</td> >+ <td>[% Branches.GetName( hold.branchcode ) %]</td> >+ <td><span title="[% hold.reservedate %]">[% hold.reservedate | $KohaDates %]</span></td> >+ <td> >+ [% IF hold.notificationdate %] >+ <span title="[% hold.notificationdate %]">[% hold.notificationdate | $KohaDates %]</span> >+ [% ELSE %] >+ <span title="0000-00-00"></span> >+ [% END %] >+ </td> >+ <td> >+ [% IF hold.reminderdate %] >+ <span title="[% hold.reminderdate %]">[% hold.reminderdate | $KohaDates %]</span> >+ [% ELSE %] >+ <span title="0000-00-00"></span> >+ [% END %] >+ </td> >+ <td> >+ [% IF hold.expirationdate %] >+ <span title="[% hold.expirationdate %]">[% hold.expirationdate | $KohaDates %]</span> >+ [% ELSE %] >+ <span title="0000-00-00"></span> >+ [% END %] >+ </td> >+ <td> >+ [% IF hold.waitingdate %] >+ <span title="[% hold.waitingdate %]">[% hold.waitingdate | $KohaDates %]</span> >+ [% ELSE %] >+ <span title="0000-00-00"></span> >+ [% END %] >+ </td> >+ <td> >+ [% IF hold.cancellationdate %] >+ <span title="[% hold.cancellationdate %]">[% hold.cancellationdate | $KohaDates %]</span> >+ [% ELSE %] >+ <span title="0000-00-00"></span> >+ [% END %] >+ </td> >+ <td>[% hold.itemtype %]</td> >+ <td> >+ [% IF hold.found == 'W' %] >+ Waiting >+ [% ELSIF hold.found == 'T' %] >+ In transit >+ [% ELSIF hold.cancellationdate %] >+ Cancelled >+ [% ELSE %] >+ In queue >+ [% END %] >+ </td> >+ </tr> >+ [% END %] >+ </tbody> >+ </table> >+</div> >+ >+[% END %] >+</div> >+</div> >+ >+<div class="yui-b"> >+[% INCLUDE 'circ-menu.inc' %] >+</div> >+</div> >+[% INCLUDE 'intranet-bottom.inc' %] >diff --git a/members/holdshistory.pl b/members/holdshistory.pl >new file mode 100644 >index 0000000..9d6f7a4 >--- /dev/null >+++ b/members/holdshistory.pl >@@ -0,0 +1,96 @@ >+#!/usr/bin/perl >+# >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use CGI qw ( -utf8 ); >+ >+use C4::Auth; >+use C4::Output; >+ >+use Koha::Patrons; >+ >+my $input = CGI->new; >+ >+my $borrowernumber; >+my $cardnumber; >+my @all_holds; >+ >+my ($template, $loggedinuser, $cookie)= get_template_and_user({template_name => "members/holdshistory.tt", >+ query => $input, >+ type => "intranet", >+ authnotrequired => 0, >+ flagsrequired => {borrowers => 1}, >+ debug => 1, >+ }); >+ >+my $patron; >+ >+if ($input->param('cardnumber')) { >+ $cardnumber = $input->param('cardnumber'); >+ $patron = Koha::Patrons->find( { cardnumber => $cardnumber } ); >+} >+if ($input->param('borrowernumber')) { >+ $borrowernumber = $input->param('borrowernumber'); >+ $patron = Koha::Patrons->find( $borrowernumber ); >+} >+ >+unless ( $patron ) { >+ print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber"); >+ exit; >+} >+ >+my $holds; >+my $old_holds; >+ >+if ( $borrowernumber eq C4::Context->preference('AnonymousPatron') ){ >+ # use of 'eq' in the above comparison is intentional -- the >+ # system preference value could be blank >+ $template->param( is_anonymous => 1 ); >+} else { >+ $holds = $patron->holds; >+ $old_holds = $patron->old_holds; >+ >+ while (my $hold = $holds->next) { >+ push @all_holds, $hold; >+ } >+ >+ while (my $hold = $old_holds->next) { >+ push @all_holds, $hold; >+ } >+} >+ >+if ( $patron->category->category_type eq 'C') { >+ my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']}); >+ $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1; >+ $template->param( 'catcode' => $patron_categories->next ) if $patron_categories->count == 1; >+} >+ >+$template->param( adultborrower => 1 ) if ( $patron->category->category_type eq 'A' || $patron->category->category_type eq 'I' ); >+ >+$template->param( picture => 1 ) if $patron->image; >+ >+$template->param(%{ $patron->unblessed }); >+ >+$template->param( >+ holdshistoryview => 1, >+ borrowernumber => $borrowernumber, >+ patron => $patron, >+ holds => \@all_holds, >+); >+ >+output_html_with_http_headers $input, $cookie, $template->output; >-- >2.10.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 14919
:
67728
|
67729
|
67730
|
67807
|
67808
|
67809
|
67810
|
67811
|
67818
|
67988
|
68133
|
68134
|
68135
|
68136
|
68137
|
68138
|
68695
|
68696
| 68697 |
68698
|
68699
|
68700
|
68701
|
68756
|
68780