From: Philip Reetz
Date: Fri, 5 Oct 2007 06:20:19 +0000 (+0000)
Subject: Fehler beim Laden von Buchungen, wenn Konto nicht mit einer Steuer verknüpft ist
X-Git-Tag: release-2.6.0beta1~483
X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=1aa5ac26be6aa48cc482bc35f73f36697f17c52b;p=kivitendo-erp.git
Fehler beim Laden von Buchungen, wenn Konto nicht mit einer Steuer verknüpft ist
---
diff --git a/SL/Form.pm b/SL/Form.pm
index 48afe6305..25d437fd1 100644
--- a/SL/Form.pm
+++ b/SL/Form.pm
@@ -2299,7 +2299,7 @@ sub create_links {
LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
WHERE c.link LIKE ?
AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
- OR c.link LIKE '%_tax%')
+ OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
ORDER BY c.accno|;
$sth = $dbh->prepare($query);