~openerp-chinese-team/openerp-china/openerp-china

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
<?xml version="1.0"?>
<!-- __author__ = jeff@openerp.cn -->
<!-- __thanks__ = [oldrev@gmail.com, popkar77@gmail.com] -->
<openerp>
    <data>

        <!-- Add menu item under account/report menu -->
        <menuitem name="China Reports" id="menu_oecn_account_print" 
                  parent="account.menu_finance_reporting" sequence="99"/>
 
        <!-- Print General Ledger -->
        <wizard id="oecn_general_ledger" menu="False" model="account.account" 
                name="oecn_account_print.general_ledger" string="Print General Ledger"/>
        <menuitem icon="STOCK_PRINT" action="oecn_general_ledger" id="menu_general_ledger" 
                  parent="menu_oecn_account_print" type="wizard" sequence="10"/>

        <!-- Print Detail Ledger-->
        <wizard id="oecn_detail_ledger" menu="False" model="account.account"
                name="oecn_account_print.detail_ledger" string="Print Detail Ledger"/>
        <menuitem icon="STOCK_PRINT" action="oecn_detail_ledger" id="menu_detail_ledger" 
                  parent="menu_oecn_account_print" type="wizard" sequence="20"/>


    </data>
</openerp>