Hello!
I want to enable some features in the res.config.settings model through a .xml file, but apparently, something is missing because after upgrading my custom module, the group_multi_company and group_use_lead fields remain unchecked. This is my sample code:
file: res_config_data.xml
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="my_config_settings" model="res.config.settings">
<field name="paperformat_id" ref="base.paperformat_us"/>
<field name="snailmail_duplex" eval="True"/>
<field name="group_multi_company" eval="True"/>
<field name="group_use_lead" eval="True"/>
</record>
</odoo>
file: __manifest__.py
...
'data': [ 'data/res_config_data.xml',
],
...
Any suggestion? Thanks in advance.