mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 06:32:02 +02:00
7 lines
181 B
Python
7 lines
181 B
Python
from odoo import fields, models
|
|
|
|
|
|
class CrmTeam(models.Model):
|
|
_inherit = 'crm.team'
|
|
|
|
pos_config_ids = fields.One2many('pos.config', 'crm_team_id', string="Point of Sales")
|