9 lines
299 B
Python
9 lines
299 B
Python
# Part of BrowseInfo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
|
|
class ResPartnerIn(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
branch_id = fields.Many2one('res.branch', string="Branch", default=lambda self: self.env.user.branch_id.id) |