From f99c98547ff79ecad2b31bf8076a1f19209bfed3 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 4 Feb 2014 13:52:34 -0500 Subject: [PATCH] Bug 11405 [7] - Add out of order status to CSV file --- tools/inventory.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/inventory.pl b/tools/inventory.pl index 896b750..37c7f28 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -443,6 +443,8 @@ if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){ push @line, "change item status"; } elsif ($item->{problem} eq 'not_scanned' ) { push @line, "item not scanned"; + } elsif ($item->{problem} eq 'out_of_order' ) { + push @line, "possibly out of order"; } } $csv->combine(@line); -- 2.1.4