projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
434f88f
)
Hotfix für Fehler bei Lieferantenauftrag per E-Mail versenden, aufgrund von Revision...
author
Jan Büren
<information@richardson-bueren.de>
Tue, 12 May 2009 09:59:24 +0000
(09:59 +0000)
committer
Jan Büren
<information@richardson-bueren.de>
Tue, 12 May 2009 09:59:24 +0000
(09:59 +0000)
SL/IC.pm
patch
|
blob
|
history
diff --git
a/SL/IC.pm
b/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 = ();