product_template.xml 878 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <record id="product_template_only_form_view" model="ir.ui.view">
  5. <field name="name">ProductTemplateViewFormInherit</field>
  6. <field name="model">product.template</field>
  7. <field name="priority" eval="900" />
  8. <field name="inherit_id" ref="product.product_template_only_form_view"/>
  9. <field name="arch" type="xml">
  10. <xpath expr="//sheet" position="before">
  11. <header>
  12. <button class="oe_highlight" type="object" string="Etiqueta" name="print_labels"/>
  13. <button class="oe_highlight" type="object" string="Etiqueta con Precio" name="print_labels_with_price"/>
  14. </header>
  15. </xpath>
  16. </field>
  17. </record>
  18. </data>
  19. </openerp>