콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
8499 화면

Hello I try to develop a module and a have this strange error when I acces the module "TypeError: viewclass is not a constructor" Code of view.xml I paste below

<?xml version="1.0" encoding="utf-8"?>

<openerp> <data> <menuitem name="IG-OpenERP" id="ig_openerp_main"/> <menuitem name="IG-OpenERP" parent="ig_openerp_main" id="ig_openerp"/>

    <!-- Main form -->
    <record model="ir.ui.view" id="edit_nomfurn">
        <field name="name">Tags</field>
        <field name="model">ig_nomfurn</field>
        <field name="arch" type="xml">
            <form string="Nomprod">
                <field name="den_f"/>
            </form>
        </field>
    </record>

    <!-- Action -->
    <record id="action_nomfurn" model="ir.actions.act_window">
        <field name="name">View nomfurn</field>
        <field name="type">ir.actions.act_window</field>
        <field name="res_model">ig_nomfurn</field>
        <field name="view_type">form</field>
        <field name="view_mode">view,form</field>
        <field name="nomfurn" ref="edit_nomfurn"/>
    </record>

    <menuitem name="Nomprod" parent="ig_openerp" id="ig_nomprod" action="action_nomfurn"/>

</data>

</openerp>

아바타
취소
베스트 답변

Hello , try to change the name of model <field name="model">ig.nomfurn</field> it takes the name of the model not the name of the class . I hope thats it , you can put your python code if you want.

아바타
취소
작성자

Thank you!

관련 게시물 답글 화면 활동
0
9월 25
713
1
12월 24
5710
0
11월 24
2277
2
7월 24
4514
0
4월 24
2791