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:
861b9e3
)
Kompatibilitätsfix für PostgreSQL 8 und neuer.
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 21 Jan 2008 08:50:39 +0000
(08:50 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 21 Jan 2008 08:50:39 +0000
(08:50 +0000)
SL/RP.pm
patch
|
blob
|
history
diff --git
a/SL/RP.pm
b/SL/RP.pm
index
76c44e1
..
33912ba
100644
(file)
--- a/
SL/RP.pm
+++ b/
SL/RP.pm
@@
-809,7
+809,7
@@
sub trial_balance {
FROM acc_trans ac
JOIN chart c ON (ac.chart_id = c.id)
$dpt_join
- WHERE (ac.transdate < (select date_trunc('year',
date ?
)))
+ WHERE (ac.transdate < (select date_trunc('year',
?::date
)))
$dpt_where
$project
GROUP BY c.accno, c.category, c.description |;