From d4ab4fe8dcb4a6f91917dc13bfe176419560725d Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 29 Jan 2021 11:06:34 +0000 Subject: [PATCH] Bug 27576: Don't show import recordds table after cleaning a batch Currently if you clean a batch from the manage marc records page, the import records table appears with no items at the bottom of the screen This is because we test for import_batch_id, we should also make sure we didn't just clean a batch To recreate: 1 - Stage a batch for import 2 - Go to 'Manage staged records' 3 - 'Clean' the batch you just imported 4 - Note the empty table that appears at the bottom of the page 5 - Apply patch 6 - Repeat 1-3 7 - Note the table no longer appears Signed-off-by: Barbara Johnson Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart (cherry picked from commit dc072ee4ba9361d35d92efd46b2935ff1b608b0d) Signed-off-by: Fridolin Somers (cherry picked from commit 329d5797b3c6fc28814dc9f73717eb9f6eba0066) Signed-off-by: Andrew Fuerste-Henry (cherry picked from commit 7dd3a5cd1a3280dae395561f4d44c6ab264cc486) Signed-off-by: Victor Grousset/tuxayo --- .../intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt index b1b8424cab..f67698e550 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt @@ -388,7 +388,7 @@ [% END %] [% END # /IF batch_lis %] - [% IF import_batch_id %] + [% IF import_batch_id && !did_clean %] -- 2.20.1