20 lines
		
	
	
		
			675 B
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			675 B
		
	
	
	
		
			XML
		
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<odoo>
 | 
						|
 | 
						|
    <record id="stock_production_lot_view" model="ir.ui.view">
 | 
						|
        <field name="name">stock_production_lot_view</field>
 | 
						|
        <field name="model">stock.production.lot</field>
 | 
						|
        <field name="inherit_id" ref="stock.view_production_lot_form"/>
 | 
						|
        <field name="arch" type="xml">
 | 
						|
            <field name="ref" position="after">
 | 
						|
                <field name="weight"/>
 | 
						|
                <field name="notes"/>
 | 
						|
            </field>
 | 
						|
            <div class="oe_title" position="before">
 | 
						|
                <field name="image_medium" widget="image" class="oe_avatar"/>
 | 
						|
            </div>
 | 
						|
        </field>
 | 
						|
    </record>
 | 
						|
 | 
						|
</odoo>
 |