oca-ocb-sale/odoo-bringout-oca-ocb-sale_project/sale_project/views/product_views.xml
2025-08-29 15:20:49 +02:00

22 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="product_template_form_view_invoice_policy_inherit_sale_project" model="ir.ui.view">
<field name="name">product.template.inherit.sale.projectform</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="sale.product_template_form_view"/>
<field name="arch" type="xml">
<field name="invoice_policy" position="attributes">
<attribute name="invisible">False</attribute>
<attribute name="attrs">{'invisible': [('type', '=', 'service'), ('sale_ok', '=', True)]}</attribute>
</field>
<field name="invoice_policy" position="after">
<field name="service_policy" string="Invoicing Policy" attrs="{'invisible': ['|', ('type', '!=', 'service'), ('sale_ok', '=', False)], 'required': [('type', '=', 'service'), ('sale_ok', '=', True)]}"/>
<field name="service_tracking" required="1" attrs="{'invisible': [('type', '!=', 'service')]}"/>
<field name="project_id" context="{'default_allow_billable': True}" attrs="{'invisible':[('service_tracking','!=','task_global_project')], 'required':[('service_tracking','==','task_global_project')]}"/>
<field name="project_template_id" context="{'active_test': False, 'default_allow_billable': True}" attrs="{'invisible':[('service_tracking','not in',['task_in_project', 'project_only'])]}"/>
</field>
</field>
</record>
</odoo>