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
793 B
18 lines
793 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Product View -->
|
|
<record id="product_form_view_procurement_button" model="ir.ui.view">
|
|
<field name="name">product.product.view.form.inherited.quick.stock.movement</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id"
|
|
ref="stock.product_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"
|
|
attrs="{'invisible': [('type', '!=', 'product')]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|