I am working with Studio in a test environment and i want to move the changes over to my production database. When i go to import the customization .Zip file i get the following error. Anyone know what the problem is?
Error while importing module 'studio_customization'.
Only custom models can be modified.
<odoo>
<record id="account.model_account_move" model="ir.model" context="{'studio': True}">
<field name="info"> Main super-class for regular database-persisted Odoo models.
Odoo models are created by inheriting from this class::
class user(Model):
...
The system will later instantiate the class once per database (on
which the class' module is installed).
</field>
<field name="is_mail_thread" eval="True"/>
<field name="model">account.move</field>
<field name="name">Journal Entries</field>
<field name="state">base</field>
<field name="transient" eval="False"/>
</record>
<record id="sale.model_sale_order" model="ir.model" context="{'studio': True}">
<field name="info"> Main super-class for regular database-persisted Odoo models.
Odoo models are created by inheriting from this class::
class user(Model):
...
The system will later instantiate the class once per database (on
which the class' module is installed).
</field>
<field name="is_mail_thread" eval="True"/>
<field name="model">sale.order</field>
<field name="name">Sales Order</field>
<field name="state">base</field>
<field name="transient" eval="False"/>
</record>
</odoo>
file:/c:/windows/temp/tmpdi34bq_l/studio_customization/data/ir_model.xml
2
Make sure those modules are installed and try again.