Odoo18-Base/addons/sale_project/views/product_views.xml

33 lines
1.8 KiB
XML
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
<?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" separator="or" add="type == 'service'"/>
</field>
<field name="service_tracking" position="attributes">
<attribute name="invisible" remove="1" separator="or"/>
</field>
<field name="service_tracking" position="after">
<div class="o_td_label d-inline-flex" invisible="service_tracking != 'task_global_project'">
<label for='project_id'/>
</div>
<field name="project_id" context="{'default_allow_billable': True}" invisible="service_tracking != 'task_global_project'" nolabel="1" placeholder="Defined on quotation"/>
<div class="o_td_label d-inline-flex" invisible="service_tracking not in ['task_in_project', 'project_only']">
<label for='project_template_id'/>
</div>
<field name="project_template_id" context="{'active_test': False, 'default_allow_billable': True}" invisible="service_tracking not in ['task_in_project', 'project_only']" nolabel="1" placeholder="Empty project"/>
<field name="service_policy"
string="Invoicing Policy"
invisible="type != 'service' or sale_ok == False"
required="type == 'service' and sale_ok == True"/>
</field>
</field>
</record>
</odoo>