stock_landed_costs/views/product_views.xml

17 lines
713 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_product_landed_cost_form" model="ir.ui.view">
<field name="name">product.template.landed.cost.form</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="account.product_template_form_view"/>
<field name="arch" type="xml">
<group name="bill" position="inside">
<field name="landed_cost_ok" invisible="type != 'service'"/>
<field name="split_method_landed_cost" invisible="not landed_cost_ok or type != 'service'"/>
</group>
</field>
</record>
</data>
</odoo>