~sbi/account-financial-tools/account-financial-tools-bug20130130

« back to all changes in this revision

Viewing changes to account_renumber/__openerp__.py

  • Committer: Guewen Baconnier
  • Author(s): Omar (Pexego)
  • Date: 2013-01-14 11:01:38 UTC
  • mfrom: (94.1.1 account-financial-tools)
  • Revision ID: guewen.baconnier@camptocamp.com-20130114110138-g9awnzjtdshzo2v0
[MERGE] Add account_admin_tools, account_renumber, account_chart_update and account_renumber

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP - Account renumber wizard
 
5
#    Copyright (C) 2009 Pexego Sistemas Informáticos. All Rights Reserved
 
6
#    $Id$
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as published
 
10
#    by the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
{
 
24
    "name": "Account renumber wizard",
 
25
    "version": "6.1",
 
26
    "author": "Pexego",
 
27
    "website": "http://www.pexego.es",
 
28
    "category": "Enterprise Specific Modules",
 
29
    "description": """
 
30
This module adds a wizard to renumber account moves by date only for admin users.
 
31
 
 
32
The wizard, that will be added to the "End of Year Treatments",
 
33
let's you select one or more journals and fiscal periods,
 
34
set a starting number; and then renumber all the posted moves
 
35
from those journals and periods sorted by date.
 
36
 
 
37
It will recreate the sequence number of each account move using their journal sequence so:
 
38
    - Sequences per journal are supported.
 
39
    - Sequences with prefixes and sufixes based on the move date are also supported.
 
40
            """,
 
41
    "depends": [
 
42
                'base',
 
43
                'account',
 
44
    ],
 
45
    "init_xml": [
 
46
    ],
 
47
    "demo_xml": [],
 
48
    "update_xml": [
 
49
        'wizard/wizard_renumber_view.xml',
 
50
    ],
 
51
    "installable": True
 
52
}