product_product.xml 1.0 KB

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <!-- Vista heredada para product.product -->
  5. <record id="product_product_form_view_inherit" model="ir.ui.view">
  6. <field name="name">ProductProductViewFormInherit</field>
  7. <field name="model">product.product</field>
  8. <field name="inherit_id" ref="product.product_normal_form_view"/>
  9. <field eval="900" name="priority"/>
  10. <field name="arch" type="xml">
  11. <xpath expr="//sheet" position="before">
  12. <header>
  13. <!-- Botón para imprimir etiquetas sin precio -->
  14. <button class="oe_highlight" type="object" string="Etiqueta" name="print_labels"/>
  15. <!-- Botón para imprimir etiquetas con precio -->
  16. <button class="oe_highlight" type="object" string="Etiqueta con Precio" name="print_labels_with_price"/>
  17. </header>
  18. </xpath>
  19. </field>
  20. </record>
  21. </data>
  22. </openerp>