~sebastien.beau/e-commerce-addons/e-commerce-addons-invoice-payment-method

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- encoding: utf-8 -*-
##############################################################################
#
#    Author Guewen Baconnier. Copyright Camptocamp SA
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

from openerp.osv.orm import Model
from openerp.osv import fields

class product_link(Model):
    _name = 'product.link'
    _rec_name = 'linked_product_id'

    def get_link_type_selection(self, cr, uid, context=None):
        # selection can be inherited
        return [('cross_sell', 'Cross-Sell'), ('up_sell', 'Up-Sell'), ('related', 'Related')]

    def _get_link_type_selection(self, cr, uid, context=None):
        return self.get_link_type_selection(cr, uid, context=context)

    _columns = {
        'product_id': fields.many2one('product.product', 'Source product', required=True, ondelete='cascade'),
        'linked_product_id': fields.many2one('product.product', 'Linked product', required=True, ondelete='cascade'),
        'type': fields.selection(_get_link_type_selection, 'Link type', required=True),
        'is_active': fields.boolean('Active'),
    }

    # It seems that it's not possible to set the default value of a field in
    # a one2many via the context (it works well with a many2one though)
    # So I have to set explicitly a default value
    def _get_default_product_id(self, cr, uid, context=None):
        if context is None:
            context = {}
        return context.get('product_id')

    _defaults = {
        'is_active': True,
        'product_id': _get_default_product_id,
    }

class product(Model):
    """Inherit product in order to manage product links"""
    _inherit = 'product.product'

    _columns = {
        'product_link_ids': fields.one2many(
            'product.link',
            'product_id',
            'Product links',
            ),
        }