[FIX] hr_timesheet_invoice: fixed an error in cost ledger report where a param of price_get was forgotten

bzr revid: qdp-launchpad@openerp.com-20111116123636-ezjmjwowd7x2gmpf
This commit is contained in:
Quentin (OpenERP) 2011-11-16 13:36:36 +01:00
parent 1d55b18914
commit 2fbbf7b573
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class account_analytic_cost_ledger(report_sxw.rml_parse):
revenue = 0.0
if lines[id].amount < 0 and lines[id].product_id and lines[id].product_uom_id and lines[id].account_id.pricelist_id:
ctx = {'uom': lines[id].product_uom_id.id}
price = price_obj.price_get(self.cr, self.uid, [lines[id].account_id.pricelist_id.id], lines[id].product_id.id, lines[id].unit_amount, ctx)[lines[id].account_id.pricelist_id.id]
price = price_obj.price_get(self.cr, self.uid, [lines[id].account_id.pricelist_id.id], lines[id].product_id.id, lines[id].unit_amount, False, context=ctx)[lines[id].account_id.pricelist_id.id]
revenue = round(price * lines[id].unit_amount, 2)
r['revenue'] = revenue
self.sum_revenue[account_id] += revenue