26 lines
911 B
XML
26 lines
911 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="assembled" string="Zusammengebaut"/>
|
|
<field name="weight"/>
|
|
<field name="intrastat_id"/>
|
|
<field name="notes"/>
|
|
</field>
|
|
<div class="oe_title" position="before">
|
|
<field name="image_medium" widget="image" class="oe_avatar"/>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="stock.view_production_lot_form" model="ir.ui.view">
|
|
<field name="priority">0</field>
|
|
</record>
|
|
|
|
</odoo>
|