You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
671 B
16 lines
671 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- LINKED ISSUE IN TASK -->
|
|
<record id="view_task_form2" model="ir.ui.view">
|
|
<field name="name">project.task.view.form.inherit.project.management.sprint</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='user_ids']" position="after">
|
|
<field name="sprint_id"/>
|
|
<field name="linked_issue"/>
|
|
<field name="issue_task_id" invisible="not linked_issue"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|