Fehlendes Komma ergänzt
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 15 Jul 2013 16:20:57 +0000 (18:20 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 15 Jul 2013 16:20:57 +0000 (18:20 +0200)
Fixt #2331.

SL/AP.pm

index 7a148d6..f754137 100644 (file)
--- a/SL/AP.pm
+++ b/SL/AP.pm
@@ -371,7 +371,7 @@ sub post_transaction {
         $query =
           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link) | .
           qq|VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, | .
-          qq|        (SELECT taxkey_id FROM chart WHERE accno = ?)| .
+          qq|        (SELECT taxkey_id FROM chart WHERE accno = ?),| .
           qq|        (SELECT tax_id| .
           qq|         FROM taxkeys| .
           qq|         WHERE chart_id= (SELECT id | .
@@ -878,4 +878,3 @@ sub storno {
 }
 
 1;
-