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.
18 lines
801 B
18 lines
801 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherited Product Variant for view -->
|
|
<record id="product_template_form_view_procurement_button"
|
|
model="ir.ui.view">
|
|
<field name="name">product.template.view.form.inherit.quick.stock.movement</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id"
|
|
ref="stock.product_template_form_view_procurement_button"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//button[@name='action_update_quantity_on_hand']"
|
|
position="after">
|
|
<button string="Transfer Stock" type="object"
|
|
name="action_transfer_stock" invisible="type != 'product'"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|