diff --git a/account_payment_show_invoice/__manifest__.py b/account_payment_show_invoice/__manifest__.py index 47dfc73e39a..68e96dfd880 100644 --- a/account_payment_show_invoice/__manifest__.py +++ b/account_payment_show_invoice/__manifest__.py @@ -4,7 +4,7 @@ "name": "Account Payment Show Invoice", "summary": "Extends the tree view of payments to show the paid invoices " "related to the payments using the vendor reference by default", - "version": "13.0.1.0.1", + "version": "14.0.1.0.0", "category": "Account-payment", "website": "https://github.com/OCA/account-payment", "author": "Eficent, Odoo Community Association (OCA)", diff --git a/account_payment_show_invoice/views/account_payment_view.xml b/account_payment_show_invoice/views/account_payment_view.xml index a8d590158a1..018c4dd6045 100644 --- a/account_payment_show_invoice/views/account_payment_view.xml +++ b/account_payment_show_invoice/views/account_payment_view.xml @@ -1,7 +1,6 @@ - @@ -10,7 +9,7 @@ - + @@ -21,7 +20,7 @@ - + diff --git a/setup/account_payment_show_invoice/odoo/addons/account_payment_show_invoice b/setup/account_payment_show_invoice/odoo/addons/account_payment_show_invoice new file mode 120000 index 00000000000..97c9114942e --- /dev/null +++ b/setup/account_payment_show_invoice/odoo/addons/account_payment_show_invoice @@ -0,0 +1 @@ +../../../../account_payment_show_invoice \ No newline at end of file diff --git a/setup/account_payment_show_invoice/setup.py b/setup/account_payment_show_invoice/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/account_payment_show_invoice/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)