Bugzilla – Attachment 187461 Details for
Bug 38863
Show bookings options on itemtypes.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38863: Show bookings options on itemtypes.pl
Bug-38863-Show-bookings-options-on-itemtypespl.patch (text/plain), 3.00 KB, created by
Paul Derscheid
on 2025-10-06 11:40:10 UTC
(
hide
)
Description:
Bug 38863: Show bookings options on itemtypes.pl
Filename:
MIME Type:
Creator:
Paul Derscheid
Created:
2025-10-06 11:40:10 UTC
Size:
3.00 KB
patch
obsolete
>From c2c806cdcd62270ea5de33ff3d8b7063780508ad Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >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 >Signed-off-by: Paul Derscheid <paul.derscheid@lmscloud.de> >--- > admin/columns_settings.yml | 3 +++ > koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt | 2 ++ > 2 files changed, 5 insertions(+) > >diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml >index 368bd08b113..eed02211b79 100644 >--- a/admin/columns_settings.yml >+++ b/admin/columns_settings.yml >@@ -456,6 +456,9 @@ modules: > - > columnname: automatic_checkin > is_hidden: 1 >+ - >+ columnname: bookable >+ is_hidden: 1 > - > columnname: actions > cannot_be_toggled: 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 5892f6c73d1..53e0757b5dc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >@@ -437,6 +437,7 @@ > <th>Checkin message</th> > <th>Library limitations</th> > <th>Automatic check-in</th> >+ <th>Bookable</th> > <th class="no-export no-sort">Actions</th> > </thead> > [% FOREACH itemtype IN itemtypes %] >@@ -534,6 +535,7 @@ > [% END %] > </td> > <td>[% IF ( itemtype.automatic_checkin ) %]Yes[% ELSE %] [% END %]</td> >+ <td>[% IF ( itemtype.bookable ) %]Yes[% ELSE %] [% END %]</td> > <td class="actions"> > <a href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form&itemtype=[% itemtype.itemtype | uri %]" class="btn btn-default btn-xs"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a> > <a href="/cgi-bin/koha/admin/itemtypes.pl?op=delete_confirm&itemtype=[% itemtype.itemtype | uri %]" class="btn btn-default btn-xs"><i class="fa fa-trash-can"></i> Delete</a> >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38863
:
183070
| 187461