oca-ocb-sale/odoo-bringout-oca-ocb-sales_team/sales_team/models/res_partner.py
2025-08-29 15:20:49 +02:00

12 lines
364 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, this Sales Team will be used for sales and assignments related to this partner')