Browse Source

[10.0][MIG] Migrates web_domain_field

pull/617/head
Denis Roussel 8 years ago
parent
commit
043b476ba3
  1. 1
      setup/web_domain_field/odoo/__init__.py
  2. 1
      setup/web_domain_field/odoo/addons/__init__.py
  3. 1
      setup/web_domain_field/odoo/addons/web_domain_field
  4. 6
      setup/web_domain_field/setup.py
  5. 5
      web_domain_field/README.rst
  6. 2
      web_domain_field/__manifest__.py

1
setup/web_domain_field/odoo/__init__.py

@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)

1
setup/web_domain_field/odoo/addons/__init__.py

@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)

1
setup/web_domain_field/odoo/addons/web_domain_field

@ -0,0 +1 @@
../../../../web_domain_field/

6
setup/web_domain_field/setup.py

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

5
web_domain_field/README.rst

@ -24,6 +24,8 @@ limitations as:
* The syntax to include in your domain a criteria involving values from a * The syntax to include in your domain a criteria involving values from a
x2many field is complex. 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 * 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. 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 * 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 .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot :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 <laurent.mignon@acsone.eu> * Laurent Mignon <laurent.mignon@acsone.eu>
* Denis Roussel <denis.roussel@acsone.eu>
Maintainer Maintainer
---------- ----------

2
web_domain_field/__openerp__.py → web_domain_field/__manifest__.py

@ -6,7 +6,7 @@
'name': 'Web Domain Field', 'name': 'Web Domain Field',
'summary': """ 'summary': """
Use computed field as domain""", Use computed field as domain""",
'version': '9.0.1.0.0',
'version': '10.0.1.0.0',
'license': 'AGPL-3', 'license': 'AGPL-3',
'author': 'ACSONE SA/NV,Odoo Community Association (OCA)', 'author': 'ACSONE SA/NV,Odoo Community Association (OCA)',
'website': 'https://acsone.eu/', 'website': 'https://acsone.eu/',
Loading…
Cancel
Save