install_view.xml 628 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <openerp>
  3. <data>
  4. <!-- After installation of the module, open the related menu -->
  5. <record id="action_pricelist_per_product_module_install" model="ir.actions.client">
  6. <field name="name">Open pricelist per product Menu</field>
  7. <field name="tag">reload</field>
  8. <field name="params"
  9. eval="{'menu_id': ref('product.menu_product_template_action')}"/>
  10. </record>
  11. <record id="base.open_menu" model="ir.actions.todo">
  12. <field name="action_id" ref="action_pricelist_per_product_module_install"/>
  13. <field name="state">open</field>
  14. </record>
  15. </data>
  16. </openerp>