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
|
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<report id="rates_table_xls"
string="FX rates by currency table"
model="res.currency.table"
name="msf.rates.table"
file="res_currency_tables/report/rates_table_xls.mako"
report_type="webkit"
header="False"
auto="False"
menu="False"/>
<report id="currency_table_xls"
string="FX rates by currency"
model="res.currency.table"
name="msf.currency.table"
file="res_currency_tables/report/currency_table_xls.mako"
report_type="webkit"
header="False"
auto="False"
menu="False"/>
</data>
</openerp>
|