vclimit auch korrekt für Bugfix 1837 setzen (s.a. Commit davor)
authorJan Büren <jan@lx-office-hosting.de>
Mon, 12 Mar 2012 12:32:49 +0000 (13:32 +0100)
committerJan Büren <jan@lx-office-hosting.de>
Mon, 12 Mar 2012 12:32:49 +0000 (13:32 +0100)
SL/Form.pm

index 6c8bbe9..07e3d3e 100644 (file)
@@ -2545,14 +2545,14 @@ sub all_vc {
 
   $table = $table eq "customer" ? "customer" : "vendor";
 
-  my $query = qq|SELECT count(*) FROM $table WHERE NOT obsolete|;
-  my ($count) = selectrow_query($self, $dbh, $query);
-
   # build selection list
   # Hotfix für Bug 1837 - Besser wäre es alte Buchungsbelege
   # OHNE Auswahlliste (reines Textfeld) zu laden. Hilft aber auch
   # nicht für veränderbare Belege (oe, do, ...)
   my $obsolete = "WHERE NOT obsolete" unless $self->{id};
+  my $query = qq|SELECT count(*) FROM $table WHERE NOT $obsolete|;
+  my ($count) = selectrow_query($self, $dbh, $query);
+
   if ($count < $myconfig->{vclimit}) {
     $query = qq|SELECT id, name, salesman_id
                 FROM $table $obsolete