Commit 4859e2af authored by Jérome Perrin's avatar Jérome Perrin

fix typo (missing ,)


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5621 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent efb57886
......@@ -253,7 +253,7 @@ selection_uids:list</string> </value>
SELECT\n
IFNULL(COUNT(DISTINCT stock.uid), 0) AS count,\n
IFNULL(SUM(stock.quantity), 0.00) AS quantity\n
IFNULL(SUM(stock.quantity), 0.00) AS quantity,\n
IFNULL(SUM(stock.total_price), 0.00) AS total_price\n
\n
FROM\n
......@@ -399,7 +399,7 @@ WHERE\n
SELECT\n
IFNULL(COUNT(DISTINCT stock.uid), 0) AS count,\n
IFNULL(SUM(stock.quantity), 0.00) AS quantity\n
IFNULL(SUM(stock.quantity), 0.00) AS quantity,\n
IFNULL(SUM(stock.total_price), 0.00) AS total_price\n
\n
FROM\n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment