From fbebafc1d4f36fa88fc16014d5ae480763bfbdca Mon Sep 17 00:00:00 2001 From: nguyenhk Date: Wed, 29 Sep 2021 16:59:33 +0700 Subject: [PATCH] [IMP] account_reconcile_restrict_partner_mismatch: black, isort, prettier --- account_reconcile_restrict_partner_mismatch/__manifest__.py | 2 +- .../odoo/addons/account_reconcile_restrict_partner_mismatch | 1 + setup/account_reconcile_restrict_partner_mismatch/setup.py | 6 ++++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 120000 setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch create mode 100644 setup/account_reconcile_restrict_partner_mismatch/setup.py diff --git a/account_reconcile_restrict_partner_mismatch/__manifest__.py b/account_reconcile_restrict_partner_mismatch/__manifest__.py index 694d288e..c24f65f8 100644 --- a/account_reconcile_restrict_partner_mismatch/__manifest__.py +++ b/account_reconcile_restrict_partner_mismatch/__manifest__.py @@ -8,7 +8,7 @@ "version": "13.0.1.0.0", "depends": ["account"], "author": "Camptocamp, Odoo Community Association (OCA)", - "website": "http://www.github.com/OCA/account-reconcile", + "website": "https://github.com/OCA/account-reconcile", "category": "Finance", "license": "AGPL-3", "data": ["report/account_move_lines_report.xml", "security/ir.model.access.csv"], diff --git a/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch b/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch new file mode 120000 index 00000000..a6e2aa0c --- /dev/null +++ b/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch @@ -0,0 +1 @@ +../../../../account_reconcile_restrict_partner_mismatch \ No newline at end of file diff --git a/setup/account_reconcile_restrict_partner_mismatch/setup.py b/setup/account_reconcile_restrict_partner_mismatch/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_reconcile_restrict_partner_mismatch/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)