12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="UTF-8"?>
- <openerp>
- <data>
- <!-- Vista heredada para product.product -->
- <record id="product_product_form_view_inherit" model="ir.ui.view">
- <field name="name">ProductProductViewFormInherit</field>
- <field name="model">product.product</field>
- <field name="inherit_id" ref="product.product_normal_form_view"/>
- <field eval="900" name="priority"/>
- <field name="arch" type="xml">
- <xpath expr="//sheet" position="before">
- <header>
- <!-- Botón para imprimir etiquetas sin precio -->
- <button class="oe_highlight" type="object" string="Etiqueta" name="print_labels"/>
- <!-- Botón para imprimir etiquetas con precio -->
- <button class="oe_highlight" type="object" string="Etiqueta con Precio" name="print_labels_with_price"/>
- </header>
- </xpath>
- </field>
- </record>
- </data>
- </openerp>
|