You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
622 B
14 lines
622 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherited stock_move to add a button for importing lot -->
|
|
<record id="view_stock_move_operations" model="ir.ui.view">
|
|
<field name="name">stock.move.view.form.inherit.import.lot</field>
|
|
<field name="model">stock.move</field>
|
|
<field name="inherit_id" ref="stock.view_stock_move_operations"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//widget[@name='import_lots']" position="after">
|
|
<widget class="btn btn-link btn-group" name="import_lot"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|