~vauxoo/addons-vauxoo/trunk-upforward70-2-dev-moylop260

543.72.1 by Jorge Angel Naranjo Rogel
[ADD][account_move_validate_multi_wizard] Added new wizard for validate multi journal entries
1
#!/usr/bin/python
2
# -*- encoding: utf-8 -*-
543.72.2 by Jorge Angel Naranjo Rogel
[IMP][account_move_multi_wizard] Added format autopep8 in files .py and improvement sintaxis of code un wizard.py
3
#
543.72.1 by Jorge Angel Naranjo Rogel
[ADD][account_move_validate_multi_wizard] Added new wizard for validate multi journal entries
4
#    Module Writen to OpenERP, Open Source Management Solution
5
#    Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
6
#    All Rights Reserved
543.72.2 by Jorge Angel Naranjo Rogel
[IMP][account_move_multi_wizard] Added format autopep8 in files .py and improvement sintaxis of code un wizard.py
7
#
543.72.1 by Jorge Angel Naranjo Rogel
[ADD][account_move_validate_multi_wizard] Added new wizard for validate multi journal entries
8
#    Coded by: Jorge Naranajo <jorge_nr@vauxoo.com>
543.72.2 by Jorge Angel Naranjo Rogel
[IMP][account_move_multi_wizard] Added format autopep8 in files .py and improvement sintaxis of code un wizard.py
9
#
543.72.1 by Jorge Angel Naranjo Rogel
[ADD][account_move_validate_multi_wizard] Added new wizard for validate multi journal entries
10
#    This program is free software: you can redistribute it and/or modify
11
#    it under the terms of the GNU Affero General Public License as published by
12
#    the Free Software Foundation, either version 3 of the License, or
13
#    (at your option) any later version.
14
#
15
#    This program is distributed in the hope that it will be useful,
16
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
#    GNU Affero General Public License for more details.
19
#
20
#    You should have received a copy of the GNU Affero General Public License
21
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
543.72.2 by Jorge Angel Naranjo Rogel
[IMP][account_move_multi_wizard] Added format autopep8 in files .py and improvement sintaxis of code un wizard.py
22
#
543.72.1 by Jorge Angel Naranjo Rogel
[ADD][account_move_validate_multi_wizard] Added new wizard for validate multi journal entries
23
{
543.406.1 by alan guzman
[IMP] changes in files __openerp__.py on modules
24
    "name": "Account Move Validate Wizard", 
25
    "version": "0.1", 
26
    "author": "Vauxoo", 
27
    "category": "Generic Modules", 
28
    "description": """This module adds a wizard in the model journal entries,
543.72.3 by Jorge Angel Naranjo Rogel
[IMP][account_move_multi_wizard] Improved functionality for validation of journal entries
29
which validates several policies selected in the tree view.
30
In the case that one of several selected journal entries to validate,
31
are unbalanced, the validation process will fail.
543.406.1 by alan guzman
[IMP] changes in files __openerp__.py on modules
32
""", 
33
    "website": "http://www.vauxoo.com", 
34
    "license": "", 
543.72.2 by Jorge Angel Naranjo Rogel
[IMP][account_move_multi_wizard] Added format autopep8 in files .py and improvement sintaxis of code un wizard.py
35
    "depends": [
543.406.1 by alan guzman
[IMP] changes in files __openerp__.py on modules
36
        "account"
37
    ], 
38
    "demo": [], 
39
    "data": [
40
        "view/wizard.xml"
41
    ], 
42
    "test": [], 
43
    "js": [], 
44
    "css": [], 
45
    "qweb": [], 
46
    "installable": True, 
543.7.598 by Moises Lopez
[MERGE] Set standard in all __openerp__.py files
47
    "auto_install": False, 
48
    "active": False
49
}