From 47da0da771d9b25c5e759f86a5ab662cf1eed03f 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 files changed, 2 insertions(+), 0 deletions(-) diff --git a/tools/inventory.pl b/tools/inventory.pl index 2145b55..a6d9646 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -395,6 +395,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); -- 1.7.2.5