13 lines
359 B
Python
13 lines
359 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
team_id = fields.Many2one(
|
|
'crm.team', 'Sales Team',
|
|
help='If set, sale team used notably for sales and assignations related to this partner')
|