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.
22 lines
1009 B
22 lines
1009 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherit stock valuation tree view to add catch weight fields-->
|
|
<record id="stock_valuation_layer_tree" model="ir.ui.view">
|
|
<field name="name">stock.valuation.layer.view.tree.inherit.cw.stock
|
|
</field>
|
|
<field name="model">stock.valuation.layer</field>
|
|
<field name="inherit_id"
|
|
ref="stock_account.stock_valuation_layer_tree"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='quantity']" position="after">
|
|
<field name="cw_hide" invisible="1"/>
|
|
<field name="cw_qty_done"
|
|
attrs="{'invisible':[('cw_hide', '=', False)]}"/>
|
|
<field name="cw_uom_id" options="{'no_create': True}"
|
|
string="CW Uom"
|
|
attrs="{'invisible':[('cw_hide', '=', False)]}"/>
|
|
<field name="category_id" invisible="1"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|