@@ -, +, @@ - 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. --- admin/columns_settings.yml | 49 ++++++++++++++++++++++ .../prog/en/includes/waiting_holds.inc | 2 +- .../prog/en/modules/circ/waitingreserves.tt | 32 ++++++++++---- 3 files changed, 74 insertions(+), 9 deletions(-) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -995,6 +995,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: - --- a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc @@ -13,7 +13,7 @@ Call number Copy number Enumeration - Action + Actions --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt +++ a/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' %] Koha › Circulation › Holds awaiting pickup @@ -27,7 +28,7 @@ [% IF Koha.Preference('CircSidebar') %]
[% ELSE %] -
+
[% END %]

Holds awaiting pickup for your library on: [% show_date | $KohaDates %] @@ -120,18 +121,33 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'datatables.inc' %] + [% INCLUDE 'columns_settings.inc' %] [% END %] --