Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
5 ตอบกลับ
3244 มุมมอง

I want to inherit the module crm.lead and i have an error at the module name level ,

"module non trouvé: crm.lead" , who can help me please.

this is the part of my code:

<record id="view_leads_tree" model="ir.ui.view">
            <field name="name">crm.lead.tree.inherit</field>
            <field name="model">crm.lead</field>
            <field eval="8" name="priority"/>
            <field name="inherit_id" ref="crm.crm_case_tree_view_leads"/>
            <field name="arch" type="xml">
                <tree string="leads">
                    <field name="state"/>
                    <field name="partner_id"/>
                    <field name="user_id"/>
                </tree>
            </field>
        </record>

       <record id="action_lead" model="ir.actions.act_window">
            <field name="name">leads list</field>
            <field name="type">ir.actions.act_window</field>
            <field name="res_model">crm.lead</field>
            <field name="view_type">tree</field> 
            <field name="view_mode">tree</field>        
            <field name="domain">[]</field>
            <field name="context">{}</field>
            <field name="help">Manage the contact titles you want to have available in your system and the way you want to print them in letters and other documents. Some example: Mr., Mrs.
            </field>
        </record>
อวตาร
ละทิ้ง
ผู้เขียน

thanks Niyas Raphy but how can i specify the depends? (@api.depends('crm.lead'), like this ??)

Hi, you can give the depends as nikhil described in the answer

คำตอบที่ดีที่สุด

Hello, check that you have specified the crm in the depends

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Its may help you.


In __openerp__.py

{

    'name': "Module Name",

    'summary': """ """,

    'version': '10.0.1.0.0',

    'author': 'ME',

    'website': "http://www.mycompany.com",

    'company': 'My Company',

    'category': 'Sales',

    'depends': ['base', 'crm'],

    'data': [      

    ],

    'installable': True,

    'auto_install': False,

Add crm in openerp file in depends.

อวตาร
ละทิ้ง
ผู้เขียน คำตอบที่ดีที่สุด

issue solved

thanks for your help :)

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
2
ก.ค. 22
5925
2
ก.ค. 21
6387
0
ก.ค. 18
3015
1
พ.ค. 18
9474
1
ก.ค. 17
10627