diff --git a/account_tax_balance/hooks.py b/account_tax_balance/hooks.py
index 1fafad71..bdc693a5 100644
--- a/account_tax_balance/hooks.py
+++ b/account_tax_balance/hooks.py
@@ -7,11 +7,11 @@ from psycopg2 import sql
def pre_init_hook(cr):
- """ Precreate move_type and fill with appropriate values to prevent
+ """Precreate move_type and fill with appropriate values to prevent
a MemoryError when the ORM attempts to call its compute method on a large
amount of preexisting moves. Note that the order of the mapping is
important as one move can have move lines on accounts of multiple types
- and the move type is set in the order of precedence. """
+ and the move type is set in the order of precedence."""
logger = logging.getLogger(__name__)
logger.info("Add account_move.move_type column if it does not yet exist")
cr.execute("ALTER TABLE account_move ADD COLUMN IF NOT EXISTS move_type VARCHAR")
diff --git a/account_tax_balance/models/account_tax.py b/account_tax_balance/models/account_tax.py
index a2560e6f..243bf65e 100644
--- a/account_tax_balance/models/account_tax.py
+++ b/account_tax_balance/models/account_tax.py
@@ -35,7 +35,7 @@ class AccountTax(models.Model):
)
def _account_tax_ids_with_moves(self):
- """ Return all account.tax ids for which there is at least
+ """Return all account.tax ids for which there is at least
one account.move.line in the context period
for the user company.
diff --git a/account_tax_balance/wizard/open_tax_balances_view.xml b/account_tax_balance/wizard/open_tax_balances_view.xml
index e3ba2373..61894ff7 100644
--- a/account_tax_balance/wizard/open_tax_balances_view.xml
+++ b/account_tax_balance/wizard/open_tax_balances_view.xml
@@ -18,15 +18,15 @@
+ or
+
+
diff --git a/setup/account_tax_balance/odoo/addons/account_tax_balance b/setup/account_tax_balance/odoo/addons/account_tax_balance
new file mode 120000
index 00000000..7d3ea459
--- /dev/null
+++ b/setup/account_tax_balance/odoo/addons/account_tax_balance
@@ -0,0 +1 @@
+../../../../account_tax_balance
\ No newline at end of file
diff --git a/setup/account_tax_balance/setup.py b/setup/account_tax_balance/setup.py
new file mode 100644
index 00000000..28c57bb6
--- /dev/null
+++ b/setup/account_tax_balance/setup.py
@@ -0,0 +1,6 @@
+import setuptools
+
+setuptools.setup(
+ setup_requires=['setuptools-odoo'],
+ odoo_addon=True,
+)