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
|
<?xml version="1.0"?>
<openerp>
<data>
<report id="account_invoices"
string="Invoices"
model="account.invoice"
name="account.invoice"
rml="bookstore/report/invoice.rml"
auto="False"/>
</data>
<data>
<report id="sale.order"
string="Print Orders"
model="sale.order"
name="sale.order"
rml="bookstore/report/sale_order.rml"
auto="False"/>
</data>
<data>
<report id="purchase.order"
string="Print Orders"
model="purchase.order"
name="purchase.order"
rml="bookstore/report/purchase_order.rml"
auto="False"/>
</data>
</openerp>
|