[MERGE] OPW 18123
[odoo/odoo.git] / addons / account / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21 {
22     "name" : "Accounting and Financial Management",
23     "version" : "1.1",
24     "author" : "OpenERP SA",
25     "category": 'Generic Modules/Accounting',
26     "description": """Financial and accounting module that covers:
27     General accountings
28     Cost / Analytic accounting
29     Third party accounting
30     Taxes management
31     Budgets
32     Customer and Supplier Invoices
33     Bank statements
34     Reconciliation process by partner
35     Creates a dashboard for accountants that includes:
36     * List of uninvoiced quotations
37     * Graph of aged receivables
38     * Graph of aged incomes
39
40 The processes like maintaining of general ledger is done through the defined financial Journals (entry move line or
41 grouping is maintained through journal) for a particular financial year and for preparation of vouchers there is a
42 module named account_voucher.
43     """,
44     'website': 'http://www.openerp.com',
45     'init_xml': [],
46     "depends" : ["product", "analytic", "process","board"],
47     'update_xml': [
48         'security/account_security.xml',
49         'security/ir.model.access.csv',
50         'account_menuitem.xml',
51         'report/account_invoice_report_view.xml',
52         'report/account_entries_report_view.xml',
53         'report/account_report_view.xml',
54         'report/account_analytic_entries_report_view.xml',
55         'wizard/account_move_bank_reconcile_view.xml',
56         'wizard/account_use_model_view.xml',
57         'account_installer.xml',
58         'wizard/account_period_close_view.xml',
59         'account_view.xml',
60         'account_report.xml',
61         'wizard/account_report_common_view.xml',
62         'wizard/account_invoice_refund_view.xml',
63         'wizard/account_fiscalyear_close_state.xml',
64         'wizard/account_chart_view.xml',
65         'wizard/account_tax_chart_view.xml',
66         'wizard/account_move_journal_view.xml',
67         'wizard/account_move_line_reconcile_select_view.xml',
68         'wizard/account_open_closed_fiscalyear_view.xml',
69         'wizard/account_move_line_unreconcile_select_view.xml',
70         'wizard/account_vat_view.xml',
71         'wizard/account_report_print_journal_view.xml',
72         'wizard/account_report_general_journal_view.xml',
73         'wizard/account_report_central_journal_view.xml',
74         'wizard/account_subscription_generate_view.xml',
75         'wizard/account_fiscalyear_close_view.xml',
76         'wizard/account_state_open_view.xml',
77         'wizard/account_journal_select_view.xml',
78         'wizard/account_change_currency_view.xml',
79         'wizard/account_validate_move_view.xml',
80         'wizard/account_unreconcile_view.xml',
81         'wizard/account_report_general_ledger_view.xml',
82         'wizard/account_invoice_state_view.xml',
83         'wizard/account_report_partner_balance_view.xml',
84         'wizard/account_report_account_balance_view.xml',
85         'wizard/account_report_aged_partner_balance_view.xml',
86         'wizard/account_report_partner_ledger_view.xml',
87         'wizard/account_reconcile_view.xml',
88         'wizard/account_reconcile_partner_process_view.xml',
89         'wizard/account_automatic_reconcile_view.xml',
90         'project/wizard/project_account_analytic_line_view.xml',
91         'account_end_fy.xml',
92         'account_invoice_view.xml',
93         'partner_view.xml',
94         'data/account_invoice.xml',
95         'data/account_data2.xml',
96         'account_invoice_workflow.xml',
97         'project/project_view.xml',
98         'project/project_report.xml',
99         'project/wizard/account_analytic_balance_report_view.xml',
100         'project/wizard/account_analytic_cost_ledger_view.xml',
101         'project/wizard/account_analytic_inverted_balance_report.xml',
102         'project/wizard/account_analytic_journal_report_view.xml',
103         'project/wizard/account_analytic_cost_ledger_for_journal_report_view.xml',
104         'project/wizard/account_analytic_chart_view.xml',
105         'product_view.xml',
106         'account_assert_test.xml',
107         'process/statement_process.xml',
108         'process/customer_invoice_process.xml',
109         'process/supplier_invoice_process.xml',
110         'sequence_view.xml',
111         'company_view.xml',
112         'board_account_view.xml',
113         "wizard/account_report_profit_loss_view.xml",
114         "wizard/account_report_balance_sheet_view.xml"
115     ],
116     'demo_xml': [
117         'account_demo.xml',
118         'project/project_demo.xml',
119         'project/analytic_account_demo.xml',
120         'demo/account_minimal.xml',
121 #        'account_unit_test.xml',
122     ],
123     'test': [
124         'test/account_customer_invoice.yml',
125         'test/account_supplier_invoice.yml',
126         'test/account_change_currency.yml',
127         'test/chart_of_account.yml',
128         'test/account_period_close.yml',
129         'test/account_fiscalyear_close_state.yml',
130         'test/account_use_model.yml',
131         'test/account_validate_account_move.yml',
132         'test/account_fiscalyear_close.yml',
133         'test/account_bank_statement.yml',
134         'test/account_cash_statement.yml',
135         'test/account_report.yml',
136         
137
138             ],
139     'installable': True,
140     'active': False,
141     'certificate': '0080331923549',
142 }
143 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: