diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 6b943b790..cbdc6a73d 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20190525.0 \ No newline at end of file +11.0.20190613.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 6be73c56d..331c1f6db 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -16,6 +16,7 @@ setuptools.setup( 'odoo11-addon-account_credit_control', 'odoo11-addon-account_credit_control_dunning_fees', 'odoo11-addon-account_document_reversal', + 'odoo11-addon-account_fiscal_position_vat_check', 'odoo11-addon-account_fiscal_year', 'odoo11-addon-account_group_menu', 'odoo11-addon-account_invoice_constraint_chronology', diff --git a/setup/account_fiscal_position_vat_check/odoo/addons/account_fiscal_position_vat_check b/setup/account_fiscal_position_vat_check/odoo/addons/account_fiscal_position_vat_check new file mode 120000 index 000000000..bc7f615f3 --- /dev/null +++ b/setup/account_fiscal_position_vat_check/odoo/addons/account_fiscal_position_vat_check @@ -0,0 +1 @@ +../../../../account_fiscal_position_vat_check \ No newline at end of file diff --git a/setup/account_fiscal_position_vat_check/setup.cfg b/setup/account_fiscal_position_vat_check/setup.cfg new file mode 100644 index 000000000..3c6e79cf3 --- /dev/null +++ b/setup/account_fiscal_position_vat_check/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/account_fiscal_position_vat_check/setup.py b/setup/account_fiscal_position_vat_check/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_fiscal_position_vat_check/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)