Kunden Lieferungen-Tab: bei "Alle" nach der Kundenid suchen
authorThomas Heck <theck@linet-services.de>
Tue, 26 Nov 2013 16:22:43 +0000 (17:22 +0100)
committerThomas Heck <theck@linet-services.de>
Tue, 26 Nov 2013 16:22:43 +0000 (17:22 +0100)
fixt #2393

SL/Controller/CustomerVendor.pm

index f2e4ff6..0ffa2f5 100644 (file)
@@ -407,21 +407,24 @@ sub action_get_delivery {
     $qty_sign = '';
   }
 
-  my $where = ' WHERE 1=1 ';
+  my $where = ' WHERE 1=1';
   my @values;
 
   if ( !$self->is_vendor() && $::form->{shipto_id} && $::form->{shipto_id} ne 'all' ) {
-    $where .= "AND ${arap}.shipto_id = ?";
+    $where .= " AND ${arap}.shipto_id = ?";
     push(@values, $::form->{shipto_id});
+  } else {
+    $where .= " AND ${arap}.${db}_id = ?";
+    push(@values, $::form->{id});
   }
 
   if ( $::form->{delivery_from} ) {
-    $where .= "AND ${arap}.transdate >= ?";
+    $where .= " AND ${arap}.transdate >= ?";
     push(@values, conv_date($::form->{delivery_from}));
   }
 
   if ( $::form->{delivery_to} ) {
-    $where .= "AND ${arap}.transdate <= ?";
+    $where .= " AND ${arap}.transdate <= ?";
     push(@values, conv_date($::form->{delivery_to}));
   }