Ir al contenido
Menú
Se marcó esta pregunta
4 Respuestas
7443 Vistas

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

Publicaciones relacionadas Respuestas Vistas Actividad
3
jul 23
67761
1
mar 15
6699
0
mar 15
3816
0
mar 15
3767
1
mar 15
5615