~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to account_move_folio/__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:
1
1
# -*- encoding: utf-8 -*-
2
2
{
3
 
    "name": "Account Move Folio",
4
 
    "version": "1.0",
5
 
    "author": "Vauxoo",
6
 
    'category' : 'Accounting & Finance',
7
 
    "description" : """
 
3
    "name": "Account Move Folio", 
 
4
    "version": "1.0", 
 
5
    "author": "Vauxoo", 
 
6
    "category": "Accounting & Finance", 
 
7
    "description": """
8
8
Account Move Folio
9
9
==================
10
10
 
11
11
This Module keeps a record of all the sequences that have been used in the
12
12
Journal Entries in OpenERP, No matter if a Journal Entry is deleted it will
13
13
stand as a way to audit all the sequences that have been used.
14
 
    """,
15
 
    "website": "http://www.vauxoo.com/",
16
 
    "license": "AGPL-3",
 
14
    """, 
 
15
    "website": "http://www.vauxoo.com/", 
 
16
    "license": "AGPL-3", 
17
17
    "depends": [
18
 
            "account",
19
 
                ],
20
 
    "demo": [
21
 
    ],
 
18
        "account"
 
19
    ], 
 
20
    "demo": [], 
22
21
    "data": [
23
 
        "security/security.xml",
24
 
        'security/ir.model.access.csv',
25
 
        'view/view.xml',
26
 
        'view/menues_and_actions.xml',
27
 
    ],
28
 
    "test" : [
29
 
    ],
30
 
    "installable": True,
31
 
    "active": False,
32
 
}
 
22
        "security/security.xml", 
 
23
        "security/ir.model.access.csv", 
 
24
        "view/view.xml", 
 
25
        "view/menues_and_actions.xml"
 
26
    ], 
 
27
    "test": [], 
 
28
    "js": [], 
 
29
    "css": [], 
 
30
    "qweb": [], 
 
31
    "installable": True, 
 
32
    "auto_install": False, 
 
33
    "active": False
 
34
}
 
 
b'\\ No newline at end of file'