~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to product_variant/product_variant.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-dedd7f8a42bd4557112a0513082691b8590ad6cc
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
 
4
#
 
5
# WARNING: This program as such is intended to be used by professional
 
6
# programmers who take the whole responsability of assessing all potential
 
7
# consequences resulting from its eventual inadequacies and bugs
 
8
# End users who are looking for a ready-to-use solution with commercial
 
9
# garantees and support are strongly adviced to contract a Free Software
 
10
# Service Company
 
11
#
 
12
# This program is Free Software; you can redistribute it and/or
 
13
# modify it under the terms of the GNU General Public License
 
14
# as published by the Free Software Foundation; either version 2
 
15
# of the License, or (at your option) any later version.
 
16
#
 
17
# This program is distributed in the hope that it will be useful,
 
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
# GNU General Public License for more details.
 
21
#
 
22
# You should have received a copy of the GNU General Public License
 
23
# along with this program; if not, write to the Free Software
 
24
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
25
#
 
26
##############################################################################
 
27
 
 
28
from osv import fields, osv
 
29
 
 
30
#
 
31
# Dimensions Definition
 
32
#
 
33
class product_variant_dimension_type(osv.osv):
 
34
        _name = "product.variant.dimension.type"
 
35
        _description = "Dimension Type"
 
36
        _columns = {
 
37
                'name' : fields.char('Dimension', size=64),
 
38
                'sequence' : fields.integer('Sequence'),
 
39
                'value_ids' : fields.one2many('product.variant.dimension.value', 'Dimension Values'),
 
40
        }
 
41
        _order = "sequence, name"
 
42
product_variant_dimension_type()
 
43
 
 
44
class product_variant_dimension_value(osv.osv):
 
45
        _name = "product.variant.dimension.value"
 
46
        _description = "Dimension Type"
 
47
        _columns = {
 
48
                'name' : fields.char('Dimension Value', size=64),
 
49
                'sequence' : fields.integer('Sequence'),
 
50
                'price_extra' : fields.float('Dimension Values', size=64),
 
51
                'price_margin' : fields.float('Dimension Values', size=64),
 
52
                'dimension_id' : fields.many2one('product.product.dimension.type', 'Dimension', required=True),
 
53
        }
 
54
        _order = "sequence, name"
 
55
product_variant_dimension_value()
 
56
 
 
57
#
 
58
# Dimensions Definition
 
59
#
 
60
 
 
61
class product_product(osv.osv):
 
62
        _name = "product.product"
 
63
        _inherit = "product.product"
 
64
 
 
65
        def _variant_name_get(self, cr, uid, ids, name, arg, context={}):
 
66
                res = {}
 
67
                for p in self.browse(cr, uid, ids, context):
 
68
                        r = map(lambda dim: (dim.dimension_id.name or '')+'/'+(dim.name or '-'), p.dimension_ids)
 
69
                        res[p.id] = ','.join(r)
 
70
                return res
 
71
 
 
72
        _columns = {
 
73
                'dimension_ids': fields.many2many('product.variant.dimension.value', 'product_product_dimension_rel', 'product_id','dimension_id', 'Dimensions'),
 
74
                #
 
75
                # TODO: compute price_extra and _margin based on variants
 
76
                #
 
77
                # 'price_extra': fields.function('Price Extra'),
 
78
                # 'price_margin': fields.function('Price Margin'),
 
79
                #
 
80
                'variants': fields.function(_variant_name_get, method=True, type='char', string='Variants'),
 
81
        }
 
82
product_product()
 
83
 
 
84