Kraven
Kraven

Reputation: 247

Odoo error in the form xml

I work on Odoo, I want to create a module, installation is ok but when I wan to upgrade with a xml file, I have some errors. Here xml code:

<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record id="cym_form" model="ir.ui.view"> 
<field name="name">Import Bank Statements</field>
<field name="model">account.bank.statement.import</field>
<field name="priority">1</field>
<field name="arch" type="xml">
                        <field name="cym_tag"/>
            <field name="modules" widget="one2many_tag"/>
</field>
</record>
</data>
</openerp>

And here error:

ParseError: "Wrong value for ir.ui.view.type: 'data'" while parsing 
/home/production/odoo/addons/crm_cym/form_cym_view.xml:4, near
<record id="cym_form" model="ir.ui.view">
      <field name="name">CYM Tag</field>
      <field name="module">cym.tag</field>
      <field name="priority">1</field>
      <field name="arch" type="xml">
    <data><field name="cym_tag"/>
    <field name="modules" widget="one2many_tag"/>
      </data></field>
    </record>

If you have any ideas, I will be very grateful ! Thank you !

Upvotes: 5

Views: 3097

Answers (1)

Kenly
Kenly

Reputation: 26768

The fields should be inside a form tag.

<form>
    <field name="cym_tag"/>
    <field name="modules" widget="one2many_tag"/>
</form>

Upvotes: 5

Related Questions