~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to multireport_base/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-09 21:30:17 UTC
  • mfrom: (879.1.7 trunk-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20141009213017-u3jicyg8xery3r8c
[MERGE] upforward 7.0
-Fix unused import
-Fix relative import
-Fix full path import
-Fix trailing whitespace pylint error C0303
-Fix autopep8 ignoring E501 & E128
-Fix reimported
-Fix __openerp__.py files
-Translate update

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#    Coded by: María Gabriela Quilarque  <gabriela@vauxoo.com>
9
9
#              Luis Escobar              <luis@vauxoo.com>
10
10
#    Planified by: Nhomar Hernandez <nhomar@vauxoo.com>
11
 
#    Finance by: Vauxoo, C.A. http://vauxoo.com 
 
11
#    Finance by: Vauxoo, C.A. http://vauxoo.com
12
12
#    Audited by: Humberto Arocha <humberto@vauxoo.com>
13
13
#############################################################################
14
14
#    This program is free software: you can redistribute it and/or modify
24
24
#    You should have received a copy of the GNU General Public License
25
25
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
26
26
##############################################################################
27
 
 
28
27
{
29
 
        "name" : "Vauxoo Report Multicompany",
30
 
        "version" : "0.7",
31
 
        "author" : "Vauxoo",
32
 
        "category" : "Generic Modules/Others",
33
 
        "website": "http://vauxoo.com/",
34
 
        "description": '''
35
 
                       Agrega un tab en la Compañia que va a contener los reportes personalizados. 
36
 
                    ''',
37
 
        "depends" : ["base", "account", ],
38
 
        "data" : [  
39
 
                "security/ir.model.access.csv",
40
 
                        "report_multicompany_view.xml",
41
 
        ],
42
 
        "active": False,
43
 
        "installable": True,
44
 
}
 
28
    "name": "Vauxoo Report Multicompany", 
 
29
    "version": "0.7", 
 
30
    "author": "Vauxoo", 
 
31
    "category": "Generic Modules/Others", 
 
32
    "description": """
 
33
\t               Agrega un tab en la Compañia que va a contener los reportes personalizados.
 
34
                    """, 
 
35
    "website": "http://vauxoo.com/", 
 
36
    "license": "", 
 
37
    "depends": [
 
38
        "base", 
 
39
        "account"
 
40
    ], 
 
41
    "demo": [], 
 
42
    "data": [
 
43
        "security/ir.model.access.csv", 
 
44
        "report_multicompany_view.xml"
 
45
    ], 
 
46
    "test": [], 
 
47
    "js": [], 
 
48
    "css": [], 
 
49
    "qweb": [], 
 
50
    "installable": True, 
 
51
    "auto_install": False, 
 
52
    "active": False
 
53
}
 
 
b'\\ No newline at end of file'