Bug 39182 - Make "Current on-site checkouts allowed" column display depend on OnSiteCheckouts system preference
Summary: Make "Current on-site checkouts allowed" column display depend on OnSiteCheck...
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: System Administration (show other bugs)
Version: unspecified
Hardware: All All
: P5 - low enhancement
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2025-02-20 21:26 UTC by Caroline Cyr La Rose
Modified: 2025-02-21 16:13 UTC (History)
1 user (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Caroline Cyr La Rose 2025-02-20 21:26:00 UTC
We already have some columns in the circulation rules table that depend on system preferences. This allows to lighten the (humongous) table and not have columns that are not taken into account anyway because the system preference is not enabled (see article request columns).

On-site checkouts are not allowed if the OnSiteCheckouts system preference is not enabled. We could hide the related column in the circulation rules if the system preference is disabled.
Comment 1 Caroline Cyr La Rose 2025-02-20 21:53:54 UTC
I did the change, but the new tidy thing emptied the smart-rules.tt file when I went to commit...

This is my diff before the commit (and before I corrected the tabs to spaces)


caroline@cacouana[16:42:09](master-dev)/inlibro/git/koha-master-dev-caroline$ git diff
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt
index 7c36fb4d1d..6560798651 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt
@@ -114,7 +114,9 @@
                         <th class="noExport">Actions</th>
                         <th>Note</th>
                         <th>Current checkouts allowed</th>
-                        <th>Current on-site checkouts allowed</th>
+                        [% IF Koha.Preference('OnSiteCheckouts') %]
+                            <th>Current on-site checkouts allowed</th>
+                        [% END %]
                         <th>Loan period</th>
                         <th>Days mode</th>
                         <th>Unit</th>
@@ -261,13 +263,15 @@
                                             <span>Unlimited</span>
                                         [% END %]
                                     </td>
-                                    <td>
-                                        [% IF maxonsiteissueqty.defined && maxonsiteissueqty != '' %]
-                                            [% maxonsiteissueqty | html %]
-                                        [% ELSE %]
-                                            <span>Unlimited</span>
-                                        [% END %]
-                                    </td>
+                                    [% IF Koha.Preference('OnSiteCheckouts') %]
+                                        <td>
+                                            [% IF maxonsiteissueqty.defined && maxonsiteissueqty != '' %]
+                                                [% maxonsiteissueqty | html %]
+                                            [% ELSE %]
+                                                <span>Unlimited</span>
+                                            [% END %]
+                                        </td>
+                                    [% END %]
                                     <td>[% issuelength | html %]</td>
                                     <td data-code="[% daysmode | html %]">
                                         [% SWITCH daysmode %]
@@ -595,7 +599,9 @@
                         <th>&nbsp;</th>
                         <th>Note</th>
                         <th>Current checkouts allowed</th>
-                        <th>Current on-site checkouts allowed</th>
+                       [% IF Koha.Preference('OnSiteCheckouts') %]
+                            <th>Current on-site checkouts allowed</th>
+                        [% END %]
                         <th>Loan period</th>
                         <th>Days mode</th>
                         <th>Unit</th>
@@ -657,7 +663,9 @@
                 <tr>
                     <th>&nbsp;</th>
                     <th>Total current checkouts allowed</th>
-                    <th>Total current on-site checkouts allowed</th>
+                    [% IF Koha.Preference('OnSiteCheckouts') %]
+                        <th>Total current on-site checkouts allowed</th>
+                    [% END %]
                     <th>Maximum total holds allowed (count)</th>
                     <th>Hold policy</th>
                     <th>Hold pickup library match</th>
@@ -812,7 +820,9 @@
                     <tr>
                         <th>Patron category</th>
                         <th>Total current checkouts allowed</th>
-                        <th>Total current on-site checkouts allowed</th>
+                        [% IF Koha.Preference('OnSiteCheckouts') %]
+                            <th>Total current on-site checkouts allowed</th>
+                        [% END %]
                         <th>Total holds allowed</th>
                         <th>&nbsp;</th>
                     </tr>

I honestly don't have the emotional fortitude today to do it over...
Comment 2 Katrin Fischer 2025-02-21 08:54:32 UTC
That's OK. Before working on something else: make sure you are on the latest ktd (git pull) with the latest images (ktd pull) and also try deleting your node_modules directory and run yarn build. It should cover all bases. We had one report about this happening, but I think it was working after those steps.
Comment 3 Caroline Cyr La Rose 2025-02-21 15:17:33 UTC
I git pulled koha-testing-docker and main (koha), I ktd pulled, I closed everything down and retarted ktd (`ktd --es7 up`), and I still have the same problem. Nothing in stash, empty smart-rules.tt file.
Comment 4 Caroline Cyr La Rose 2025-02-21 15:20:03 UTC
The yarn build part, should that be in the ktd shell?
Comment 5 Caroline Cyr La Rose 2025-02-21 15:50:44 UTC
I'm putting my test plan here just so I don't lose it. I will add it to the commit message whenever/if ever I manage to commit

This patch makes the display of the 'Current on-site checkouts allowed' column in the circulation rules dependent on the OnSiteCheckouts system preference.

To test:
1. Apply patch
2. Go to Administration > Circulation rules
   --> Note that there is no 'Current on-site checkouts allowed' column in the main table
   --> Note that there is no 'Total current on-site checkouts allowed in the 'Default checkout, hold and return policy' table (second table)
3. Enable OnSiteCheckouts
   3.1. Go to Administration > System preferences
   3.2. Search for OnSiteCheckouts
   3.3. Set the system preference to Enable
   3.4. Click 'Save all Circulation preferences
4. Repeat step 2
   --> The column is visible in the main table
   --> The column is visible in the second table
5. Optional: test the on-site checkout functionality, it should still work as before
Comment 6 Katrin Fischer 2025-02-21 16:13:00 UTC
(In reply to Caroline Cyr La Rose from comment #4)
> The yarn build part, should that be in the ktd shell?

Yes :)