This question has been flagged
1 Reply
2181 Views

Hello, today I find code that using "ir.actions.todo".


<record id="base.open_menu" model="ir.actions.todo">
<field name="action_id" ref="action_open_website"/>
<field name="state">open</field>
</record>

but "ir.actions.todo" was not in the odoo development document actions.

https://www.odoo.com/documentation/13.0/reference/actions.html


Currently, I don't know what "ir.actions.todo" do and what is field "state" is.

I want to know where can I find a document about this.

Waiting for your help. 

Avatar
Discard
Best Answer

Hi:

ir.actions.todo is used by Odoo to provide Configuration Wizards to walk you through the initial steps of setting up functionality in the system. There is no documentation on it but you can look at the wizards provided by Odoo by activating developer mode and going to Settings > Technical > Actions > Configuration Wizards. One of the wizards provided is the one that you use to select a theme when you install the website module.

Avatar
Discard