1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/stock_enterprise/views/stock_move_views.xml
2024-12-10 09:04:09 +07:00

21 lines
862 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="stock_enterprise_move_tree_view" model="ir.ui.view">
<field name="name">stock.enterprise.move.tree.view</field>
<field name="model">stock.move</field>
<field name="priority" eval="1000"/>
<field name="arch" type="xml">
<tree delete="0" create="0">
<field name="date"/>
<field name="state" column_invisible="True"/>
<field name="reference"/>
<field name="product_id" readonly="state == 'done'"/>
<field name="company_id" groups="base.group_multi_company"/>
<field name="product_uom_qty" string="Quantity" readonly="state == 'done'"/>
<field name="product_uom" groups="uom.group_uom"/>
</tree>
</field>
</record>
</odoo>