From: Martin Trigaux Date: Wed, 10 Sep 2014 16:06:38 +0000 (+0200) Subject: [FIX] hr_expense: tax amount computation X-Git-Tag: 8.0.0~25^2~3^2~5^2~6 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=bf9a3723c0cc9b7139a627e43eb7219ca75f064b;p=odoo%2Fodoo.git [FIX] hr_expense: tax amount computation The tax_amount field should contain the basic amount (without tax) for base tax code. (opw 613470) --- diff --git a/addons/hr_expense/hr_expense.py b/addons/hr_expense/hr_expense.py index 54c411a..17547a5 100644 --- a/addons/hr_expense/hr_expense.py +++ b/addons/hr_expense/hr_expense.py @@ -309,16 +309,19 @@ class hr_expense_expense(osv.osv): line.unit_quantity, line.product_id, exp.user_id.partner_id)['taxes']: tax_code_id = tax['base_code_id'] - tax_amount = line.total_amount * tax['base_sign'] if not tax_code_id: continue res[-1]['tax_code_id'] = tax_code_id - res[-1]['tax_amount'] = cur_obj.compute(cr, uid, exp.currency_id.id, company_currency, tax_amount, context={'date': exp.date_confirm}) ## is_price_include = tax_obj.read(cr,uid,tax['id'],['price_include'],context)['price_include'] if is_price_include: ## We need to deduce the price for the tax res[-1]['price'] = res[-1]['price'] - (tax['amount'] * tax['base_sign'] or 0.0) + # tax amount countains base amount without the tax + tax_amount = (line.total_amount - tax['amount']) * tax['base_sign'] + else: + tax_amount = line.total_amount * tax['base_sign'] + res[-1]['tax_amount'] = cur_obj.compute(cr, uid, exp.currency_id.id, company_currency, tax_amount, context={'date': exp.date_confirm}) assoc_tax = { 'type':'tax', 'name':tax['name'],