We have created a custom module in Odoo by inheriting res.partner
view and some custom fields, which are readonly, were added. Fields such as customer_since_date
and customer_id
.
We want to import data to these fields but Odoo does not allow import info into readonly fields.
Is there any way to import data in those fields forcefully?
<field name="phone" position="attributes"> <attribute name="readonly">True</attribute> </field>
Is this a proper way? @Whitesell – Korrie