New Menus Definitions
[odoo/odoo.git] / addons / board_sale / board_sale_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <terp>
3     <data>
4         <record id="note_sale_type" model="board.note.type">
5             <field name="name">Sales</field>
6         </record>
7         
8         <record id="board_sales_manager_form" model="ir.ui.view">
9             <field name="name">board.sales.manager.form</field>
10             <field name="model">board.board</field>
11             <field name="type">form</field>
12             <field name="arch" type="xml">
13                 <form string="Sales manager board">
14                     <hpaned position="100">
15                         <child1>
16                             <action colspan="4" height="200" name="%(sale.action_order_tree10)d" string="My open quotations" width="510"/>
17                             <action colspan="4" name="%(report_sale.action_order_sale_list)d" string="Top ten sales of the month"/>
18                             <action colspan="4" name="%(report_crm.action_report_crm_case_user_tree_month_my)d" string="Cases statistics"/>
19                         </child1>
20                         
21                         <child2>
22                             <action colspan="4" name="%(report_sale.action_order_category_tree_all)d" string="Sales of the month" view_mode="graph,tree"/>
23                             <action colspan="4" name="%(report_crm.action_report_crm_case_user_tree_month)d" string="Cases of the month" view_mode="graph,tree"/>
24                         </child2>
25                     </hpaned>
26                 </form>
27             </field>
28         </record>
29         
30         <record id="open_board_sales_manager" model="ir.actions.act_window">
31             <field name="name">Sale Dashboard</field>
32             <field name="res_model">board.board</field>
33             <field name="view_type">form</field>
34             <field name="view_mode">form</field>
35             <field name="view_id" ref="board_sales_manager_form"/>
36         </record>
37         
38         <menuitem id="next_id_88" name="Sales" parent="board.dashboard_menu"/><menuitem action="open_board_sales_manager" icon="terp-graph" id="menu_board_sales_manager" parent="next_id_88" sequence="1"/>
39         
40     </data>
41 </terp>