Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
3 Răspunsuri
5916 Vizualizări

I really don't know how to search on google for this question. Is it possible to use fields from relation fields in the attrs "domains"?

I'm getting only  Uncaught Error: Unknown field error.

I want to hide a group until a certain value is selected from a Many2One selection.

<group colspan="4" attrs="{'invisible': [('analysis_document_types_id.value', 'not in', ['xxx', 'yyy'])]}">
	<group string="Contacts Projects" colspan="2">
		<field name="project_ids" widget="many2many_checkboxes" nolabel="1"/>
	</group>
</group>
Imagine profil
Abandonează

what you want is : If your M2O field is empty, then Hide your field field_1 for ex. Right ?

Then what you need to do is :

<group colspan="4" attrs="{'invisible': [('M2O_field', '=', False)]}">....</group>

And if you want to hide it when your M2o field equals a specific value.

Then do this :

<group colspan="4"

attrs="{'invisible': [('M2O_field','in',[%(Module.record_Xml_id)d, %(Module.record_Xml_id)d])]}">....</group>

Autor

Hi Ibrahim, your probably works but I don't have time figuring it out and you didn't explain your attrs. So I rather tried Zbiks workaround with a related field.

Cel mai bun răspuns

You use the related type field, like this:

my_value = fields.Char(string="My related value", related='analysis_document_types_id.value')

and

attrs="{'invisible': [('my_value', 'not in', ['xxx', 'yyy'])]}"

 
Imagine profil
Abandonează
Autor

Thanks your workaround works!

Related Posts Răspunsuri Vizualizări Activitate
1
iul. 21
6767
1
nov. 24
1670
1
sept. 21
9448
1
ian. 24
17059
1
mar. 24
30723