bemade-addons/bemade_fsm/wizard/new_task_from_template.xml

22 lines
No EOL
881 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="project_task_from_template_wizard_view_form" model="ir.ui.view">
<field name="name">project.task.from.template.wizard.view.form</field>
<field name="model">project.task.from.template.wizard</field>
<field name="arch" type="xml">
<form>
<header>
<button name="action_create_task_from_template" type="object" string="Create Task"/>
<button special="cancel" string="Cancel"/>
</header>
<sheet>
<group>
<field name="task_template_id"/>
<field name="new_task_title"/>
<field name="project_id"/>
</group>
</sheet>
</form>
</field>
</record>
</odoo>