odoo/addons/sale_timesheet/views/sale_order_views.xml

42 lines
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_order_form_inherit_sale_timesheet" model="ir.ui.view">
<field name="name">sale.order.form.sale.timesheet</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<data>
<xpath expr="//button[@name='action_view_invoice']" position="before">
<button type="object"
name="action_view_timesheet"
class="oe_stat_button"
icon="fa-clock-o"
attrs="{'invisible': [('timesheet_count', '=', 0)]}" groups="base.group_user">
<field name="timesheet_count" widget="statinfo" string="Timesheets"/>
</button>
</xpath>
<xpath expr="//button[@name='action_view_invoice']" position="before">
<field name="project_project_id" invisible="1"/>
<button type="object"
name="action_view_project_project"
class="oe_stat_button"
icon="fa-puzzle-piece"
string="Project"
attrs="{'invisible': [('project_project_id', '=', False)]}" groups="base.group_user">
</button>
</xpath>
<xpath expr="//button[@name='action_view_invoice']" position="before">
<field name="tasks_ids" invisible="1"/>
<button type="object"
name="action_view_task"
class="oe_stat_button"
icon="fa-tasks"
attrs="{'invisible': [('tasks_count', '=', 0)]}" groups="base.group_user">
<field name="tasks_count" widget="statinfo" string="Tasks"/>
</button>
</xpath>
</data>
</field>
</record>
</odoo>