You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.8 KiB
60 lines
2.8 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- Product Template Form View -->
|
|
|
|
<record model="ir.ui.view" id="product_form_hide_cost">
|
|
<field name="name">product.template.cost</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_only_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//label[@for='standard_price']" position="attributes">
|
|
<attribute name="groups">hide_cost_price.view_cost_price</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='standard_price']" position="attributes">
|
|
<attribute name="groups">hide_cost_price.view_cost_price</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
<!-- Product Variant Form View -->
|
|
|
|
<record model="ir.ui.view" id="product_variant_form_hide_cost">
|
|
<field name="name">product.product.cost</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_normal_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//label[@for='standard_price']" position="attributes">
|
|
<attribute name="groups">hide_cost_price.view_cost_price</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='standard_price']" position="attributes">
|
|
<attribute name="groups">hide_cost_price.view_cost_price</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
<!-- Product Template Tree View -->
|
|
|
|
<record model="ir.ui.view" id="product_tree_hide_cost">
|
|
<field name="name">product.template.cost</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_tree_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='standard_price']" position="attributes">
|
|
<attribute name="groups">hide_cost_price.view_cost_price</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
<!-- Product Variant Tree View -->
|
|
|
|
<record model="ir.ui.view" id="product_product_tree_hide_cost">
|
|
<field name="name">product.product.cost</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_product_tree_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='standard_price']" position="attributes">
|
|
<attribute name="groups">hide_cost_price.view_cost_price</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|
|
|