1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/helpdesk_sale_timesheet/views/hr_timesheet_views.xml
2024-12-10 09:04:09 +07:00

20 lines
843 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="timesheet_view_form_inherit_helpdesk_sale_timesheet" model="ir.ui.view">
<field name="name">account.analytic.line.form.timesheet</field>
<field name="model">account.analytic.line</field>
<field name="inherit_id" ref="sale_timesheet.hr_timesheet_line_form_inherit"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='task_id']" position="after">
<field name="display_sol" invisible="1"/>
</xpath>
<xpath expr="//field[@name='so_line']" position="attributes">
<attribute name="invisible">not display_sol or not allow_billable</attribute>
<attribute name="readonly">readonly_timesheet</attribute>
</xpath>
</field>
</record>
</odoo>