自定义模块 Odoo 的安装向导

Installation wizard for a custom module Odoo

我只是在我的 Odoo 自定义模块中创建了一个简单的向导。我用一个按钮打电话,但我需要他在安装模块时出现有什么建议吗?我是 odoo 世界的新手

你可以see how this is done here。基本上在 XML 中创建了一个小的 ir.actions.todo 对象,指向应该执行的操作:

<record id="example_configuration_installer" model="ir.actions.todo">
    <field name="action_id" ref="your_action_to_be_executed"/>
    <field name="type">automatic</field>
</record>