Revision 2fbdc1a1
Von Moritz Bunkus vor etwa 16 Jahren hinzugefügt
SL/CA.pm | ||
---|---|---|
76 | 76 |
c.pos_eur, |
77 | 77 |
c.valid_from, |
78 | 78 |
c.datevautomatik, |
79 |
comma(tk.startdate) AS startdate, |
|
80 |
comma(tk.taxkey_id) AS taxkey, |
|
79 |
comma(tk.startdate::text) AS startdate,
|
|
80 |
comma(tk.taxkey_id::text) AS taxkey,
|
|
81 | 81 |
comma(tx.taxdescription || to_char (tx.rate, '99V99' ) || '%') AS taxdescription, |
82 |
comma(tx.taxnumber) AS taxaccount, |
|
83 |
comma(tk.pos_ustva) AS tk_ustva, |
|
82 |
comma(tx.taxnumber::text) AS taxaccount,
|
|
83 |
comma(tk.pos_ustva::text) AS tk_ustva,
|
|
84 | 84 |
( SELECT accno |
85 | 85 |
FROM chart c2 |
86 | 86 |
WHERE c2.id = c.id |
Auch abrufbar als: Unified diff
Fix für PostgreSQL 8.3, das eine strengere Typenprüfung als frühere Versionen besitzt. Fix für Bug 854.