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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<report id="cash_inventory"
string="Cash Inventory"
target_filename="Cash Inventory_${name}_%(year)s%(month)s%(day)s"
model="account.bank.statement"
name="cash.inventory"
rml="register_accounting/report/cash_inventory.rml"
auto="False"
menu="True"
header="False"/>
<report id="bank_reconciliation"
string="Bank Reconciliation"
target_filename="Bank Reconciliation_${name}_%(year)s%(month)s%(day)s"
model="account.bank.statement"
name="bank.reconciliation"
rml="register_accounting/report/bank_reconciliation.rml"
auto="False"
menu="True"
header="False"/>
<report
id="cheque_inventory_2"
string="Cheque Inventory"
target_filename="Cheque Inventory_${name}_%(year)s%(month)s%(day)s"
model="account.bank.statement"
name="cheque.inventory.2"
file="register_accounting/report/cheque_inventory_xls.mako"
report_type="webkit"
header="False"
auto="False"
menu="True"
/>
<report
id="pending_cheque"
string="Pending Cheque"
target_filename="Pending Cheque_${name}_%(year)s%(month)s%(day)s"
model="account.bank.statement"
name="pending.cheque"
file="register_accounting/report/pending_cheque_xls.mako"
report_type="webkit"
header="False"
auto="False"
menu="True"
/>
<report
id="open_advances_2"
string="Open Advances"
target_filename="Open Advances_${instance_id.code}_%(year)s%(month)s%(day)s"
model="account.bank.statement"
name="open.advances.2"
file="register_accounting/report/open_advances_xls.mako"
report_type="webkit"
header="False"
auto="False"
menu="True"
/>
<report id="liquidity_position"
string="Liquidity Position"
target_filename="Liquidity Position_${instance_id.code}_%(year)s%(month)s%(day)s"
model="account.bank.statement"
name="liquidity.position.2"
file="register_accounting/report/liquidity_position_xls.mako"
report_type="webkit"
header="False"
auto="False"
menu="True"/>
<report id="fully_report"
string="Full Report"
target_filename="Full Report_${name}_${period_id.name}_%(year)s%(month)s%(day)s"
model="account.bank.statement"
name="fully.report"
file="register_accounting/report/fully_report_xls.mako"
report_type="webkit"
header="False"
auto="False"
menu="True"/>
</data>
</openerp>
|