You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
|
|
{
|
|
"name": 'web_m2x_options',
|
|
"version": "0.1",
|
|
"description":
|
|
"""
|
|
=====================================================
|
|
Add new options for many2one and many2manytags field:
|
|
=====================================================
|
|
|
|
- create: true/false -> disable "create" entry in dropdown panel
|
|
- create_edit: true/false -> disable "create and edit" entry in dropdown panel
|
|
- limit: 10 (int) -> change number of selected record return in dropdown panel
|
|
- m2o_dialog: true/false -> disable quick create M20Dialog triggered on error.
|
|
|
|
Example:
|
|
--------
|
|
|
|
<field name="partner_id" options="{'limit': 10, 'create': false, 'create_edit': false}"/>
|
|
|
|
Note:
|
|
-----
|
|
|
|
if one of those options are not set, many2one field use default many2one field options.
|
|
|
|
Thanks to:
|
|
----------
|
|
|
|
- Nicolas JEUDY <njeudy@tuxservices.com>
|
|
- Valentin LAB <valentin.lab@kalysto.org>
|
|
|
|
""",
|
|
"depends": [
|
|
'base',
|
|
'web',
|
|
],
|
|
"js": [
|
|
'static/src/js/form.js',
|
|
],
|
|
"author": "Tuxservices",
|
|
"installable" : True,
|
|
"active" : False,
|
|
}
|
|
|
|
|