From 2fbdc1a1bd191b852f005542716af4c5f225438c Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 25 Aug 2008 07:14:42 +0000 Subject: [PATCH] =?utf8?q?Fix=20f=C3=BCr=20PostgreSQL=208.3,=20das=20eine?= =?utf8?q?=20strengere=20Typenpr=C3=BCfung=20als=20fr=C3=BChere=20Versione?= =?utf8?q?n=20besitzt.=20Fix=20f=C3=BCr=20Bug=20854.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/CA.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SL/CA.pm b/SL/CA.pm index 4604f13e3..9eeb905f5 100644 --- a/SL/CA.pm +++ b/SL/CA.pm @@ -76,11 +76,11 @@ sub all_accounts { c.pos_eur, c.valid_from, c.datevautomatik, - comma(tk.startdate) AS startdate, - comma(tk.taxkey_id) AS taxkey, + comma(tk.startdate::text) AS startdate, + comma(tk.taxkey_id::text) AS taxkey, comma(tx.taxdescription || to_char (tx.rate, '99V99' ) || '%') AS taxdescription, - comma(tx.taxnumber) AS taxaccount, - comma(tk.pos_ustva) AS tk_ustva, + comma(tx.taxnumber::text) AS taxaccount, + comma(tk.pos_ustva::text) AS tk_ustva, ( SELECT accno FROM chart c2 WHERE c2.id = c.id -- 2.20.1