Skip to Content
Menú
This question has been flagged
4 Respostes
7461 Vistes

Hello!

I try to create a new module as belown :

class test(osv.osv):

    _name = 'test'
    _columns = {
      'reference': fields.char('Reference', size=50),
      'test_lines': fields.one2many('test', 'test_name', 'test Lines'),
      'test_name': fields.many2one('test', 'Parent test', ondelete='cascade', select=True),
  'nom_produit': fields.char('Produit', size=40),
  'date_debut': fields.date('Etude commencee le :'),
  'date_fin': fields.date('Etude terminee le :'),
  'test': fields.char('Test', size=40),
  'controle': fields.char('Controle', size=40),
  'commentaire': fields.char('Commentaire',size=40),    
}

test()

and the xml file :

        <record id="test_form_view" model="ir.ui.view">
            <field name="name">test.form</field>
            <field name="model">test</field>
            <field name="type">form</field>
            <field eval="7" name="priority"/>
            <field name="arch" type="xml">
            <form string="ETUDE DE STABILITE">
                <group colspan="4" col="6">
                    <field name="reference"/>
                    <field name="nom_produit"/>
                    <field name="date_debut"/>
                    <field name="date_fin"/>
                </group>
                <notebook colspan="4" >
                    <page string="Test">
                        <field colspan="4" name="test_lines" nolabel="1" widget="one2many_list">
                            <tree string="Tests" editable="bottom">
                                <field name="test"/>
                                <field name="controle"/>
                                <field name="commentaire"/>
                            </tree>
                            <form string="Test">
                                <group colspan="4" col="6">
                                    <field name="test"/>
                                    <field name="controle"/>
                                    <field name="commentaire"/>
                                </group>
                            </form>
                        </field>
                    </page>
                </notebook>
            </form>
</field>
</record>

but when i§I try to install the module I have this erreur :

Error occurred while validating the field(s) arch: Invalid XML for View Architecture!

Help me cause i didn't figure out where is the probleme!!

Avatar
Descartar

Can you please all relevant lines of the server logs? Normally the server logs show exactly where the error happens.

Have you define the "test, controle, commentaire" fields in your class ?

Autor

yes I define this fields in my class.

Autor

I can't find a solution can u help me plz

Related Posts Respostes Vistes Activitat
3
de jul. 23
67801
1
de març 15
6718
0
de març 15
3837
0
de març 15
3785
1
de març 15
5640