From 80b85e1bb37689a1003705c2d0fd9651943b8f81 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 20 Sep 2023 06:40:08 -0400 Subject: [PATCH] Bug 34820: (QA follow-up) add filter, update CSV output Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 4 ++-- tools/inventory.pl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt index f7c4084a6b..1937604441 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt @@ -149,7 +149,7 @@
Optional filters for inventory list or comparing barcodes - Scanned items are expected to match one of the selected not for loan critera if any are checked. + Scanned items are expected to match one of the selected not for loan criteria if any are checked.
[% FOREACH status IN statuses %] @@ -313,7 +313,7 @@ Found in wrong place
[% ELSIF problem.key == 'changestatus' %] [% IF result.notforloan %] - Item has unselected Not for loan status [% result.notforloan %]
+ Item has unselected Not for loan status [% result.notforloan | html %]
[% ELSE %] Items has no not for loan status
[% END %] diff --git a/tools/inventory.pl b/tools/inventory.pl index ca52b8faba..65f261feb7 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -411,7 +411,7 @@ if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){ if( $key eq 'wrongplace' ) { $errstr .= "wrong place,"; } elsif( $key eq 'changestatus' ) { - $errstr .= "unknown notforloan status,"; + $errstr .= "unselected notforloan status $item->{notforloan},"; } elsif( $key eq 'not_scanned' ) { $errstr .= "missing,"; } elsif( $key eq 'no_barcode' ) { -- 2.39.5