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.
18 lines
602 B
18 lines
602 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2018 Akretion France
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
from odoo import models
|
|
|
|
|
|
class PhoneValidationMixin(models.AbstractModel):
|
|
_inherit = 'phone.validation.mixin'
|
|
|
|
def _phone_get_country(self):
|
|
if 'country_id' in self and self.country_id:
|
|
return self.country_id
|
|
if 'partner_id' in self and self.partner_id and self.partner_id.country_id:
|
|
return self.partner_id.country_id
|
|
return self.env.user.company_id.country_id
|