Skip to content

Commit

Permalink
Merge pull request #32377 from alexandre-janniaux/tab-sells-journal/1
Browse files Browse the repository at this point in the history
Qual: sellsjournal: remove tab character in SQL
  • Loading branch information
eldy authored Dec 17, 2024
2 parents b17167d + 1c7deda commit be5f58f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/accountancy/journal/sellsjournal.php
Original file line number Diff line number Diff line change
Expand Up @@ -461,12 +461,12 @@
fk_facture,
COUNT(fd.rowid) as nb
FROM
".MAIN_DB_PREFIX."facturedet as fd
".MAIN_DB_PREFIX."facturedet as fd
WHERE
fd.product_type <= 2
AND fd.fk_code_ventilation <= 0
AND fd.total_ttc <> 0
AND fk_facture IN (".$db->sanitize(implode(",", array_keys($tabfac))).")
AND fk_facture IN (".$db->sanitize(implode(",", array_keys($tabfac))).")
GROUP BY fk_facture
";
$resql = $db->query($sql);
Expand Down

0 comments on commit be5f58f

Please sign in to comment.