Bugzilla – Attachment 180402 Details for
Bug 39389
Cannot use dataTables export function on checkout table in members/moremember.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39389: Don't stringify the system preference value
Bug-39389-Dont-stringify-the-system-preference-val.patch (text/plain), 2.17 KB, created by
Nick Clemens (kidclamp)
on 2025-04-02 14:21:14 UTC
(
hide
)
Description:
Bug 39389: Don't stringify the system preference value
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2025-04-02 14:21:14 UTC
Size:
2.17 KB
patch
obsolete
>From 10f2855b7fd76213b9ec0688db0d3412542515b4 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Wed, 2 Apr 2025 14:15:44 +0000 >Subject: [PATCH] Bug 39389: Don't stringify the system preference value > >This bug is caused by the code that is intended to hide the export column when disabled failing >because the value of exports_enabled is "0" and not 0 > >To test: >1 - Checkout an item to a patron >2 - Disable ExportCircHistory >3 - Load the patron's circulation table on the Check Out tab >4 - Notice no export column >5 - Click 'Export' above the table and you can export >6 - Go to the patron's circulation table on the Details tab >7 - The export column shows >8 - Try to export - JS error >9 - Apply patch >10 - Clear local storage in the browser >11 - Repeat 3-6 - no more export column and you can export >12 - Enable ExportCircHistory >13 - Confirm the circ table on both pages hsows the export column and can be exported > (You may need to clear local storage again) >--- > koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >index 16c2b333803..5302468dfa3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >@@ -763,7 +763,7 @@ > var theme = "[% theme | html %]"; > var borrowernumber = "[% patron.borrowernumber | html %]"; > var branchcode = "[% Branches.GetLoggedInBranchcode() | html %]"; >- var exports_enabled = "[% Koha.Preference('ExportCircHistory') | html %]"; >+ var exports_enabled = [% Koha.Preference('ExportCircHistory') ? 1 : 0 | html %]; > var AllowCirculate = [% (CAN_user_circulate_circulate_remaining_permissions)? 1 : 0 | html %]; > var AllowRenewalLimitOverride = [% (CAN_user_circulate_override_renewals && Koha.Preference('AllowRenewalLimitOverride') )? 1: 0 | html %]; > var AllowRenewalOnHoldOverride = [% (CAN_user_circulate_override_renewals && Koha.Preference('AllowRenewalOnHoldOverride') )? 1: 0 | html %]; >-- >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 39389
:
180402
|
180570