~openobject-italia-core-devs/openobject-italia/italian-addons

« back to all changes in this revision

Viewing changes to account_fiscal_year_closing/__openerp__.py

  • Committer: eLBati
  • Date: 2011-09-28 07:31:37 UTC
  • mto: This revision was merged to the branch mainline in revision 133.
  • Revision ID: lorenzo.battistini@agilebg.com-20110928073137-0nxmw7f99won6p1f
[ADD] account_fiscal_year_closing

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (c) 2009 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
 
6
#                       Jordi Esteve <jesteve@zikzakmedia.com>
 
7
#    Copyright (c) 2008 ACYSOS S.L. (http://acysos.com) All Rights Reserved.
 
8
#                       Pedro Tarrafeta <pedro@acysos.com>
 
9
#    Copyright (C) 2011 Associazione OpenERP Italia
 
10
#    (<http://www.openerp-italia.org>).
 
11
#
 
12
#    This program is free software: you can redistribute it and/or modify
 
13
#    it under the terms of the GNU Affero General Public License as published by
 
14
#    the Free Software Foundation, either version 3 of the License, or
 
15
#    (at your option) any later version.
 
16
#
 
17
#    This program is distributed in the hope that it will be useful,
 
18
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
#    GNU Affero General Public License for more details.
 
21
#
 
22
#    You should have received a copy of the GNU Affero General Public License
 
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
24
#
 
25
##############################################################################
 
26
 
 
27
{
 
28
    "name" : "Fiscal Year Closing",
 
29
    "version" : "1.0",
 
30
    "author" : "Pexego, OpenERP Italian Community",
 
31
    "website" : "http://www.openerp-italia.org",
 
32
    "category" : "Generic Modules/Accounting",
 
33
    "description": """
 
34
Fiscal Year Closing Wizard
 
35
    
 
36
Replaces the default OpenERP end of year wizards (from account module)
 
37
with a more advanced all-in-one wizard that will let the users:
 
38
  - Check for unbalanced moves, moves with invalid dates
 
39
    or period or draft moves on the fiscal year to be closed.
 
40
  - Create the Loss and Profit entry.
 
41
  - Create the Net Loss and Profit entry.
 
42
  - Create the Closing entry.
 
43
  - Create the Opening entry.
 
44
 
 
45
It is stateful, saving all the info about the fiscal year closing, so the
 
46
user can cancel and undo the operations easily.
 
47
    """,
 
48
    "license" : "AGPL-3",
 
49
    "depends" : [
 
50
                    "base",
 
51
                    "account",
 
52
                ],
 
53
    "init_xml" : [],
 
54
    "update_xml" : [
 
55
                    "security/ir.model.access.csv",
 
56
                    "fyc_workflow.xml",
 
57
                    "fyc_wizard.xml",
 
58
                    "fyc_view.xml",
 
59
                    "hide_account_wizards.xml",
 
60
                    ],
 
61
    "active": False,
 
62
    "installable": True
 
63
}
 
64