cd8a673741a070ab31a656905b2e46ea6df44c3e
[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
23 {
24     "name" : "Accounting and Financial Management",
25     "version" : "1.1",
26     "depends" : ["product", "analytic", "process"],
27     "author" : "Tiny",
28     "category": 'Generic Modules/Accounting',
29     "description": """Financial and accounting module that covers:
30     General accountings
31     Cost / Analytic accounting
32     Third party accounting
33     Taxes management
34     Budgets
35     Customer and Supplier Invoices
36     Bank statements
37
38 The processes like maintaining of general ledger is done through the defined financial Journals (entry move line or
39 grouping is maintained through journal) for a particular financial year and for preparation of vouchers there is a
40 module named account_voucherss
41     """,
42     'website': 'http://www.openerp.com',
43     'init_xml': [],
44     'update_xml': [
45         #'test/test_parent_structure.yml',
46         'security/account_security.xml',
47         'security/ir.model.access.csv',
48         'account_menuitem.xml',
49         'account_wizard.xml',
50         'wizard/account_statement_from_invoice_view.xml',
51         'wizard/account_move_bank_reconcile_view.xml',
52         'wizard/account_use_model_view.xml',
53         'account_view.xml',
54         'account_report.xml',
55         'wizard/account_invoice_refund_view.xml',
56         'wizard/account_period_close_view.xml',
57         'wizard/account_fiscalyear_close_state.xml',
58         'wizard/account_chart_view.xml',
59         'wizard/account_move_journal_view.xml',
60         'wizard/account_move_line_reconcile_select_view.xml',
61         'wizard/account_open_closed_fiscalyear_view.xml',
62         'wizard/account_move_line_unreconcile_select_view.xml',
63         'wizard/account_vat_view.xml',
64         'wizard/account_print_journal_view.xml',
65         'wizard/account_general_journal_view.xml',
66         'wizard/account_central_journal_view.xml',
67         'wizard/account_subscription_generate_view.xml',
68         'wizard/account_fiscalyear_close_view.xml',
69         'wizard/account_state_open_view.xml',
70         'wizard/account_journal_select_view.xml',
71         'wizard/account_change_currency_view.xml',
72         'wizard/account_validate_move_view.xml',
73         'wizard/account_pay_invoice_view.xml',
74         'wizard/account_unreconcile_view.xml',
75         'wizard/account_general_ledger_report_view.xml',
76         'wizard/account_invoice_state_view.xml',
77         'wizard/account_partner_balance_report_view.xml',
78         'wizard/account_balance_report_view.xml',
79         'wizard/account_move_line_select_view.xml',
80         'wizard/account_aged_trial_balance_view.xml',
81         'wizard/account_compare_account_balance_report_view.xml',
82         'wizard/account_third_party_ledger.xml',
83         'wizard/account_reconcile_view.xml',
84         'wizard/account_automatic_reconcile_view.xml',
85         'project/wizard/project_account_analytic_line_view.xml',
86         'account_end_fy.xml',
87         'account_invoice_view.xml',
88         'partner_view.xml',
89         'data/account_invoice.xml',
90         'data/account_data2.xml',
91         'account_invoice_workflow.xml',
92         'project/project_view.xml',
93         'project/project_report.xml',
94         'project/wizard/account_analytic_check_view.xml',
95         'project/wizard/account_analytic_balance_report_view.xml',
96         'project/wizard/account_analytic_cost_ledger_view.xml',
97         'project/wizard/account_analytic_inverted_balance_report.xml',
98         'product_view.xml',
99         'account_assert_test.xml',
100         'process/statement_process.xml',
101         'process/customer_invoice_process.xml',
102         'process/supplier_invoice_process.xml',
103         'sequence_view.xml',
104         'company_view.xml',
105         'account_installer.xml',
106         'report/account_invoice_report_view.xml',
107         'report/account_report_view.xml',
108         'report/account_analytic_report_view.xml',
109     ],
110     'demo_xml': [
111         #'demo/price_accuracy00.yml',
112         'account_demo.xml',
113         'project/project_demo.xml',
114         'project/analytic_account_demo.xml',
115         'demo/account_minimal.xml',
116         'account_unit_test.xml',
117     ],
118     'installable': True,
119     'active': False,
120     'certificate': '0080331923549',
121 }
122 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: