diff --git a/portal_partner_select_all/__manifest__.py b/portal_partner_select_all/__manifest__.py index bf06dc15d..ec2d2dc6f 100644 --- a/portal_partner_select_all/__manifest__.py +++ b/portal_partner_select_all/__manifest__.py @@ -5,7 +5,7 @@ "version": "13.0.1.0.1", "category": "Custom", "author": "Tecnativa, Odoo Community Association (OCA)", - "website": "https://www.github.com/OCA/partner-contact", + "website": "https://github.com/OCA/partner-contact", "license": "AGPL-3", "depends": ["portal"], "data": ["wizard/portal_wizard.xml"], diff --git a/portal_partner_select_all/wizard/portal_wizard.py b/portal_partner_select_all/wizard/portal_wizard.py index 7065cb41f..7871fcde8 100644 --- a/portal_partner_select_all/wizard/portal_wizard.py +++ b/portal_partner_select_all/wizard/portal_wizard.py @@ -6,7 +6,10 @@ from odoo import api, fields, models class PortalWizard(models.TransientModel): _inherit = "portal.wizard" - set_all_users = fields.Boolean(string="Invite all the contacts", default=False,) + set_all_users = fields.Boolean( + string="Invite all the contacts", + default=False, + ) @api.onchange("set_all_users") def onchange_set_all_users(self): diff --git a/setup/portal_partner_select_all/odoo/addons/portal_partner_select_all b/setup/portal_partner_select_all/odoo/addons/portal_partner_select_all new file mode 120000 index 000000000..f6ab6e005 --- /dev/null +++ b/setup/portal_partner_select_all/odoo/addons/portal_partner_select_all @@ -0,0 +1 @@ +../../../../portal_partner_select_all \ No newline at end of file diff --git a/setup/portal_partner_select_all/setup.py b/setup/portal_partner_select_all/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/portal_partner_select_all/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)