]> git.etc.gen.nz Git - planner-tools.git/commitdiff
Add "notes" field to planner2csv.pl
authorHendrik Lippek <hendrik.lippek@avionic-design.de>
Mon, 7 Feb 2011 23:44:09 +0000 (00:44 +0100)
committerAndrew Ruthven <andrew@etc.gen.nz>
Tue, 15 Feb 2011 20:37:25 +0000 (09:37 +1300)
The notes field may contain useful information about the tasks.
So add this field to the .csv file.

planner2csv.pl

index a88d413ceaab60a151e5a788e4c89fe3c4bd30eb..d4b99d6e137a0dafb2c9167641af9c242778f769 100755 (executable)
@@ -30,7 +30,7 @@ my $csv = Text::CSV_XS->new();
 my %id_map;
 
 my @headers = ('id', 'description', 'allocated', 'start', 'end', 'duration (s)', 'percent complete',
-  'predecessor');
+  'predecessor', 'note');
 my %headers;
 for my $i (0..$#headers) {
   $headers{$headers[$i]} = $i;
@@ -81,6 +81,8 @@ sub find_tasks {
 
     push @fields, find_predecessors($task);
 
+    push @fields, $task->findvalue('@note');
+
     push @rows, \@fields;
 
     push @id, '0';