From 22d10dbf2e87a8c3b47460f351308aa94bdc6625 Mon Sep 17 00:00:00 2001 From: Guewen Baconnier Date: Tue, 18 Nov 2014 14:15:53 +0100 Subject: [PATCH] More detailed description for account_compute_tax_amount, the current one is lacunar --- __unported__/account_compute_tax_amount/README.rst | 13 +++++++++++++ .../account_compute_tax_amount/__openerp__.py | 1 - 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 __unported__/account_compute_tax_amount/README.rst diff --git a/__unported__/account_compute_tax_amount/README.rst b/__unported__/account_compute_tax_amount/README.rst new file mode 100644 index 000000000..0b8a1f976 --- /dev/null +++ b/__unported__/account_compute_tax_amount/README.rst @@ -0,0 +1,13 @@ +Recompute tax amount +==================== + +The way the tax amount is computed in the core `account` module is prone +to input errors. + +This module forces the the tax amount to always be: `credit - debit` +whatever the configuration of the tax is and whatever the user types in +the tax amount. + +**Warning**: there is no guarantee that this module will work for every +country, at least it works for Switzerland and France where the tax +amount is always `credit - debit`. diff --git a/__unported__/account_compute_tax_amount/__openerp__.py b/__unported__/account_compute_tax_amount/__openerp__.py index a07bf4463..dfe35a3ca 100644 --- a/__unported__/account_compute_tax_amount/__openerp__.py +++ b/__unported__/account_compute_tax_amount/__openerp__.py @@ -23,7 +23,6 @@ "depends": ["base", "account"], "author": "Camptocamp", - "description": """Recompute tax_amount to avoid sign problem""", 'website': 'http://www.camptocamp.com', 'data': [], 'installable': False,