From c02f417d0e45d3cb068303726345dd652001bcfc Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 6 Jun 2025 12:18:33 +0000 Subject: [PATCH] Bug 38863: Show bookings options on itemtypes.pl This patch adds a column to the table of item types in item types administration to show if the item type is bookable by default. The column is hidden by default. To test, apply the patch and restart services. - Go to Administration -> Item types - If necessary, edit an item type and check the "Bookable" checkbox. - In the table of item types, the "Bookbable" column should be hidden by default. - Click the "Columns" button and check the "Bookable" menu item to show it. It should now appear. - Click the "Configure" button and try making changes to the default configuration. Your changes should be reflected on the item types pages. Sponsored-by: Athens County Public Libraries --- admin/columns_settings.yml | 5 ++++- koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml index f4820008150..35ea2a8ee79 100644 --- a/admin/columns_settings.yml +++ b/admin/columns_settings.yml @@ -408,6 +408,9 @@ modules: - columnname: automatic_checkin is_hidden: 1 + - + columnname: bookable + is_hidden: 1 - columnname: actions cannot_be_toggled: 1 @@ -2580,4 +2583,4 @@ modules: - columnname: actions cannot_be_toggled: 1 - cannot_be_modified: 1 \ No newline at end of file + cannot_be_modified: 1 diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt index 0f7915e3657..cefa3633a80 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt @@ -419,6 +419,7 @@ Checkin message Library limitations Automatic check-in + Bookable Actions [% FOREACH itemtype IN itemtypes %] @@ -516,6 +517,7 @@ [% END %] [% IF ( itemtype.automatic_checkin ) %]Yes[% ELSE %] [% END %] + [% IF ( itemtype.bookable ) %]Yes[% ELSE %] [% END %] Edit Delete -- 2.39.5