You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record id="nace_import_form" model="ir.ui.view">
  5. <field name="name">NACE import</field>
  6. <field name="model">nace.import</field>
  7. <field name="arch" type="xml">
  8. <form string="Import NACE Rev.2 from RAMON">
  9. <div>
  10. This wizard will download the lastest version of
  11. NACE Rev.2 from Europe RAMON metadata service.
  12. Updating or creating new NACE code entries if not
  13. found already in the system, and DELETE MISSING
  14. ENTRIES from new downloaded file.
  15. </div>
  16. <footer>
  17. <button name="run_import" type="object"
  18. class="oe_highlight" string="Import"/>
  19. <button special="cancel" string="Cancel" class="oe_link"/>
  20. </footer>
  21. </form>
  22. </field>
  23. </record>
  24. <record id="nace_import_action" model="ir.actions.act_window">
  25. <field name="name">Import NACE Rev.2 from RAMON</field>
  26. <field name="res_model">nace.import</field>
  27. <field name="view_type">form</field>
  28. <field name="view_mode">form</field>
  29. <field name="target">new</field>
  30. </record>
  31. <menuitem action="nace_import_action"
  32. id="nace_import_menu"
  33. name="Import NACE Rev.2"
  34. parent="base.menu_config_address_book"
  35. sequence="45"/>
  36. </data>
  37. </openerp>