Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
5553 Lượt xem

xml file

<?xml version="1.0"?> <openerp><data> <!-- Action to open To-do Task list --> <act_window id="action_todo_task" name="To-do Task" res_model="todo.task" view_mode="tree,form" />

       <!-- Menu item to open To-do Task list --> <menuitem id="menu_todo_task" name="To-Do Tasks" sequence="20" action="action_todo_task" /> </data></openerp>


__openerp__.py

{ 'name':'To-Do Application', 'description':'Manage your personal tasks with this module', 'author':'Priyanshi Dharu', 'depends':['mail'], 'application':True, 'data':['todo_view.xml'],}

model.py

# -*- coding: utf-8 -*-from openerp import models,fieldsclass TodoTask(models.Model):

 #model added to our custom module _name = 'todo.task' #attribute used to refer this model name as name = fields.Char('Description',required=True) #name of record is_done = fields.Boolean('Done?') active = fields.Boolean('Active?',default=True) #showing only active records


__init.py

from . import todo_model


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hello,

Try to add a parent in the menuitem as:


<menuitem id="menu_todo_task"
name="To-Do Tasks"
parent="mail.mail_channel_menu_root_chat"
sequence="20"
action="action_todo_task" />
Ảnh đại diện
Huỷ bỏ
Tác giả

thank you:)

i have some more doubts as well , keep answering :)

Câu trả lời hay nhất

The problem is not clear, What the problem, Also you have not parent menu in xml file

Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

yes i forgot to mention that , that parent menu creates error

Error: External id not found in system:mail.mail_feeds" while parsing "filename"


<?xml version="1.0"?> <openerp><data> <!-- Action to open To-do Task list --> <act_window id="action_todo_task" name="To-do Task" res_model="todo.task" view_mode="tree,form" />

       <!-- Menu item to open To-do Task list --> <menuitem id="menu_todo_task" name="To-Do Tasks" parent = "mail.mail_feeds" sequence="20" action="action_todo_task" /> </data></openerp>

Ảnh đại diện
Huỷ bỏ

First Check the mail module is installed, second check you module is depends on the mail module

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 10 23
96
1
thg 6 23
5561
0
thg 6 21
3413
5
thg 12 24
33544
2
thg 2 25
1228