From 90626e9d24c78a2f1b4e6fff32b9268fe4c6e921 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 88532d1..0cd34c6 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -440,6 +440,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