This question has been flagged
5 Replies
2061 Views

how i can remove some field in manufacturing order -->  Products to Consume-->

Add an item--->Create: Products to Consume

eg:  Picking Type

Avatar
Discard

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.

Author

i did't get particular file name and record id can u send file name and its id?

Author

But this will hide from original view also. means?

Best Answer
        <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

Avatar
Discard