diff --git a/account_compute_tax_amount/README.rst b/account_compute_tax_amount/README.rst
deleted file mode 100644
index eee02f1be..000000000
--- a/account_compute_tax_amount/README.rst
+++ /dev/null
@@ -1,13 +0,0 @@
-Recompute tax amount
-====================
-
-The way the tax amount is computed in journal entries 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/account_compute_tax_amount/__init__.py b/account_compute_tax_amount/__init__.py
deleted file mode 100644
index e1e9ab3f7..000000000
--- a/account_compute_tax_amount/__init__.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-# Author Vincent Renaville. Copyright 2013 Camptocamp SA
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-##############################################################################
-
-from . import account_move_line
diff --git a/account_compute_tax_amount/__openerp__.py b/account_compute_tax_amount/__openerp__.py
deleted file mode 100644
index 88cd2fa44..000000000
--- a/account_compute_tax_amount/__openerp__.py
+++ /dev/null
@@ -1,31 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-# Author Vincent Renaville. Copyright 2013-2014 Camptocamp SA
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-##############################################################################
-{
- "name": "Recompute tax_amount",
- "version": "8.0.1.0.0",
- "depends": ["base",
- "account"],
- "author": "Camptocamp,Odoo Community Association (OCA)",
- 'website': 'http://www.camptocamp.com',
- 'license': 'AGPL-3',
- 'data': [],
- 'installable': False,
- 'active': False,
-}
diff --git a/account_compute_tax_amount/account_move_line.py b/account_compute_tax_amount/account_move_line.py
deleted file mode 100644
index 3993e956d..000000000
--- a/account_compute_tax_amount/account_move_line.py
+++ /dev/null
@@ -1,55 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-# Copyright (c) 2013-2014 Camptocamp (http://www.camptocamp.com)
-#
-# Author : Vincent Renaville (Camptocamp)
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as
-# published by the Free Software Foundation, either version 3 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Affero General Public License for more details.
-#
-# You should have received a copy of the GNU Affero General Public License
-# along with this program. If not, see .
-#
-##############################################################################
-
-from openerp import models, fields, api
-
-
-class AccountMoveLine(models.Model):
- _inherit = "account.move.line"
-
- # We set the tax_amount readonly, because we recompute it in every case.
- tax_amount = fields.Float(readonly=True)
-
- @api.one
- def force_compute_tax_amount(self):
- if self.tax_code_id:
- self.tax_amount = self.credit - self.debit
-
- @api.cr_uid_context
- def create(self, cr, uid, vals, context=None, check=True):
- record_id = super(AccountMoveLine, self).create(cr, uid, vals,
- context=context,
- check=check)
- self.force_compute_tax_amount(cr, uid, [record_id], context=context)
- return record_id
-
- @api.cr_uid_ids_context
- def write(self, cr, uid, ids, vals, context=None, check=True,
- update_check=True):
- result = super(AccountMoveLine, self).write(cr, uid, ids, vals,
- context=context,
- check=check,
- update_check=update_check)
-
- if ('debit' in vals) or ('credit' in vals):
- self.force_compute_tax_amount(cr, uid, ids, context=context)
- return result
diff --git a/account_compute_tax_amount/i18n/account_compute_tax_amount.pot b/account_compute_tax_amount/i18n/account_compute_tax_amount.pot
deleted file mode 100644
index 3e0b2a059..000000000
--- a/account_compute_tax_amount/i18n/account_compute_tax_amount.pot
+++ /dev/null
@@ -1,21 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 7.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-10-18 17:47+0000\n"
-"PO-Revision-Date: 2013-10-18 17:47+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr ""
-
diff --git a/account_compute_tax_amount/i18n/ar.po b/account_compute_tax_amount/i18n/ar.po
deleted file mode 100644
index be4662ff8..000000000
--- a/account_compute_tax_amount/i18n/ar.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Arabic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ar/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: ar\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "عناصر دفتر اليومية"
diff --git a/account_compute_tax_amount/i18n/bs.po b/account_compute_tax_amount/i18n/bs.po
deleted file mode 100644
index cb0b2f416..000000000
--- a/account_compute_tax_amount/i18n/bs.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bs/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: bs\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Stavke dnevnika"
diff --git a/account_compute_tax_amount/i18n/cs.po b/account_compute_tax_amount/i18n/cs.po
deleted file mode 100644
index a62a82e18..000000000
--- a/account_compute_tax_amount/i18n/cs.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Czech (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/cs/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: cs\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Položky deníku"
diff --git a/account_compute_tax_amount/i18n/de.po b/account_compute_tax_amount/i18n/de.po
deleted file mode 100644
index 6ecfa604a..000000000
--- a/account_compute_tax_amount/i18n/de.po
+++ /dev/null
@@ -1,21 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 7.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-10-18 17:47+0000\n"
-"PO-Revision-Date: 2015-01-06 13:54+0100\n"
-"Last-Translator: Rudolf Schnapka \n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
-"X-Generator: Poedit 1.5.4\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Journaleinträge"
diff --git a/account_compute_tax_amount/i18n/en.po b/account_compute_tax_amount/i18n/en.po
deleted file mode 100644
index 27f589d05..000000000
--- a/account_compute_tax_amount/i18n/en.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: OCA Transbot \n"
-"Language-Team: English (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: en\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Journal Items"
diff --git a/account_compute_tax_amount/i18n/en_GB.po b/account_compute_tax_amount/i18n/en_GB.po
deleted file mode 100644
index 3243e51e4..000000000
--- a/account_compute_tax_amount/i18n/en_GB.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_GB/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: en_GB\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Journal Items"
diff --git a/account_compute_tax_amount/i18n/es.po b/account_compute_tax_amount/i18n/es.po
deleted file mode 100644
index 2af370b76..000000000
--- a/account_compute_tax_amount/i18n/es.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Spanish translation for account-financial-tools
-# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
-# This file is distributed under the same license as the account-financial-tools package.
-# FIRST AUTHOR , 2014.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools\n"
-"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2013-10-18 17:47+0000\n"
-"PO-Revision-Date: 2014-04-08 19:55+0000\n"
-"Last-Translator: Pedro Manuel Baeza \n"
-"Language-Team: Spanish \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-06-12 06:31+0000\n"
-"X-Generator: Launchpad (build 17041)\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Apuntes contables"
diff --git a/account_compute_tax_amount/i18n/es_CR.po b/account_compute_tax_amount/i18n/es_CR.po
deleted file mode 100644
index 5534b598b..000000000
--- a/account_compute_tax_amount/i18n/es_CR.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: es_CR\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Elementos diario"
diff --git a/account_compute_tax_amount/i18n/es_EC.po b/account_compute_tax_amount/i18n/es_EC.po
deleted file mode 100644
index e589ffdbe..000000000
--- a/account_compute_tax_amount/i18n/es_EC.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_EC/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: es_EC\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Asientos Contables"
diff --git a/account_compute_tax_amount/i18n/es_MX.po b/account_compute_tax_amount/i18n/es_MX.po
deleted file mode 100644
index 8ff570690..000000000
--- a/account_compute_tax_amount/i18n/es_MX.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_MX/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: es_MX\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Elementos diario"
diff --git a/account_compute_tax_amount/i18n/fr.po b/account_compute_tax_amount/i18n/fr.po
deleted file mode 100644
index 7b2868e51..000000000
--- a/account_compute_tax_amount/i18n/fr.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Lignes comptables"
diff --git a/account_compute_tax_amount/i18n/hr.po b/account_compute_tax_amount/i18n/hr.po
deleted file mode 100644
index 2feca3df8..000000000
--- a/account_compute_tax_amount/i18n/hr.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: hr\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Stavke dnevnika"
diff --git a/account_compute_tax_amount/i18n/hu.po b/account_compute_tax_amount/i18n/hu.po
deleted file mode 100644
index 3b950c12a..000000000
--- a/account_compute_tax_amount/i18n/hu.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hu/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: hu\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Könyvelési tételsorok"
diff --git a/account_compute_tax_amount/i18n/it.po b/account_compute_tax_amount/i18n/it.po
deleted file mode 100644
index 4c17449b8..000000000
--- a/account_compute_tax_amount/i18n/it.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Voci Sezionale"
diff --git a/account_compute_tax_amount/i18n/ja.po b/account_compute_tax_amount/i18n/ja.po
deleted file mode 100644
index ef8bcf62f..000000000
--- a/account_compute_tax_amount/i18n/ja.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Japanese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ja/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: ja\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "仕訳項目"
diff --git a/account_compute_tax_amount/i18n/lt.po b/account_compute_tax_amount/i18n/lt.po
deleted file mode 100644
index 3dc56fd0e..000000000
--- a/account_compute_tax_amount/i18n/lt.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "DK įrašai"
diff --git a/account_compute_tax_amount/i18n/mk.po b/account_compute_tax_amount/i18n/mk.po
deleted file mode 100644
index 0fd1f0212..000000000
--- a/account_compute_tax_amount/i18n/mk.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mk/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: mk\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Ставки на дневник"
diff --git a/account_compute_tax_amount/i18n/mn.po b/account_compute_tax_amount/i18n/mn.po
deleted file mode 100644
index 76e724a88..000000000
--- a/account_compute_tax_amount/i18n/mn.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mn/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: mn\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Журналын бичилт"
diff --git a/account_compute_tax_amount/i18n/nb.po b/account_compute_tax_amount/i18n/nb.po
deleted file mode 100644
index 9925a1dc5..000000000
--- a/account_compute_tax_amount/i18n/nb.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: nb\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Journal Elementer"
diff --git a/account_compute_tax_amount/i18n/nl.po b/account_compute_tax_amount/i18n/nl.po
deleted file mode 100644
index 4aba61134..000000000
--- a/account_compute_tax_amount/i18n/nl.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: nl\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Boekingsregels"
diff --git a/account_compute_tax_amount/i18n/nl_BE.po b/account_compute_tax_amount/i18n/nl_BE.po
deleted file mode 100644
index 7d41b45f4..000000000
--- a/account_compute_tax_amount/i18n/nl_BE.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_BE/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: nl_BE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Boekingslijnen"
diff --git a/account_compute_tax_amount/i18n/pt.po b/account_compute_tax_amount/i18n/pt.po
deleted file mode 100644
index fd93e1211..000000000
--- a/account_compute_tax_amount/i18n/pt.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Items Diários"
diff --git a/account_compute_tax_amount/i18n/pt_BR.po b/account_compute_tax_amount/i18n/pt_BR.po
deleted file mode 100644
index 84541296d..000000000
--- a/account_compute_tax_amount/i18n/pt_BR.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Itens do Diário"
diff --git a/account_compute_tax_amount/i18n/ro.po b/account_compute_tax_amount/i18n/ro.po
deleted file mode 100644
index f0453aac5..000000000
--- a/account_compute_tax_amount/i18n/ro.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ro/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: ro\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Elementele Jurnalului"
diff --git a/account_compute_tax_amount/i18n/ru.po b/account_compute_tax_amount/i18n/ru.po
deleted file mode 100644
index af48c94c3..000000000
--- a/account_compute_tax_amount/i18n/ru.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ru/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: ru\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Элементы журнала"
diff --git a/account_compute_tax_amount/i18n/sl.po b/account_compute_tax_amount/i18n/sl.po
deleted file mode 100644
index 2d77763d0..000000000
--- a/account_compute_tax_amount/i18n/sl.po
+++ /dev/null
@@ -1,24 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-# Matjaž Mozetič , 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-21 08:58+0000\n"
-"Last-Translator: Matjaž Mozetič \n"
-"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Dnevniške postavke"
diff --git a/account_compute_tax_amount/i18n/sv.po b/account_compute_tax_amount/i18n/sv.po
deleted file mode 100644
index 35b0ac636..000000000
--- a/account_compute_tax_amount/i18n/sv.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Swedish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sv/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: sv\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Transaktioner"
diff --git a/account_compute_tax_amount/i18n/tr.po b/account_compute_tax_amount/i18n/tr.po
deleted file mode 100644
index b4b615cc2..000000000
--- a/account_compute_tax_amount/i18n/tr.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: tr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "Günlük Maddeleri"
diff --git a/account_compute_tax_amount/i18n/zh_CN.po b/account_compute_tax_amount/i18n/zh_CN.po
deleted file mode 100644
index 6121a35b1..000000000
--- a/account_compute_tax_amount/i18n/zh_CN.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_CN/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: zh_CN\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "日记帐项目"
diff --git a/account_compute_tax_amount/i18n/zh_TW.po b/account_compute_tax_amount/i18n/zh_TW.po
deleted file mode 100644
index 488e7601a..000000000
--- a/account_compute_tax_amount/i18n/zh_TW.po
+++ /dev/null
@@ -1,23 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * account_compute_tax_amount
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: account-financial-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 13:25+0000\n"
-"PO-Revision-Date: 2015-06-03 15:58+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_TW/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: zh_TW\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. module: account_compute_tax_amount
-#: model:ir.model,name:account_compute_tax_amount.model_account_move_line
-msgid "Journal Items"
-msgstr "帳簿項目"
diff --git a/account_compute_tax_amount/static/description/icon.png b/account_compute_tax_amount/static/description/icon.png
deleted file mode 100644
index 3a0328b51..000000000
Binary files a/account_compute_tax_amount/static/description/icon.png and /dev/null differ