From 912b7cb2709fac83dbe126876fa67ecd05321adf Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 25 May 2023 09:04:31 +0200 Subject: [PATCH] Bug 33568: Move code to a dedicated include file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not very nice but at least the code is isolated in a separate file and reduce the size of detail.tt We could also move the code related to the item bundle that is included inside this same table. Signed-off-by: Owen Leonard Signed-off-by: Laurence Rault Signed-off-by: Emily Lamancusa Signed-off-by: Tomás Cohen Arazi --- .../tables/items/catalogue_detail.inc | 738 ++++++++++++++++++ .../prog/en/modules/catalogue/detail.tt | 730 +---------------- 2 files changed, 743 insertions(+), 725 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc new file mode 100644 index 00000000000..e640d8ef5e9 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc @@ -0,0 +1,738 @@ +[% USE To %] +[% USE Koha %] +[% USE AuthorisedValues %] +[% USE raw %] + +[% BLOCK items_table %] +
+ [% IF (StaffDetailItemSelection) %] + + + Show filters + + + | Select all + | Clear all + + | Actions: + [% IF CAN_user_tools_items_batchdel %] + Delete selected items + [% END %] + [% IF CAN_user_tools_items_batchmod %] + Modify selected items + [% END %] + [% IF CAN_user_editcatalogue_manage_item_groups && biblio.item_groups.count %] + Add/move to item group + Remove from item group + [% END %] + + [% END %] +
+ + + + [% IF (StaffDetailItemSelection) %][% END %] + [% IF Koha.Preference('LocalCoverImages') %] + + [% END %] + [% IF ( item_level_itypes ) %][% END %] + + + + [% IF Koha.Preference('EnableItemGroups') %] + + [% END %] + + + + + + + + + + + + + + + + + [% IF ( analyze ) %][% END %] + [% IF Koha.Preference('UseCourseReserves') %][% END %] + [% IF ( SpineLabelShowPrintOnBibDetails ) %][% END %] + [% IF ( CAN_user_editcatalogue_edit_items ) %][% END %] + + +
Cover imageItem typeCurrent libraryHome libraryCollectionItem groupCall numberSerial enumeration / chronologyStatusLast seenCheckoutsRenewalsDate accessionedDate last borrowedBarcodeURLCopy numberInventory numberMaterials specifiedPublic notesNon-public notesHost recordsUsed inCourse reservesSpine label 
+[% END %][%# end of block items_table %] + + +[% BLOCK build_items_table_js %] + +[% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index be047cec1b2..8b9b20923f4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -11,6 +11,7 @@ [% USE Price %] [% USE TablesSettings %] [% PROCESS 'i18n.inc' %] +[% PROCESS 'html_helpers/tables/items/catalogue_detail.inc' %] [% SET CoverImagePlugins = KohaPlugins.get_plugins_intranet_cover_images %] [% IF Koha.Preference('AmazonAssocTag') %] @@ -313,71 +314,6 @@
-[% items_table_block_iter = 0 %] -[% BLOCK items_table %] - [% items_table_block_iter = items_table_block_iter + 1 %] -
- [% IF (StaffDetailItemSelection) %] - - Show filters - - - | Select all - | Clear all - - | Actions: - [% IF CAN_user_tools_items_batchdel %] - Delete selected items - [% END %] - [% IF CAN_user_tools_items_batchmod %] - Modify selected items - [% END %] - [% IF CAN_user_editcatalogue_manage_item_groups && biblio.item_groups.count %] - Add/move to item group - Remove from item group - [% END %] - - [% END %] -
- - - - [% IF (StaffDetailItemSelection) %][% END %] - [% IF Koha.Preference('LocalCoverImages') %] - - [% END %] - [% IF ( item_level_itypes ) %][% END %] - - - - [% IF Koha.Preference('EnableItemGroups') %] - - [% END %] - - - - - - - - - - - - - - - - - [% IF ( analyze ) %][% END %] - [% IF Koha.Preference('UseCourseReserves') %][% END %] - [% IF ( SpineLabelShowPrintOnBibDetails ) %][% END %] - [% IF ( CAN_user_editcatalogue_edit_items ) %][% END %] - - -
Cover imageItem typeCurrent libraryHome libraryCollectionItem groupCall numberSerial enumeration / chronologyStatusLast seenCheckoutsRenewalsDate accessionedDate last borrowedBarcodeURLCopy numberInventory numberMaterials specifiedPublic notesNon-public notesHost recordsUsed inCourse reservesSpine label 
-[% END %][%# end of block items_table %] - [% IF Koha.Preference('EnableItemGroups') %]
[% IF CAN_user_editcatalogue_manage_item_groups %] @@ -1331,85 +1267,6 @@ $('#images').html(no_images_msg); } - [% IF StaffDetailItemSelection %] - - let items_selection = {}; - function itemSelectionBuildDeleteLink(tab_id) { - var itemnumbers = items_selection[tab_id]; - if (itemnumbers.length > 0) { - var url = '/cgi-bin/koha/tools/batchMod.pl?op=show&del=1'; - url += '&itemnumber=' + itemnumbers.join('&itemnumber='); - url += '&biblionumber=[% biblionumber | uri %]'; - url += '&src=CATALOGUING'; - $('a.itemselection_action_delete').attr('href', url); - } else { - return false; - } - return true - } - - function itemSelectionBuildModifyLink(tab_id) { - var itemnumbers = items_selection[tab_id]; - if (itemnumbers.length > 0) { - var url = '/cgi-bin/koha/tools/batchMod.pl?op=show'; - url += '&itemnumber=' + itemnumbers.join('&itemnumber='); - url += '&biblionumber=[% biblionumber | uri %]'; - url += '&src=CATALOGUING'; - $('a.itemselection_action_modify').attr('href', url); - } else { - return false; - } - return true; - } - - function itemSelectionBuildActionLinks(tab_id) { - var delete_link_ok = itemSelectionBuildDeleteLink(tab_id); - var modify_link_ok = itemSelectionBuildModifyLink(tab_id); - var div = $("#" + tab_id); - if (modify_link_ok || delete_link_ok) { - $('.itemselection_actions', div).show(); - } else { - $('.itemselection_actions', div).hide(); - } - } - - $(document).ready(function() { - - $(".SelectAll").on("click",function(e){ - e.preventDefault(); - var tab = $(this).data("tab"); - $("input[name='itemnumber'][type='checkbox']", $("#"+tab)).prop('checked', true); - itemSelectionBuildActionLinks(tab); - }); - - $(".ClearAll").on("click",function(e){ - e.preventDefault(); - var tab = $(this).data("tab"); - $("input[name='itemnumber'][type='checkbox']", $("#"+tab)).prop('checked', false); - itemSelectionBuildActionLinks(tab); - }); - - $(".show_filters").on("click",function(e){ - e.preventDefault(); - let tab_id = $(this).data("tab"); - let tab = $("#"+tab_id); - tab.find(".show_filters").hide(); - tab.find(".hide_filters").show(); - $("#"+tab_id+"_table thead tr:eq(1)").remove(); - build_items_table(tab_id, true, { dom: dataTablesDefaults.dom, destroy: true } ); - }); - - $(".hide_filters").on("click",function(e){ - e.preventDefault(); - let tab_id = $(this).data("tab"); - let tab = $("#"+tab_id); - tab.find(".hide_filters").hide(); - tab.find(".show_filters").show(); - $("#"+tab_id+"_table thead tr:eq(1)").remove(); - build_items_table(tab_id, false, { dom: 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>', destroy: true } ); - }); - }); - [% END %] $(document).ready(function() { // Pick details tab to display by default @@ -2154,590 +2011,13 @@ }); [% END %] - const can_edit_items_from = [% To.json(can_edit_items_from || {}) | $raw %]; - const item_type_image_locations = [% To.json(item_type_image_locations) | $raw %]; - const av_loc = new Map([% To.json(AuthorisedValues.Get('LOC')) | $raw %].map( av => [av.authorised_value, av.lib])); - const av_lost = new Map([% To.json(AuthorisedValues.GetDescriptionsByKohaField({ kohafield => 'items.itemlost' })) | $raw %].map( av => [av.authorised_value, av.lib])); - const av_withdrawn = new Map([% To.json(AuthorisedValues.GetDescriptionsByKohaField({ kohafield => 'items.withdrawn' })) | $raw %].map( av => [av.authorised_value, av.lib])); - const av_damaged = new Map([% To.json(AuthorisedValues.GetDescriptionsByKohaField({ kohafield => 'items.damaged' })) | $raw %].map( av => [av.authorised_value, av.lib])); - const av_not_for_loan= new Map([% To.json(AuthorisedValues.GetDescriptionsByKohaField({ kohafield => 'items.notforloan' })) | $raw %].map( av => [av.authorised_value, av.lib])); - const av_restricted = new Map([% To.json(AuthorisedValues.GetDescriptionsByKohaField({ kohafield => 'items.restricted' })) | $raw %].map( av => [av.authorised_value, av.lib])); - [% IF Koha.Preference('UseCourseReserves') %] - const av_courses_term = new Map([% To.json(AuthorisedValues.Get('TERM')) | $raw %].map( av => [av.authorised_value, av.lib])); - [% END %] - [% IF Koha.Preference('URLLinkText') %] - const url_link_text = "[% Koha.Preference('URLLinkText') | html %]"; - [% ELSE %] - const url_link_text = _("Link to resource"); - [% END %] - [%# FIXME The X-Base-Total-Count will be the number of items of the biblios %] - [%# In case or SeparateHoldings we may need to display the number of biblios in each tab %] - [%# Do we need separate/new endpoints or do we hack the somewhere client-side? %] - let item_table_url = "/api/v1/biblios/[% biblio.biblionumber | uri %]/items?"; - let embed = ["+strings,checkout,checkout.patron,transfer,transfer+strings,first_hold,first_hold+strings,first_hold.patron,first_hold.desk,item_type"]; - [% IF Koha.Preference('LocalCoverImages') %] - embed.push('cover_image_ids'); - [% END %] - [% IF Koha.Preference('EnableItemGroups') %] - embed.push('item_group_item.item_group.description'); - [% END %] - [% IF biblio.serial %] - embed.push('serialitem.serial'); - [% END %] - [% IF Koha.Preference('UseRecalls') %] - embed.push('recall', 'recall+strings', 'recall.patron') - [% END %] - [% IF bundlesEnabled %] - embed.push('in_bundle', 'bundle_host', 'bundle_items_lost+count', 'bundle_items_not_lost+count'); - [% END %] - [% IF Koha.Preference('UseCourseReserves') %] - embed.push('course_item.course_reserves.course'); - [% END %] - - // For host records - embed.push('biblio.title'); - - [% IF analyze %] - embed.push('analytics_count'); - [% END %] - - let items_table_settings = { - holdings: [% TablesSettings.GetTableSettings('catalogue', 'detail','holdings_table','json') | $raw %], - otherholdings: [% TablesSettings.GetTableSettings('catalogue', 'detail','otherholdings_table','json') | $raw %], - }; - - function build_items_table (tab_id, add_filters, dt_options) { - - let default_filters = {}; - [% IF Koha.Preference('SeparateHoldings') %] - [% SET SeparateHoldingsBranch = Koha.Preference('SeparateHoldingsBranch') || 'homebranch' %]; - let branch = '[% IF SeparateHoldingsBranch == 'homebranch' %]me.home_library_id[% ELSE %]me.holding_library_id[% END %]'; - if ( tab_id == 'holdings' ) { - default_filters[branch] = '[% Branches.GetLoggedInBranchcode() | html %]'; - } else { - default_filters[branch] = { '!=': '[% Branches.GetLoggedInBranchcode() | html %]' }; - } - [% END %] - - [% IF hidden_count %] - default_filters.lost_status = "0"; - [% END %] - if ( !items_selection.hasOwnProperty(tab_id) ){ - items_selection[tab_id] = []; - } - var items_table = $("#" + tab_id + '_table').kohaTable({ - ajax: { url: item_table_url }, - order: [[ 0, "asc" ]], - embed, - autoWidth: false, - bKohaColumnsUseNames: true, - columns: [ - [% IF (StaffDetailItemSelection) %] - { - data: "me.item_id", - searchable: false, - orderable: false, - render: function (data, type, row, meta) { - if ( can_edit_items_from[row.holding_library_id] ){ - if ( items_selection[tab_id].includes(row.item_id) ) { - return ''.format(row.item_id); - } else { - return ''.format(row.item_id); - } - } else { - return '' - } - } - }, - [% END %] - [% IF Koha.Preference('LocalCoverImages') %] - { - data: "", - className: "cover", - searchable: false, - orderable: false, - render: function (data, type, row, meta) { - if ( !row.cover_image_ids.length > 0 ) { - return ''; - } - let node = '
'; - node += '
'; - row.cover_image_ids.forEach(id => { - node += ''; - }); - node += '
'; - node += '
'; - return node; - } - }, - [% END %] - [% IF ( item_level_itypes ) %] - { - data: "me.itype:biblioitem.itemtype", - className: "itype", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - let node = ''; - [% UNLESS noItemTypeImages %] - let image_location = item_type_image_locations[row.item_type_id]; - let item_type_description = row._strings.item_type_id.str; - node += image_location - ? '%s '.format(escape_str(image_location), escape_str(item_type_description), escape_str(item_type_description)) - : ''; - [% END %] - node += '%s'.format(escape_str(item_type_description)); - return node; - } - }, - [% END %] - { - data: "me.holding_library_id", - className: "location", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return escape_str(row._strings.holding_library_id.str); - } - }, - { - data: "me.home_library_id", - className: "homebranch", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - let nodes = '%s'.format(escape_str(row._strings.home_library_id.str)); - nodes += '' - [%# If permanent location is defined, show description or code and %] - [%# display current location in parentheses. If not, display current location. %] - [%# Note that permanent location is a code, and location may be an authval. %] - let loc_str = row._strings.location.str; - if ( row.permanent_location && row.permanent_location != row.location ) { - let permanent_loc_str = av_loc[row.permanent_location]; - nodes += '%s (%s)'.format(escape_str(permanent_loc_str), escape_str(loc_str)); - } else { - nodes += escape_str(loc_str); - } - nodes += ''; - return nodes; - } - }, - { - data: "me.collection_code", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return escape_str(row._strings.collection_code.str); - } - }, - [% IF Koha.Preference('EnableItemGroups') %] - { - data: "item_group_item.item_group.description", - className: "item_group", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - if ( row.item_group_item ) { - return escape_str(row.item_group_item.item_group.description); - } else { - return ""; - } - } - }, - [% END %] - { - data: "me.callnumber", - className: "itemcallnumber", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return escape_str(row.callnumber); - } - }, - { - data: "me.serial_issue_number", - className: "enumchron", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - let nodes = ""; - [%# FIXME Previously we displayed the column if at least one item of the biblio had an enumchron/serial_issue_number. Now it's only if one item of the ones displayed on the current page, how is that bad? How can it be fixed in an elegant way? Should we display the column only if biblio.serial? %] - let serial = row.serialitem ? row.serialitem.serial : null; - if ( row.serial_issue_number && serial && serial.serialseq ) { - nodes += '%s'.format(escape_str(row.serial_issue_number)); - if ( serial.serialseq && row.serial_issue_number != serial.serialseq ) { - nodes += ' -- ' - nodes += ' %s'.format(escape_str(serial.serialseq)); - } - } else if ( row.serial_issue_number ) { - nodes += ' %s'.format(escape_str(row.serial_issue_number)); - } else if ( serial && serial.serialseq ) { - nodes += '%s'.format(escape_str(serial.serialseq)); - } - if ( serial && serial.publisheddate ) { - nodes += ' (%s)'.format($date(serial.publisheddate)); - } - return nodes; - } - }, - { - data: "me.lost_status", - className: "status", - searchable: false, // FIXME We are losing the ability to search on the status - orderable: false, - render: function (data, type, row, meta) { - let nodes = ""; - if ( row.checkout ) { - nodes += ''; - if ( row.checkout.onsite_checkout ) { - let patron_to_html = $patron_to_html(row.checkout.patron); [%# FIXME What about hide_patron_infos_if_needed?? %] - nodes += _("Currently in local use by %s").format(patron_to_html); - } else { - nodes += ''; - let patron_to_html = $patron_to_html(row.checkout.patron); [%# FIXME What about hide_patron_infos_if_needed?? %] - nodes += _("Checked out to %s").format(patron_to_html); - } - nodes += ': '; - nodes += _("due %s").format($date(row.checkout.due_date, { as_due_date: true })); - nodes += "" - } else if ( row.transfer ) { - if ( row.transfer.datesent ) { - nodes += '%s'.format(_("In transit from %s to %s since %s").format(escape_str(row.transfer._strings.from_library.str), escape_str(row.transfer._strings.to_library.str), $date(row.transfer.datesent))); - } else { - nodes += '%s'.format(_("Transit pending from %s to %s since %s").format(escape_str(row.transfer._strings.from_library_.str), escape_str(row.transfer._strings.to_library.str), $date(row.transfer.daterequested))); - } - } - - if ( row.lost_status ) { - let lost_lib = av_lost.get(row.lost_status.toString()) || _("Unavailable (lost or missing"); - nodes += '%s'.format(escape_str(lost_lib)); - } - - if ( row.withdrawn ) { - let withdrawn_lib = av_withdrawn.get(row.withdrawn.toString()) || _("Withdrawn"); - nodes += '%s'.format(escape_str(withdrawn_lib)); - } - - if ( row.damaged ) { - let damaged_lib = av_damaged.get(row.damaged.toString()) || _("Damaged"); - nodes += '%s'.format(escape_str(damaged_lib)); - } - - if ( row.not_for_loan_status || row.item_type.notforloan ) { - let not_for_loan_lib = av_not_for_loan.get(row.not_for_loan_status.toString()); - nodes += '%s'.format(_("Not for loan")) + ( not_for_loan_lib ? ' (%s)'.format(escape_str(not_for_loan_lib)) : '' ) + ''; - } - - if ( row.first_hold ) { - if ( row.first_hold.waiting_date ) { - if ( row.first_hold.desk ) { - nodes += '%s'.format(_("Waiting at %s, %s since %s.".format(row.first_hold._strings.pickup_library_id.str, row.first_hold.desk.desk_name, $date(row.first_hold.waiting_date)))); - } else { - nodes += '%s'.format(_("Waiting at %s since %s.".format(row.first_hold._strings.pickup_library_id.str, $date(row.first_hold.waiting_date)))); - } - [% IF Koha.Preference('canreservefromotherbranches') %] - if ( row.first_hold.waiting_date || row.first_hold.priority == 1 ) { - let patron_to_html = $patron_to_html(row.first_hold.patron); [%# FIXME What about hide_patron_infos_if_needed?? %] - nodes += ' %s'.format(_("Hold for: %s").format(patron_to_html)); - } - [% END %] - } else { - nodes += '%s'.format(_("There is an item level hold on this item (priority = %s).").format(row.first_hold.priority)); - } - } - - [% IF Koha.Preference('UseRecalls') %] - if ( row.recall ) { - if ( row.recall.waiting_date ) { - nodes += '%s'.format(_("Waiting at %s since %s").format(escape_str(row.recall.pickup_library_id.str), $date(row.recall.waiting_date))); - } else { - let patron_to_html = $patron_to_html(row.recall.patron); - nodes += '%s'.format(_("recalled by %s on %s").format(patron_to_html, $date(row.recall.created_date))) - } - } - [% END %] - - if ( ! ( row.not_for_loan_status || row.item_type.notforloan || row.checked_out_date || row.lost_status || row.withdrawn || row.damaged || row.transfer || row.first_hold || row.recall ) ) { - nodes += ' %s'.format(_("Available")) - } - - if ( row.restricted_status ) { - nodes += '(%s)'.format(escape_str(av_restricted.get(row.restricted_status.toString()))); - } - - [% IF bundlesEnabled %] - if ( row.in_bundle ) { - nodes += '%s'.format(_("In bundle: %s").format($biblio_to_html(row.bundle_host.biblio, { link: true }))); - } - [% END %] - return nodes; - } - }, - { - data: "me.last_seen_date", - className: "datelastseen", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return $date(row.last_seen_date); - } - }, - { - data: "me.checkouts_count", - className: "issues", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return row.checkouts_count || 0; - } - }, - { - data: "me.renewals_count", - className: "renewals", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return row.renewals_count || 0; - } - }, - { - data: "me.acquisition_date", - className: "dateaccessioned", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return $date(row.acquisition_date); - } - }, - { - data: "me.last_checkout_date", - className: "datelastborrowed", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return $date(row.last_checkout_date); - } - }, - { - data: "me.external_id", - className: "", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return '%s'.format(row.biblio_id, row.item_id, row.external_id); - } - }, - { - data: "me.uri", - className: "uri", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - if ( !row.uri ) return ""; - - let nodes = ''; - if ( row.uri.split(' \| ').length > 1 ) { - row.uri.split(' \| ').forEach((uri, i) => { - nodes += '%s
'.format(escape_str(uri), escape_str(uri)); - }); - } else { - nodes += '%s
'.format(escape_str(row.uri), escape_str(url_link_text)); - } - return nodes; - } - }, - { - data: "me.copy_number", - className: "copynumber", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return escape_str(row._strings.copy_number ? row._strings.copy_number.str : row.copy_number); - } - }, - { - data: "me.inventory_number", - className: "stocknumber", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return escape_str(row.inventory_number); - } - }, - { - data: "me.materials_notes", - className: "materials", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return escape_str(row.materials_notes); - } - }, - { - data: "me.public_notes", - className: "itemnotes", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return row.public_notes ? escape_str(row.public_notes).replaceAll('\n', '
') : ''; - } - }, - { - data: "me.internal_notes", - className: "nonpublicnote", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - return escape_str(row.internal_notes); - } - }, - { - data: "biblio.title", - searchable: false, - orderable: true, - render: function (data, type, row, meta) { - if ( row.biblio_id == [% biblio.biblionumber | html %] ) return ""; - return '%s'.format(row.biblio_id, row.biblio.title); - } - }, - [% IF analyze %] - { - data: "analytics_count", - searchable: false, - orderable: false, - render: function (data, type, row, meta) { - if (row.analytics_count == 0) return "" - return '%s analytics'.format(row.item_id, row.analytics_count); - } - }, - { - data: "analytics_count", // create analytics link - searchable: false, - orderable: false, - render: function (data, type, row, meta) { - return 'Create analytics'.format(row.biblio_id, row.item_id); - } - }, - [% END %] - [% IF Koha.Preference('UseCourseReserves') %] - { - data: "course_item.course_reserves.course.course_name", - searchable: true, - orderable: true, - render: function (data, type, row, meta) { - let nodes = ''; - if (!row.course_item) return nodes; - row.course_item.course_reserves.forEach((cr, i) => { - let c = cr.course; - if ( c.enabled != 'yes' ) return; - nodes += '

'; - nodes += ''.format(c.course_id); - nodes += escape_str(c.course_name); - if ( c.section ) { - nodes += ' ' + escape_str(c.section); - } - if ( c.term ) { - nodes += ' ' + av_courses_term.get(c.term.toString()); - } - nodes += '

'; - }); - return nodes; - } - }, - [% END %] - [% IF ( SpineLabelShowPrintOnBibDetails ) %] - { - data: "", - searchable: false, - orderable: false, - render: function (data, type, row, meta) { - return ' Print label'.format(escape_str(row.external_id)); - } - }, - [% END %] - [% IF CAN_user_editcatalogue_edit_items %] - { - data: function( row, type, val, meta ) { - let nodes = ''; - if ( can_edit_items_from[row.holding_library_id] ){ - [% IF Koha.Preference('LocalCoverImages') OR Koha.Preference('OPACLocalCoverImages') %] - nodes += '
'; - nodes += ' Edit'.format(row.biblio_id, row.item_id); - nodes += ' '; - nodes += '
'; - [% ELSE %] - nodes += ' Edit'.format(row.biblio_id, row.item_id); - [% END %] - } - [% IF bundlesEnabled %] - // FIXME How do we handle that correctly? - nodes += ''.format(escape_str(row.bundle_items_not_lost_count), escape_str(row.bundle_items_lost_count)); - [% END %] + - return nodes; - }, - className: "actions", - searchable: false, - orderable: false - } - [% END %] - ], - initComplete: function( settings, json ){ - let table = settings.oInstance.api(); - table.columns().every(function(i){ - let is_empty = true; - let nodes = this.nodes(); - nodes.each((td, ii) => { - if ( $(td).html() !== '' ) { - is_empty = false; - return; - } - }); - if ( is_empty ) { - table.columns(i).visible(false); - } - }); - itemSelectionBuildActionLinks(tab_id); - }, - [% IF StaffDetailItemSelection %] - drawCallback: function(settings){ - var api = new $.fn.dataTable.Api(settings) - $.each( - $(this).find("tbody tr td:first-child"), - function (index, e) { - let tr = $(this).parent() - let row = api.row(tr).data() - if (!row) return // Happen if the table is empty - $(this).find("input[name='itemnumber'][type='checkbox']").on("change", function(){ - let itemnumber = parseInt($(this).val()); - if( $(this).prop("checked") ){ - items_selection[tab_id].push(itemnumber); - } else { - items_selection[tab_id] = items_selection[tab_id].filter( id => id != itemnumber ); - } - itemSelectionBuildActionLinks(tab_id); - }); - } - ); - }, - [% END %] - ...dt_options, - }, - items_table_settings[tab_id], - add_filters, - default_filters, - ); + [%# The following PROCESS needs: %] + [%# can_edit_items_from item_type_image_locations %] + [% PROCESS build_items_table_js biblio => biblio %] - return items_table; - } - [% CoverImagePlugins | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] -- 2.34.1