bemade-addons/nuke_mid_task/views/project_task_views.xml
Benoît Vézina 1db303d0a5 nuke task
2025-01-10 11:38:33 -05:00

22 lines
977 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_task_form_inherit_nuke" model="ir.ui.view">
<field name="name">project.task.form.inherit.nuke</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_form2"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='recurrence_id']" position="after">
<field name="can_be_nuked" invisible="1"/>
</xpath>
<xpath expr="//header" position="inside">
<button
name="action_nuke_task"
string="Nuke Task"
type="object"
confirm="Are you sure you want to nuke this task? All child tasks will be reassigned to the parent task."
invisible="not can_be_nuked"
groups="project.group_project_manager"/>
</xpath>
</field>
</record>
</odoo>