summaryrefslogtreecommitdiff
path: root/addons/stock_landed_costs/views/stock_valuation_layer_views.xml
blob: e7eea866c4011ad35743ad8ad21fba7803368703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<odoo>
    <record id="stock_valuation_layer_form_inherited" model="ir.ui.view">
        <field name="name">stock.valuation.layer.form.inherited</field>
        <field name="model">stock.valuation.layer</field>
        <field name="inherit_id" ref="stock_account.stock_valuation_layer_form" />
        <field name="arch" type="xml">
            <xpath expr="//field[@name='stock_move_id']" position="after">
                <field name="stock_landed_cost_id" attrs="{'invisible': [('stock_landed_cost_id', '=', False)]}" />
            </xpath>
        </field>
    </record>
</odoo>