İçereği Atla
Menü
Bu soru işaretlendi
4 Cevaplar
7445 Görünümler

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
Vazgeç

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 ?

Üretici

yes I define this fields in my class.

Üretici

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

İlgili Gönderiler Cevaplar Görünümler Aktivite
3
Tem 23
67764
1
Mar 15
6699
0
Mar 15
3816
0
Mar 15
3767
1
Mar 15
5615