[FIX] Sale: Sale report => sale_report - wrong table join

lp bug: https://launchpad.net/bugs/694248 fixed

bzr revid: mra@mra-laptop-20101227070220-s4v56ta762n3ztyt
This commit is contained in:
Ferdinand @ Camptocamp 2010-12-27 12:32:20 +05:30 committed by Mustufa Rangwala
parent 8ed03e2da9
commit 11cdeb9929
1 changed files with 4 additions and 3 deletions

View File

@ -99,9 +99,10 @@ class sale_report(osv.osv):
sum(l.product_uom_qty*l.price_unit) as price_total,
pt.categ_id, l.order_id
from
sale_order_line l
left join product_uom u on (u.id=l.product_uom)
left join product_template pt on (pt.id=l.product_id)
sale_order_line l ,product_uom u, product_product p, product_template pt
where u.id = l.product_uom
and pt.id = p.product_tmpl_id
and p.id = l.product_id
group by l.id, l.order_id, l.product_id, u.name, pt.categ_id, u.uom_type, u.category_id) el
where s.id = el.order_id
group by el.id,