You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
410 B
15 lines
410 B
# -*- coding: utf-8 -*-
|
|
# © 2015 Jacques-Etienne Baudoux <je@bcim.be>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from openerp.osv import fields, orm
|
|
|
|
|
|
class ResPartner(orm.Model):
|
|
_inherit = 'res.partner'
|
|
_columns = {
|
|
'industry_id': fields.many2one(
|
|
'res.partner.category.industry',
|
|
'Industry Sector',
|
|
ondelete='restrict'),
|
|
}
|