Bugzilla – Attachment 84813 Details for
Bug 22278
Newly created report group is not selected after saving an SQL report
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22278: Clear cache when creating new report groups or subgroups
Bug-22278-Clear-cache-when-creating-new-report-gro.patch (text/plain), 3.14 KB, created by
Nick Clemens (kidclamp)
on 2019-02-06 12:50:28 UTC
(
hide
)
Description:
Bug 22278: Clear cache when creating new report groups or subgroups
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2019-02-06 12:50:28 UTC
Size:
3.14 KB
patch
obsolete
>From 1c0cff379eb27f0afe331f15653a4bf4167d8037 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Wed, 6 Feb 2019 12:49:58 +0000 >Subject: [PATCH] Bug 22278: Clear cache when creating new report groups or > subgroups > >When a user adds a new group we create it, then fetch the groups from the cache. However, we aren't clearing the cache on creation. This patch fixes that > >To test: > 0) Start a new report > 1) Pick create for the group > 2) Enter code and value > 3) Save > 4) You remain on the page and value and code are now empty (ok) > 5) BUT: The pull down for the group remains "None" instead of reflecting > the new group > 6) Open a new tab and browse to reports - note the group exists and the report is in it > 7) On original tab save report again, the group was not selected so is lost > 8) Apply patch > 9) Retest with a new report >10) Group is created, saved, and selected upon save >11) Subsequent edits include the new group >12) Test with subgroups as well >--- > reports/guided_reports.pl | 9 ++++++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > >diff --git a/reports/guided_reports.pl b/reports/guided_reports.pl >index 80edc2a940..e27e436dbd 100755 >--- a/reports/guided_reports.pl >+++ b/reports/guided_reports.pl >@@ -600,7 +600,6 @@ elsif ( $phase eq 'Save Report' ) { > } > > create_non_existing_group_and_subgroup($input, $group, $subgroup); >- > ## FIXME this is AFTER entering a name to save the report under > if ($sql =~ /;?\W?(UPDATE|DELETE|DROP|INSERT|SHOW|CREATE)\W/i) { > push @errors, {sqlerr => $1}; >@@ -659,7 +658,6 @@ elsif ( $phase eq 'Save Report' ) { > cache_expiry => $cache_expiry, > public => $public, > } ); >- > logaction( "REPORTS", "ADD", $id, "$name | $sql" ) if C4::Context->preference("ReportsLog"); > $template->param( > 'save_successful' => 1, >@@ -1058,7 +1056,6 @@ sub groups_with_subgroups { > > sub create_non_existing_group_and_subgroup { > my ($input, $group, $subgroup) = @_; >- > if (defined $group and $group ne '') { > my $report_groups = C4::Reports::Guided::get_report_groups; > if (not exists $report_groups->{$group}) { >@@ -1068,6 +1065,9 @@ sub create_non_existing_group_and_subgroup { > authorised_value => $group, > lib => $groupdesc, > })->store; >+ my $cache_key = "AuthorisedValues-REPORT_GROUP-0-".C4::Context->userenv->{"branch"}; >+ my $cache = Koha::Caches->get_instance(); >+ my $result = $cache->clear_from_cache($cache_key); > } > if (defined $subgroup and $subgroup ne '') { > if (not exists $report_groups->{$group}->{subgroups}->{$subgroup}) { >@@ -1078,6 +1078,9 @@ sub create_non_existing_group_and_subgroup { > lib => $subgroupdesc, > lib_opac => $group, > })->store; >+ my $cache_key = "AuthorisedValues-REPORT_SUBGROUP-0-".C4::Context->userenv->{"branch"}; >+ my $cache = Koha::Caches->get_instance(); >+ my $result = $cache->clear_from_cache($cache_key); > } > } > } >-- >2.11.0
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 22278
:
84813
|
84855
|
84858