Must not initialise the terminal if it's not needed, otherwise the
[infodrom.org/service.infodrom.org] / src / InfoCon / buch / infocon
index 4e2ba98..8534e2b 100755 (executable)
@@ -1,7 +1,7 @@
 #! /usr/bin/perl
 
 #  infocon - Admin-Tool for InfoCon
-#  Copyright (c) 1998-2003,2005-7  Martin Schulze <joey@infodrom.org>
+#  Copyright (c) 1998-2003,2005-8  Martin Schulze <joey@infodrom.org>
 #
 #  This program is free software; you can redistribute it and/or modify
 #  it under the terms of the GNU General Public License as published by
@@ -31,6 +31,7 @@ if (!$dbh) {
 }
 
 @categories = ();
+$term = undef;
 
 sub sdate
 {
@@ -227,6 +228,7 @@ sub read_input
     } elsif ($ans eq ".") {
        $ans = '';
     }
+    $ans =~ s/ *$//;
     return $ans;
 }
 
@@ -265,6 +267,8 @@ sub buchung_input
     @categories = get_categories unless @categories;
     my @descriptions = get_descriptions;
 
+    $term = new Term::ReadLine '' unless $term;
+
     $term->addhistory($_) foreach (@categories);
     $term->addhistory($_) foreach (@descriptions);
 
@@ -281,6 +285,11 @@ sub buchung_input
            } elsif ($fieldname[$i] eq "Description") {
                $attribs->{completion_entry_function} = $attribs->{list_completion_function};
                $attribs->{completion_word} = \@descriptions;
+           } elsif ($fieldname[$i] eq "Tax assigned") {
+               if ($input[$i-1] == 0) {
+                   $input[$i++] = 0;
+                   next;
+               }
            } else {
                $attribs->{completion_word} = undef;
            }
@@ -352,7 +361,6 @@ sub usage
     exit 0;
 }
 
-$term = new Term::ReadLine '';
 $i = 0;
 $opt_all = 0;
 $opt_verbose = 0;