~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to transaction_type/__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:
5
5
#    Copyright (C) Vauxoo (<http://vauxoo.com>).
6
6
#    All Rights Reserved
7
7
###############Credits######################################################
8
 
#    Coded by: Vauxoo C.A.           
 
8
#    Coded by: Vauxoo C.A.
9
9
#    Planified by: Nhomar Hernandez
10
10
#    Audited by: Vauxoo C.A.
11
11
#############################################################################
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
24
################################################################################
25
25
{
26
 
    "name" : "Transaction Type",
27
 
    "version" : "0.1",
28
 
    "depends" : ["account"],
29
 
    "author" : "Vauxoo",
30
 
    "description" : """
 
26
    "name": "Transaction Type", 
 
27
    "version": "0.1", 
 
28
    "author": "Vauxoo", 
 
29
    "category": "Generic Modules", 
 
30
    "description": """
31
31
    Manages bank transactions regarding credit cards, debit cards, petty cash, and Carton
32
 
    """,
33
 
    "website" : "http://vauxoo.com",
34
 
    "category" : "Generic Modules",
35
 
    "init_xml" : [],
36
 
    "demo_xml" : [],
37
 
    "test": [ ],
38
 
    "update_xml" : [
39
 
    'security/transaction_type.xml',
40
 
    'security/ir.model.access.csv',
41
 
    'view/transaction_type_view.xml',
42
 
    'view/account_view.xml',
43
 
    ],
44
 
    "active": False,
45
 
    "installable": True,
46
 
}
 
32
    """, 
 
33
    "website": "http://vauxoo.com", 
 
34
    "license": "", 
 
35
    "depends": [
 
36
        "account"
 
37
    ], 
 
38
    "demo": [], 
 
39
    "data": [
 
40
        "security/transaction_type.xml", 
 
41
        "security/ir.model.access.csv", 
 
42
        "view/transaction_type_view.xml", 
 
43
        "view/account_view.xml"
 
44
    ], 
 
45
    "test": [], 
 
46
    "js": [], 
 
47
    "css": [], 
 
48
    "qweb": [], 
 
49
    "installable": True, 
 
50
    "auto_install": False, 
 
51
    "active": False
 
52
}
 
 
b'\\ No newline at end of file'