~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to sale_order_copy_line/__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:
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
24
#
25
25
#
26
 
 
27
26
{
28
 
    "name": "Sale Order Line Copy",
29
 
    "version": "1.0",
30
 
    "author": "Vauxoo",
31
 
    "category": "Sale Order",
32
 
    "description" : """
 
27
    "name": "Sale Order Line Copy", 
 
28
    "version": "1.0", 
 
29
    "author": "Vauxoo", 
 
30
    "category": "Sale Order", 
 
31
    "description": """
33
32
Sale Order Line Copy
34
33
====================
35
34
 
36
35
This module add the button in the sale order line for copy data.
37
36
 
38
 
    """,
39
 
    "website": "http://www.vauxoo.com/",
40
 
    "license": "AGPL-3",
41
 
    "depends": ["base",
42
 
                "sale",
43
 
                "sale_stock",],
44
 
    "demo": ["demo/sale_order_demo.xml"],
45
 
    "test": ["test/sale_order_copy_line_test.yml"],
 
37
    """, 
 
38
    "website": "http://www.vauxoo.com/", 
 
39
    "license": "AGPL-3", 
 
40
    "depends": [
 
41
        "base", 
 
42
        "sale", 
 
43
        "sale_stock"
 
44
    ], 
 
45
    "demo": [
 
46
        "demo/sale_order_demo.xml"
 
47
    ], 
46
48
    "data": [
47
 
    "security/sale_order_line_copy_group.xml",
48
 
    "view/sale_order_line_copy.xml"],
49
 
    "installable": True,
50
 
    "active": False,
51
 
}
 
49
        "security/sale_order_line_copy_group.xml", 
 
50
        "view/sale_order_line_copy.xml"
 
51
    ], 
 
52
    "test": [
 
53
        "test/sale_order_copy_line_test.yml"
 
54
    ], 
 
55
    "js": [], 
 
56
    "css": [], 
 
57
    "qweb": [], 
 
58
    "installable": True, 
 
59
    "auto_install": False, 
 
60
    "active": False
 
61
}
 
 
b'\\ No newline at end of file'