forked from Mapan/odoo17e
17 lines
667 B
XML
17 lines
667 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- TODO: Remove me in master -->
|
|
<record id="project_view_form_inherit" model="ir.ui.view">
|
|
<field name="name">project.view.form</field>
|
|
<field name="model">project.project</field>
|
|
<field name="inherit_id" ref="sale_timesheet.project_project_view_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='billing_employee_rate']" position="attributes">
|
|
<attribute name="invisible">not allow_timesheets and is_fsm or not allow_billable or not partner_id and not is_fsm</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|