Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
6332 Prikazi

What is the best practice on using eval on values for integers, bools etc in xml record data files? I see it both used and not in the odoo source code

Example:

<record id="foo_bar" model="foo.bar">
<field name="test">True</field>
<field name="number">1</field>
</record>

vs
<record id="foo_bar" model="foo.bar">
<field name="test" eval="True"/>
<field name="number" eval="1"/>
</record>

Bonus question: If you don't use eval, does Odoo auto evaluate the value?
Avatar
Opusti
Best Answer

Normally, content inside <field> tags are always evaluated as strings.

So using eval for float, integer and boolean is a good practice! 
Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
1
apr. 24
2318
1
avg. 22
3066
0
maj 17
7725
1
mar. 15
4130
2
mar. 15
4674