bzr revid: fp@tinyerp.com-20081220105326-uxkbveaeujba78pq
This commit is contained in:
Fabien Pinckaers 2008-12-20 11:53:26 +01:00
parent d00629031a
commit 2722b55abf
2 changed files with 4 additions and 3 deletions

View File

@ -25,8 +25,9 @@
"author" : "Tiny",
"website" : "http://www.openerp.com",
"category" : "Generic Modules/CRM & SRM",
"description": """The Open ERP case and request tracker enables a group of
people to intelligently and efficiently manage tasks, issues, and requests.
"description": """The generic Open ERP Customer Relationship Management
system enables a group of people to intelligently and efficiently manage
leads, opportunities, tasks, issues, requests, bugs, campaign, claims, etc.
It manages key tasks such as communication, identification, prioritization,
assignment, resolution and notification.

View File

@ -551,7 +551,7 @@ class pos_order(osv.osv):
tax_amount = 0
taxes = [t for t in line.product_id.taxes_id]
computed_taxes = account_tax_obj.compute_inv(
cr, uid, taxes, line.price_subtotal, line.qty)
cr, uid, taxes, line.price_unit, line.qty)
for tax in computed_taxes:
tax_amount += round(tax['amount'], 2)