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.
 
 
 
 
 

68 lines
2.7 KiB

<odoo>
<data>
<record id="project_resource_form" model="ir.ui.view">
<field name="name">Project.resource.form</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_id']" position="before">
<field name="task_start_date"/>
</xpath>
<xpath expr="//field[@name='task_start_date']" position="after">
<xpath expr="//field[@name='date_deadline']" position="move"/>
</xpath>
<xpath expr="//field[@name='date_deadline']" position="attributes">
<attribute name="required">True</attribute>
</xpath>
<xpath expr="//field[@name='user_id']" position="attributes">
<attribute name="required">True</attribute>
</xpath>
</field>
</record>
<record id="free_user_form" model="ir.ui.view">
<field name="name">user.free.form</field>
<field name="model">res.users</field>
<field name="arch" type="xml">
<form >
<sheet>
<group>
<field name="name"/>
</group>
<group>
<field name="project_allocated_ids" readonly="1" clickable="0" style="pointer-events: none;" mode="tree" options="{'no_open': True}">
<tree limit='10' edit="0" style="pointer-events: none;">
<field name="name"/>
<field name="company_id" invisble="1"/>
<field name="project_id"/>
<field name="progress" widget="progressbar" style="width:100px;"/>
<field name="stage_id" />
<field name="task_start_date"/>
<field name="date_deadline"/>
</tree>
</field>
</group>
</sheet>
</form>
</field>
</record>
<record id="free_user_tree" model="ir.ui.view">
<field name="name">user.free.tree</field>
<field name="model">res.users</field>
<field name="arch" type="xml">
<tree >
<field name="name"/>
</tree>
</field>
</record>
</data>
</odoo>