diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 8de9fe7b7..97490a2f1 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20181011.0 \ No newline at end of file +11.0.20181025.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index d3abd02a1..98f151070 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -14,6 +14,7 @@ setuptools.setup( 'odoo11-addon-account_banking_sepa_direct_debit', 'odoo11-addon-account_payment_mode', 'odoo11-addon-account_payment_order', + 'odoo11-addon-account_payment_order_return', 'odoo11-addon-account_payment_partner', 'odoo11-addon-account_payment_purchase', 'odoo11-addon-account_payment_sale', diff --git a/setup/account_payment_order_return/odoo/addons/account_payment_order_return b/setup/account_payment_order_return/odoo/addons/account_payment_order_return new file mode 120000 index 000000000..5bd13a967 --- /dev/null +++ b/setup/account_payment_order_return/odoo/addons/account_payment_order_return @@ -0,0 +1 @@ +../../../../account_payment_order_return \ No newline at end of file diff --git a/setup/account_payment_order_return/setup.cfg b/setup/account_payment_order_return/setup.cfg new file mode 100644 index 000000000..3c6e79cf3 --- /dev/null +++ b/setup/account_payment_order_return/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/account_payment_order_return/setup.py b/setup/account_payment_order_return/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_payment_order_return/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)