~sebastien.beau/magentoerpconnect/oerp6.1-stable-outi

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<openerp>
  <data>
    <menuitem id="menu_magerp" name="MagentoERPconnect" icon="terp-sale"
      web_icon="images/magento.png"
      web_icon_hover="images/magento-hover.png"/>

    <menuitem id="menu_magerp_core" name="Core Settings" parent="menu_magerp" />
    <menuitem id="menu_magerp_core_instances" name="Magento Instances" parent="menu_magerp_core" action="act_magerp_instances_form" />
    <menuitem id="menu_magerp_core_websites" name="Magento Websites" parent="menu_magerp_core" action="act_magerp_websites_form" />
    <menuitem id="menu_magerp_core_storeviews" name="Magento Store Views" parent="menu_magerp_core" action="act_magerp_storeviews_form" />
    <menuitem id="menu_magerp_core_shops" name="Magento Shops" parent="menu_magerp_core" action="act_magerp_shop_form" />

    <menuitem id="menu_magerp_attnsets" name="Attributes and Sets" parent="menu_magerp" />
    <menuitem id="menu_magerp_attnsets_sets" name="Attribute Sets" parent="menu_magerp_attnsets" action="act_magerp_product_attribute_set_form" />
    <menuitem id="menu_magerp_attnsets_attributes" name="Attributes" parent="menu_magerp_attnsets" action="act_magerp_product_attributes_form" />
    <menuitem id="menu_magerp_attnsets_attribute_groups" name="Attribute Groups" parent="menu_magerp_attnsets" action="act_magerp_product_attribute_groups_form" />
    <menuitem id="menu_magerp_attnsets_attribute_options" name="Attribute Options" parent="menu_magerp_attnsets" action="act_magerp_product_attribute_options_form" />

    <menuitem id="menu_magerp_categ_att" name="Category Attributes" parent="menu_magerp" />
    <menuitem id="menu_magerp_categ_att_option" name="Category Attribute Options" parent="menu_magerp_categ_att" action="act_magerp_product_category_attribute_options_form" />

    <menuitem id="menu_magerp_product_type" name="Product Types" parent="menu_magerp" action="act_magerp_product_type_form" />


    <menuitem id="menu_magerp_reporting" name="Reporting" parent="menu_magerp" />

    <record id="action_magerp_external_report" model="ir.actions.act_window">
      <field name="name">External Reports</field>
      <field name="type">ir.actions.act_window</field>
      <field name="res_model">external.report</field>
      <field name="view_type">form</field>
      <field name="domain">[('referential_id.version_id.type_id.code', '=', 'mag')]</field>
      <field name="view_id" ref="base_external_referentials.external_report_tree_view"/>
      <field name="search_view_id" ref="base_external_referentials.external_report_search_form_view"/>
    </record>
    <menuitem id="menu_magerp_reporting_report" name="Synchronisation Report"
      parent="menu_magerp_reporting" action="action_magerp_external_report" sequence="20"/>

    <record id="action_magerp_external_report_history" model="ir.actions.act_window">
      <field name="name">External Report History</field>
      <field name="type">ir.actions.act_window</field>
      <field name="res_model">external.report.history</field>
      <field name="view_type">form</field>
      <field name="domain">[('report_id.referential_id.version_id.type_id.code', '=', 'mag')]</field>
      <field name="view_id" ref="base_external_referentials.external_report_history_tree_view"/>
      <field name="search_view_id" ref="base_external_referentials.external_report_history_search_view"/>
    </record>

    <menuitem id="menu_magerp_reporting_report_history" name="Synchronisation History"
      parent="menu_magerp_reporting" action="action_magerp_external_report_history" sequence="25" />

    <record id="action_magerp_external_report_line" model="ir.actions.act_window">
      <field name="name">External Report Lines</field>
      <field name="type">ir.actions.act_window</field>
      <field name="res_model">external.report.line</field>
      <field name="view_type">form</field>
      <field name="domain">[('report_id.referential_id.version_id.type_id.code', '=', 'mag')]</field>
      <field name="view_id" ref="base_external_referentials.external_report_line_tree_view"/>
      <field name="search_view_id" ref="base_external_referentials.external_report_line_search_view"/>
    </record>
    <menuitem id="menu_magerp_reporting_report_line" name="Last Synchronisation Details"
      parent="menu_magerp_reporting" action="action_magerp_external_report_line" sequence="30"/>
  </data>
</openerp>