product_template.xml 1.2 KB

1234567891011121314151617181920212223242526
  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">ProductTemplateOnlyFormView</field>
  6. <field name="model">product.template</field>
  7. <field name="inherit_id" ref="product.product_template_only_form_view"/>
  8. <field name="arch" type="xml">
  9. <field name="active" position="after">
  10. <field name="pricelists" nolabel="1" colspan="2" context="{'product_template_id': active_id}">
  11. <tree string="Precio" editable="bottom" create="false" delete="false" colors="red:product_price_manual">
  12. <field name="name" readonly="1"/>
  13. <field name="product_price_manual" invisible="1"/>
  14. <field name="product_price" string="Precio"/>
  15. <!-- <button type="object" icon="STOCK_CLOSE"
  16. name="remove_price_manual"
  17. /> -->
  18. </tree>
  19. </field>
  20. </field>
  21. </field>
  22. </record>
  23. </data>
  24. </openerp>