diff --git a/account_ebics_payment_order/README.rst b/account_ebics_payment_order/README.rst index 75caafd..2bb94ee 100644 --- a/account_ebics_payment_order/README.rst +++ b/account_ebics_payment_order/README.rst @@ -22,7 +22,3 @@ Usage Create your Payment Order and generate the bank file. Upload the generated file via the 'EBICS Upload' button on the payment order. -Known issues / Roadmap -====================== - - * Add support for multiple EBICS connections. diff --git a/account_ebics_payment_order/__manifest__.py b/account_ebics_payment_order/__manifest__.py index 3d73d7a..4174e85 100644 --- a/account_ebics_payment_order/__manifest__.py +++ b/account_ebics_payment_order/__manifest__.py @@ -12,8 +12,6 @@ "data": [ "views/account_payment_order_views.xml", ], - # installable False unit OCA payment order becomes - # available for 16.0 "images": ["static/description/cover.png"], - "installable": False, + "installable": True, } diff --git a/setup/account_ebics_payment_order/odoo/addons/account_ebics_payment_order b/setup/account_ebics_payment_order/odoo/addons/account_ebics_payment_order new file mode 120000 index 0000000..5ff2d5c --- /dev/null +++ b/setup/account_ebics_payment_order/odoo/addons/account_ebics_payment_order @@ -0,0 +1 @@ +../../../../account_ebics_payment_order \ No newline at end of file diff --git a/setup/account_ebics_payment_order/setup.py b/setup/account_ebics_payment_order/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/account_ebics_payment_order/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)