diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml index 397472d469..25769b849b 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: + holdshistory: + holdshistory-table: - - columnname: item_itemtype + columnname: title + cannot_be_toggled: 1 + cannot_be_modified: 1 - - columnname: item_current_location + columnname: author - - columnname: item_home_location + columnname: barcode - - columnname: item_shelving_location - is_hidden: 1 + columnname: branch - - columnname: item_ccode + columnname: reservedate - - columnname: item_callnumber + columnname: notificationdate - - columnname: item_enumchron + columnname: reminderdate - - columnname: item_url + columnname: expirationdate - - columnname: item_copy + columnname: waitingdate - - columnname: item_status + columnname: cancellationdate - - columnname: item_notes + columnname: itemtype - - columnname: item_datedue - - - columnname: item_barcode - is_hidden: 1 - - - columnname: item_holds - - - columnname: item_priority - - - 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 e621d6409d..b0e40dbd4b 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 ) %]
Title | +Author | +Barcode | +Library | +Reserve date | +Notification date | +Reminder date | +Expiration date | +Waiting date | +Cancellation date | +Item type | +Status | + + + [% FOREACH hold IN holds %] +[% hold.biblio.title |html %] | +[% hold.biblio.author %] | +[% hold.item.barcode %] | +[% Branches.GetName( hold.branchcode ) %] | +[% hold.reservedate | $KohaDates %] | ++ [% IF hold.notificationdate %] + [% hold.notificationdate | $KohaDates %] + [% ELSE %] + + [% END %] + | ++ [% IF hold.reminderdate %] + [% hold.reminderdate | $KohaDates %] + [% ELSE %] + + [% END %] + | ++ [% IF hold.expirationdate %] + [% hold.expirationdate | $KohaDates %] + [% ELSE %] + + [% END %] + | ++ [% IF hold.waitingdate %] + [% hold.waitingdate | $KohaDates %] + [% ELSE %] + + [% END %] + | ++ [% IF hold.cancellationdate %] + [% hold.cancellationdate | $KohaDates %] + [% ELSE %] + + [% END %] + | +[% hold.itemtype %] | ++ [% IF hold.found == 'W' %] + Waiting + [% ELSIF hold.found == 'T' %] + In transit + [% ELSIF hold.cancellationdate %] + Cancelled + [% ELSE %] + In queue + [% END %] + | + + [% END %] + +
---|