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="account_report_print_char_accounts_view" model="ir.ui.view">
  5. <field name="name">Print chart of accounts</field>
  6. <field name="model">account.print.chart.accounts.report</field>
  7. <field name="arch" type="xml">
  8. <form string="Report Options" version="7.0">
  9. <group col="4" colspan="4">
  10. <field name="chart_account_id" widget='selection'/>
  11. </group>
  12. <footer>
  13. <button class="oe_highlight" name="print_report" string="Print"
  14. type="object"/>
  15. or
  16. <button string="Cancel" class="oe_link" special="cancel"/>
  17. </footer>
  18. </form>
  19. </field>
  20. </record>
  21. <record id="action_print_chart_menu" model="ir.actions.act_window">
  22. <field name="name">Print chart of accounts</field>
  23. <field name="type">ir.actions.act_window</field>
  24. <field name="res_model">account.print.chart.accounts.report</field>
  25. <field name="view_type">form</field>
  26. <field name="view_mode">form</field>
  27. <field name="target">new</field>
  28. </record>
  29. <menuitem
  30. icon="STOCK_PRINT"
  31. name="Print chart of accounts"
  32. parent="account.menu_finance_charts"
  33. action="action_print_chart_menu"
  34. id="menu_wizard_print_chart_account"
  35. />
  36. </data>
  37. </openerp>