Hello, I'm trying to develop my first module. Odoo version is 9.0c
The problem is when I add 'parent="mail.mail_feeds"' into todo_view.xml I get error External ID not found in the system
Do I have to install some additional module(I didn' find any module with name Mail)?
todo_view.xml
<?xml version="1.0"?>
<odoo>
<record model="ir.actions.act_window" id="action_todo_task">
<field name="name">To-Do Task</field>
<field name="res_model">todo.task</field>
<field name="view_type">form</field>
<field name="view_mode">tree, form</field>
</record>
<menuitem id="menu_todo_task" name="To-Do Task"
parent="mail.mail_feeds"
sequence="20"
action="action_todo_task"/>
</odoo>
__openerp__.py
# -*- coding: utf-8 -*-
{
'name': "ToDo application",
'description': "Manage your's todos here",
'application': False,
'version': '0.1',
'data': ['todo_view.xml'],
'installable': True,
'auto_install': False,
'depends': ['mail'],
}
Hello roman, Check the action which is define by you in menuitem that is mail.mail_feeds is right or not