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:
ad4a0fc
)
zu #406 nicht zuviele ids (email journal) als ar.ids verwenden
author
Jan Büren
<jan@kivitendo.de>
Tue, 12 Nov 2019 10:01:44 +0000
(11:01 +0100)
committer
Jan Büren
<jan@kivitendo.de>
Tue, 12 Nov 2019 10:01:44 +0000
(11:01 +0100)
SL/OE.pm
patch
|
blob
|
history
diff --git
a/SL/OE.pm
b/SL/OE.pm
index
5665b04
..
0492ef3
100644
(file)
--- a/
SL/OE.pm
+++ b/
SL/OE.pm
@@
-105,7
+105,7
@@
sub transactions {
FROM record_links rl1
JOIN record_links rl2 ON (rl1.to_table = rl2.from_table AND rl1.to_id = rl2.from_id)
JOIN record_links rl3 ON (rl2.to_table = rl3.from_table AND rl2.to_id = rl3.from_id)
- WHERE
(rl1.from_table = 'oe') AND rl2
.to_table = 'ar'
+ WHERE
rl1.from_table = 'oe' AND rl2.to_table = 'ar' AND rl3
.to_table = 'ar'
) rl
LEFT JOIN ar ON ar.id = rl.to_id