~agilebg/openerp-product-attributes/adding_product_pack_7

« back to all changes in this revision

Viewing changes to product_pack/__openerp__.py

  • Committer: Alex Comba
  • Date: 2013-10-03 14:27:44 UTC
  • Revision ID: alex.comba@agilebg.com-20131003142744-nt2dj8xjsc92tame
[IMP] Add PEP8 style check using flake8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
 
##################################################################################
 
2
###############################################################################
3
3
#
4
4
#    Copyright (c) 2009 Angel Alvarez - NaN  (http://www.nan-tic.com)
5
 
#    Copyright (C) 2012 Agile Business Group sagl (<http://www.agilebg.com>)
6
5
#    Copyright (C) 2012 Domsense srl (<http://www.domsense.com>)
 
6
#    Copyright (C) 2013 Agile Business Group sagl (<http://www.agilebg.com>)
 
7
#    @author Albert Cervera i Areny <albert@nan-tic.com>
 
8
#    @author Franco Tampieri <franco.tampieri@agilebg.com>
 
9
#    Ported to OpenERP 7.0 by Alex Comba <alex.comba@agilebg.com>
7
10
#
8
11
#    This program is free software: you can redistribute it and/or modify
9
12
#    it under the terms of the GNU Affero General Public License as published
18
21
#    You should have received a copy of the GNU Affero General Public License
19
22
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
23
#
21
 
##################################################################################
 
24
###############################################################################
22
25
{
23
 
        "name" : "Product Pack",
24
 
        "version" : "0.2",
25
 
        "category": "Warehouse Management",
26
 
        "description" : """
27
 
        Based on the NAN_product_pack this module allows configuring products as a collection of other products.
28
 
        If such a product is added in a sale order or a purchase order, all the products of the pack will be added
29
 
        automatically (when storing the order) as children of the pack product.
30
 
        """,
31
 
        "author" : "Agile Business Group & NaN·tic",
32
 
        "website" : "http://www.agilebg.com",
33
 
        "depends" : [
34
 
                'sale',
35
 
                'purchase',
36
 
        ],
37
 
        "data" : [
38
 
                'security/ir.model.access.csv',
39
 
                'pack_view.xml'
40
 
        ],
41
 
        "active": False,
42
 
        "installable": True
 
26
    "name": "Product Pack",
 
27
    "version": "0.2",
 
28
    "category": "Warehouse Management",
 
29
    "description": """
 
30
Based on the NAN_product_pack this module allows configuring products
 
31
as a collection of other products.
 
32
If such a product is added in a sale order or a purchase order, all the
 
33
products of the pack will be added automatically (when storing the order)
 
34
as children of the pack product.
 
35
    """,
 
36
    "author": "Agile Business Group & NaN·tic",
 
37
    "website": "http://www.agilebg.com",
 
38
    "depends": [
 
39
        'sale',
 
40
        'purchase',
 
41
    ],
 
42
    "data": [
 
43
        'security/ir.model.access.csv',
 
44
        'pack_view.xml'
 
45
    ],
 
46
    "active": False,
 
47
    "installable": True
43
48
}