21 lines
880 B
XML
21 lines
880 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Add menu item to stock move -->
|
|
<record id="view_stock_move_form_inherit_lot_generation" model="ir.ui.view">
|
|
<field name="name">stock.move.form.inherit.lot.generation</field>
|
|
<field name="model">stock.move</field>
|
|
<field name="inherit_id" ref="stock.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//header" position="inside">
|
|
<button name="action_generate_lots_for_move"
|
|
type="object"
|
|
string="Generate Lots"
|
|
class="btn-secondary"
|
|
icon="fa-plus"
|
|
invisible="not is_subcontract"
|
|
help="Generate lot/serial numbers for this subcontract move"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|