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
|
<?xml version="1.0" ?>
<openerp>
<data>
<!-- wizard to send mail to customer -->
<wizard string="Send Mail"
model="ecommerce.shop"
name="ecommerce.customer.sendmail"
id="eshop_send_mail"/>
<!-- wizard to display products -->
<wizard
string="View Product"
menu="False"
name="ecommerce_category_product"
id="ecommerce_product_view_id"/>
<record model="ir.values" id="ir_ecommerce_product_category_open">
<field name="key2">tree_but_open</field>
<field name="model">ecommerce.category</field>
<field name="name">Products by Categories</field>
<field name="value" eval="'ir.actions.wizard,%d'%ecommerce_product_view_id"/>
<field name="object" eval="True"/>
</record>
</data>
</openerp>
|