From 0b681396415a15a8f5d64fca2a3e2b8c6bbcc360 Mon Sep 17 00:00:00 2001 From: sbejaoui Date: Fri, 16 Jul 2021 13:04:58 +0200 Subject: [PATCH] [14.0][MIG] - account_payment_show_invoice --- account_payment_show_invoice/__manifest__.py | 2 +- account_payment_show_invoice/views/account_payment_view.xml | 5 ++--- .../odoo/addons/account_payment_show_invoice | 1 + setup/account_payment_show_invoice/setup.py | 6 ++++++ 4 files changed, 10 insertions(+), 4 deletions(-) create mode 120000 setup/account_payment_show_invoice/odoo/addons/account_payment_show_invoice create mode 100644 setup/account_payment_show_invoice/setup.py 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, +)