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.
20 lines
868 B
20 lines
868 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Project task view form -->
|
|
<record id="view_task_form2" model="ir.ui.view">
|
|
<field name="name">Project.task.view.form.inherit.project.resource</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="before">
|
|
<field name="task_start_date"/>
|
|
</xpath>
|
|
<xpath expr="//field[@name='date_deadline']" position="attributes">
|
|
<attribute name="required">1</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='user_id']" position="attributes">
|
|
<attribute name="required">1</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|