Hotfix für Fehler bei Lieferantenauftrag per E-Mail versenden, aufgrund von Revision...
authorJan Büren <information@richardson-bueren.de>
Tue, 12 May 2009 09:59:24 +0000 (09:59 +0000)
committerJan Büren <information@richardson-bueren.de>
Tue, 12 May 2009 09:59:24 +0000 (09:59 +0000)
SL/IC.pm

index c84365f..b021422 100644 (file)
--- a/SL/IC.pm
+++ b/SL/IC.pm
@@ -1820,7 +1820,7 @@ sub prepare_parts_for_printing {
   my $placeholders = join ', ', ('?') x scalar(@part_ids);
   my $query        = qq|SELECT mm.parts_id, mm.model, v.name AS make
                         FROM makemodel mm
-                        LEFT JOIN vendor v ON (mm.make = v.id)
+                        LEFT JOIN vendor v ON (mm.make = cast (v.id as text))
                         WHERE mm.parts_id IN ($placeholders)|;
 
   my %makemodel    = ();