how i can remove some field in manufacturing order --> Products to Consume-->
Add an item--->Create: Products to Consume
eg: Picking Type
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
how i can remove some field in manufacturing order --> Products to Consume-->
Add an item--->Create: Products to Consume
eg: Picking Type
<record id="view_move_form2" model="ir.ui.view">
<field name="name">stock.move.form2</field>
<field name="model">stock.move</field>
<field name="inherit_id" ref="stock.view_move_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='picking_type_id']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
</field>
</record>
Look into this
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up
Hello this is the stock.move view. You can inherit stock.move form view and make invisible fields.
But this will hide from original view also.
i did't get particular file name and record id can u send file name and its id?
But this will hide from original view also. means?