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.
26 lines
1.0 KiB
26 lines
1.0 KiB
<odoo>
|
|
<data>
|
|
|
|
<!-- Stock Valuation Layer -->
|
|
<record id="view_cw_stock_valuation_view_tree" model="ir.ui.view">
|
|
<field name="name">stock.valuation.layer.inherit.cw.view.tree
|
|
</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>
|
|
|
|
|
|
</data>
|
|
</odoo>
|