| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 147 |
| Technical Name |
sst_ref_dyn_dom |
| License | OPL-1 |
| Versions | 18.0 19.0 |
Comprehensive Odoo Reference Field Domain
The reference field type is one of the most interesting features of Odoo. It allows to target any record like a relational field. However, the domain attribute of many2one or many2many field types doesn't work for reference fields due to the plurality and varying target model it is based on. Using domain for reference field in odoo is, for this reason, simply ignored and the the dropdown list of available records (once the model is selected) can't be natively filtered.
This module adds this functionality to your odoo systems. From now on, you can limit the choices for any model your want to target the records through a reference field.
It is very simple and easy to use. You just have to install the module and define for your reference fields, a 'domains' attribute as you define 'domain' for many2one and many2many fields. A part from the 's' in the name, it differs from the domain in that it's value is an object (python dictionary or json object string) mapping for each model name you want to filter, the domain to apply to it.
The following section shows you how to define domains for your reference field with the module.
Use only one model or view field attribute
The attribute name is 'domains' not 'domain'!
Model field attribute
View field attribute
The value of the 'domains' attribute can be either static or dynamic
Set the 'domains attribute at model level using :
a static value directly in the model field.
It can be a python dictionary or ...
... a valid json object string.
a dynamic value with a method rendering :
a python dictionary or ...
... a valid json object string.
Fill in the method object.
Or the string name of the method.
Or set the 'domains' attribute at view level
Its value must be a valid json object string.
Or even at both model and view levels
The method in the model and the attribute in the view.
a python dictionary or ...
... a valid json object string.
The name of the method as value of the 'domains' attribute.
To get full support as soon as possible, Mail questions and even examples data to
TECHNICAL SUPPORT
for fully detailed explanations about the module and its usage
QUESTIONS
for fully detailed explanations about other miscellaneous questions
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module