Browse Source

Bug 11281: Printing holds awaiting pickup prints both tabs

This patch adds columns configuration to the holds awaiting pickup
tables. Doing so helps solve the printing issue by adding a "Print"
option to both tables. Using this print function will provide a
printable version of only that table.

To test you should have multiple holds in your system which are marked
"waiting" and some which have been waiting longer than the value
specified in the ReservesMaxPickUpDelay system preference.

Apply the patch and go to Circulation -> Holds awaiting pickup.

 - On both the "Holds waiting" and "Holds waiting over..." tabs the
   DataTable should display correctly and all the controls should work,
   including the columns settings and the choices in the export menu.
 - Confirm that the "Print" action creates a printable version of only
   the table you are viewing.

 - Go to Administration -> Columns settings -> Circulation.
 - Change some visibility controls for the tables under the
   "holds_awaiting_pickup" heading (id=holdso and id=holdst). Confirm
   that these changes are reflected in the "Holds waiting" interface.

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Owen Leonard 4 years ago
committed by Martin Renvoize
parent
commit
013edd90e3
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 49
      admin/columns_settings.yml
  2. 2
      koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc
  3. 32
      koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt

49
admin/columns_settings.yml

@ -997,6 +997,55 @@ modules:
-
columnname: items_needed
holds_awaiting_pickup:
holdst:
-
columnname: waiting_since
-
columnname: date_hold_placed
-
columnname: title
-
columnname: patron
-
columnname: home_library
-
columnname: current_location
-
columnname: shelving_location
-
columnname: call_number
-
columnname: copy_number
-
columnname: enumeration
-
columnname: action
holdso:
-
columnname: waiting_since
-
columnname: date_hold_placed
-
columnname: title
-
columnname: patron
-
columnname: home_library
-
columnname: current_location
-
columnname: shelving_location
-
columnname: call_number
-
columnname: copy_number
-
columnname: enumeration
-
columnname: action
overdues:
circ-overdues:
-

2
koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc

@ -13,7 +13,7 @@
<th>Call number</th>
<th>Copy number</th>
<th>Enumeration</th>
<th>Action</th>
<th class="NoSort noExport">Actions</th>
</tr>
</thead>
<tbody>

32
koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt

@ -3,6 +3,7 @@
[% USE Koha %]
[% USE KohaDates %]
[% USE Branches %]
[% USE ColumnsSettings %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Circulation &rsaquo; Holds awaiting pickup</title>
@ -27,7 +28,7 @@
[% IF Koha.Preference('CircSidebar') %]
<div class="col-sm-10 col-sm-push-2">
[% ELSE %]
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<div class="col-sm-12">
[% END %]
<h2>Holds awaiting pickup for your library on: [% show_date | $KohaDates %]
@ -120,18 +121,33 @@
[% MACRO jsinclude BLOCK %]
[% INCLUDE 'datatables.inc' %]
[% INCLUDE 'columns_settings.inc' %]
<script>
var holdst_columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'holds_awaiting_pickup', 'holdst', 'json' ) | $raw %];
var holdso_columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'holds_awaiting_pickup', 'holdso', 'json' ) | $raw %];
$(document).ready(function() {
$('#resultlist').tabs();
$("th a").hide();
$("#holdst,#holdso").dataTable($.extend(true, {}, dataTablesDefaults, {
KohaTable("holdst", {
"aoColumnDefs": [
{ "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
{ "sType": "anti-the", "aTargets" : [ "anti-the" ] },
{ "sType": "title-string", "aTargets" : [ "title-string" ] }
{ "sortable": false, "searchable": false, 'targets': [ 'NoSort' ] },
{ "type": "anti-the", "targets" : [ "anti-the" ] },
{ "type": "title-string", "targets" : [ "title-string" ] }
],
"sPaginationType": "full"
}));
}, holdst_columns_settings);
KohaTable("holdso", {
"aoColumnDefs": [
{ "sortable": false, "searchable": false, 'targets': [ 'NoSort' ] },
{ "type": "anti-the", "targets" : [ "anti-the" ] },
{ "type": "title-string", "targets" : [ "title-string" ] }
],
"sPaginationType": "full"
}, holdso_columns_settings);
$('#resultlist').tabs();
});
</script>
[% END %]

Loading…
Cancel
Save