~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to product_customer_code/__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:
24
24
#
25
25
##############################################################################
26
26
{
27
 
    "name" : "Products Customer Code",
28
 
    "version" : "1.0",
29
 
    "author" : "Vauxoo",
30
 
    "website" : "http://www.vauxoo.com/",
31
 
    "license" : "AGPL-3",
32
 
    "category" : "Generic Modules/Product",
33
 
    "depends" : ["base", "product"],
34
 
    "init_xml" : [],
35
 
    "demo_xml" : [],
 
27
    "name": "Products Customer Code", 
 
28
    "version": "1.0", 
 
29
    "author": "Vauxoo", 
 
30
    "category": "Generic Modules/Product", 
36
31
    "description": """
37
32
Add manies Codes of Customer's in product
38
 
     """,
39
 
    "update_xml" : ["security/product_customer_code_security.xml",
40
 
                    "security/ir.model.access.csv",
41
 
                    "product_customer_code_view.xml",
42
 
                    "product_product_view.xml",
43
 
                    
44
 
                    ],
45
 
    "active": False,
46
 
    "installable": True,
47
 
}
 
33
     """, 
 
34
    "website": "http://www.vauxoo.com/", 
 
35
    "license": "AGPL-3", 
 
36
    "depends": [
 
37
        "base", 
 
38
        "product"
 
39
    ], 
 
40
    "demo": [], 
 
41
    "data": [
 
42
        "security/product_customer_code_security.xml", 
 
43
        "security/ir.model.access.csv", 
 
44
        "product_customer_code_view.xml", 
 
45
        "product_product_view.xml"
 
46
    ], 
 
47
    "test": [], 
 
48
    "js": [], 
 
49
    "css": [], 
 
50
    "qweb": [], 
 
51
    "installable": True, 
 
52
    "auto_install": False, 
 
53
    "active": False
 
54
}
 
 
b'\\ No newline at end of file'