blob: 26acc43096e17190c093b44fe0b84a483e8582db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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="after">
<div attrs="{'invisible':[('type', '!=', 'service')]}">
<group string="Landed Costs" name="landedcosts">
<field name="landed_cost_ok"/>
<field name="split_method_landed_cost" attrs="{'invisible': [('landed_cost_ok', '=', False)]}" class="col-4"/>
</group>
</div>
</group>
</field>
</record>
</data>
</odoo>
|