From cff74232d4b70e87678c38b7db8ffe752255cc6c Mon Sep 17 00:00:00 2001 From: Denis Roussel Date: Wed, 10 May 2017 14:45:43 +0200 Subject: [PATCH] [10.0][MIG] Migrates web_domain_field --- web_domain_field/README.rst | 5 ++++- web_domain_field/{__openerp__.py => __manifest__.py} | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) rename web_domain_field/{__openerp__.py => __manifest__.py} (94%) diff --git a/web_domain_field/README.rst b/web_domain_field/README.rst index e70f68f28..f3460cce8 100644 --- a/web_domain_field/README.rst +++ b/web_domain_field/README.rst @@ -24,6 +24,8 @@ limitations as: * The syntax to include in your domain a criteria involving values from a x2many field is complex. + * The right side of domain in case of x2many can involve huge amount of ids + (performance problem). * Domains computed by an onchange on an other field are not recomputed when you modify the form and don't modify the field triggering the onchange. * It's not possible to extend an existing domain. You must completely redefine @@ -63,7 +65,7 @@ Usage .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/162/9.0 + :target: https://runbot.odoo-community.org/runbot/162/10.0 @@ -87,6 +89,7 @@ Contributors ------------ * Laurent Mignon +* Denis Roussel Maintainer ---------- diff --git a/web_domain_field/__openerp__.py b/web_domain_field/__manifest__.py similarity index 94% rename from web_domain_field/__openerp__.py rename to web_domain_field/__manifest__.py index 4ff66a1c7..c0d77b4d3 100644 --- a/web_domain_field/__openerp__.py +++ b/web_domain_field/__manifest__.py @@ -6,7 +6,7 @@ 'name': 'Web Domain Field', 'summary': """ Use computed field as domain""", - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'license': 'AGPL-3', 'author': 'ACSONE SA/NV,Odoo Community Association (OCA)', 'website': 'https://acsone.eu/',