自定义模块Odoo的安装向导

时间:2015-01-07 20:19:29

标签: odoo

我只是在我的自定义模块中为Odoo创建一个简单的向导。我打电话使用按钮,但我需要他在安装模块时出现任何建议?我是odoo world的新人

1 个答案:

答案 0 :(得分:3)

你可以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>