From 959f5fd1de65ed5d5b776f6207c10f35c5223f79 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 81dc489..affcc13 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -361,6 +361,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