コンテンツへスキップ
メニュー
この質問にフラグが付けられました
4 返信
7572 ビュー

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!!

アバター
破棄

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 ?

著作者

yes I define this fields in my class.

著作者

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

関連投稿 返信 ビュー 活動
3
7月 23
67943
1
3月 15
6840
0
3月 15
3963
0
3月 15
3917
1
3月 15
5730