Commit 74049fb6 authored by Jérome Perrin's avatar Jérome Perrin

fix mistake from 39444


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39477 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c3d08aeb
......@@ -166,7 +166,8 @@ Here, a group of movement means:\n
mirror_section.relative_url as mirror_section_relative_url,\n
mirror_section.title as mirror_section_title,\n
stock.date as date,\n
IFNULL(stock.total_price, 0) as total_price\n
IFNULL(stock.total_price, 0) as total_price,\n
IFNULL(stock.quantity, 0) as total_quantity\n
\n
FROM catalog, stock LEFT JOIN catalog AS mirror_section on \n
( stock.mirror_section_uid = mirror_section.uid )\n
......@@ -195,7 +196,8 @@ Here, a group of movement means:\n
mirror_section.relative_url as mirror_section_relative_url,\n
mirror_section.title as mirror_section_title,\n
stock.date as date,\n
IFNULL(stock.total_price, 0) as total_price\n
IFNULL(stock.total_price, 0) as total_price,\n
IFNULL(stock.quantity, 0) as total_quantity\n
\n
FROM catalog AS catalog_2, stock AS stock_2, \n
catalog AS catalog, stock AS stock LEFT JOIN catalog AS mirror_section\n
......@@ -289,7 +291,8 @@ Here, a group of movement means:\n
mirror_section.relative_url as mirror_section_relative_url,\n
mirror_section.title as mirror_section_title,\n
stock.date as date,\n
IFNULL(stock.total_price, 0) as total_price\n
IFNULL(stock.total_price, 0) as total_price,\n
IFNULL(stock.quantity, 0) as total_quantity\n
\n
FROM catalog, stock LEFT JOIN catalog AS mirror_section on \n
( stock.mirror_section_uid = mirror_section.uid )\n
......@@ -318,7 +321,8 @@ Here, a group of movement means:\n
mirror_section.relative_url as mirror_section_relative_url,\n
mirror_section.title as mirror_section_title,\n
stock.date as date,\n
IFNULL(stock.total_price, 0) as total_price\n
IFNULL(stock.total_price, 0) as total_price,\n
IFNULL(stock.quantity, 0) as total_quantity\n
\n
FROM catalog AS catalog_2, stock AS stock_2, \n
catalog AS catalog, stock AS stock LEFT JOIN catalog AS mirror_section\n
......
1373
\ No newline at end of file
1374
\ No newline at end of file
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