14
by Jeff Wang
add report and wizard |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- author = jeff@openerp.cn -->
|
|
3 |
<!-- thanks = [oldrev@gmail.com, popkar77@gmail.com] -->
|
|
4 |
||
5 |
<openerp>
|
|
6 |
<data>
|
|
7 |
||
8 |
<!-- ADD MOVE PRINT FUNCTION TO MOVES -->
|
|
9 |
||
10 |
<!-- Print Move-->
|
|
11 |
<report auto="False" id="account_move" model="account.move" name="account.move" |
|
12 |
rml="oecn_account_print/report/account__move.rml" string="Print Move" /> |
|
13 |
<record id="account_move" model="ir.actions.report.xml"> |
|
14 |
<field name="report_type">pdf</field> |
|
15 |
</record>
|
|
16 |
||
17 |
<!-- Print Cash Journal -->
|
|
18 |
<report auto="False" id="cash_journal" model="account.account" name="account.cash_journal" |
|
19 |
menu="False" rml="oecn_account_print/report/cash_journal.rml" string="Print Cash Journal"/> |
|
20 |
<record id="cash_journal" model="ir.actions.report.xml"> |
|
21 |
<field name="report_type">pdf</field> |
|
22 |
</record>
|
|
23 |
||
24 |
<!-- Print Foreign Currency Cash Journal-->
|
|
25 |
<report auto="False" id="currency_cash_journal" menu="False" model="account.account" |
|
26 |
name="account.currency_cash_journal" rml="oecn_account_print/report/currency_cash_journal.rml" |
|
27 |
string="Print Foreign Currency Cash Journal"/> |
|
28 |
<record id="currency_cash_journal" model="ir.actions.report.xml"> |
|
29 |
<field name="report_type">pdf</field> |
|
30 |
</record>
|
|
31 |
||
32 |
<!-- Print Three Columns Ledger-->
|
|
33 |
<report auto="False" id="threecolumns_ledger" menu="False" model="account.account" |
|
34 |
name="account.threecolumns_ledger" rml="oecn_account_print/report/threecolumns_ledger.rml" |
|
35 |
string="Print Three Columns Ledger"/> |
|
36 |
<record id="threecolumns_ledger" model="ir.actions.report.xml"> |
|
37 |
<field name="report_type">pdf</field> |
|
38 |
</record>
|
|
39 |
||
40 |
<!-- Print Stock Ledger -->
|
|
41 |
<report auto="False" id="stock_ledger" menu="False" model="account.account" |
|
42 |
name="account.stock_ledger" rml="oecn_account_print/report/stock_ledger.rml" |
|
43 |
string="Print Stock Ledger"/> |
|
44 |
<record id="stock_ledger" model="ir.actions.report.xml"> |
|
45 |
<field name="report_type">pdf</field> |
|
46 |
</record>
|
|
47 |
||
48 |
<!-- Print General Ledger -->
|
|
49 |
<report auto="False" id="general_ledger" menu="False" model="account.account" |
|
50 |
name="account.general_ledger" rml="oecn_account_print/report/general_ledger.rml" |
|
51 |
string="Print General Ledger"/> |
|
52 |
<record id="general_ledger" model="ir.actions.report.xml"> |
|
53 |
<field name="report_type">pdf</field> |
|
54 |
</record>
|
|
55 |
||
56 |
</data>
|
|
57 |
</openerp>
|