~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to sale_bundle_product/__openerp__.py

  • Committer: Albert Cervera i Areny
  • Date: 2011-06-14 09:51:35 UTC
  • mfrom: (5345.1.165 openobject-addons)
  • Revision ID: albert@nan-tic.com-20110614095135-1x3p6tmil5lxkl9b
Merge and add nan_remove_default_filters

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
#################################################################################
 
3
#                                                                               #
 
4
#    sale_bundle_product for OpenERP                                          #
 
5
# Copyright (c) 2011 CamptoCamp. All rights reserved. @author Joel Grand-Guillaume #
 
6
#                                                                               #
 
7
#    This program is free software: you can redistribute it and/or modify       #
 
8
#    it under the terms of the GNU Affero General Public License as             #
 
9
#    published by the Free Software Foundation, either version 3 of the         #
 
10
#    License, or (at your option) any later version.                            #
 
11
#                                                                               #
 
12
#    This program is distributed in the hope that it will be useful,            #
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of             #
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              #
 
15
#    GNU Affero General Public License for more details.                        #
 
16
#                                                                               #
 
17
#    You should have received a copy of the GNU Affero General Public License   #
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.      #
 
19
#                                                                               #
 
20
#################################################################################
 
21
 
 
22
 
 
23
{
 
24
    'name': 'Bundle product (dynamic choice on sale order)',
 
25
    'version': '0.1',
 
26
    'category': 'Generic Modules/Sales & Purchases',
 
27
    'license': 'AGPL-3',
 
28
    'description': """This allow you to make a sale order on bundle product, which is a product with dynamical options
 
29
    choosen for each SO by the customer.
 
30
 
 
31
    Example: 
 
32
 
 
33
    Basic PC
 
34
      - Cpu 1
 
35
      - Ram 4Gb
 
36
      - HD 200 Gb""",
 
37
    'author': 'Camptocamp',
 
38
    'website': 'http://www.camptocamp.com/',
 
39
    'depends': ['sale'], 
 
40
    'init_xml': [],
 
41
    'update_xml': [ 
 
42
           'wizard/product_configurator_view.xml',
 
43
           'sale_bundle_product_view.xml',
 
44
           'product_view.xml',
 
45
           'sale_view.xml',
 
46
      
 
47
    ],
 
48
    'demo_xml': [],
 
49
    'installable': True,
 
50
    'active': False,
 
51
}
 
52