11 lines
245 B
Python
11 lines
245 B
Python
from odoo import models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
def _l10n_es_is_foreign(self):
|
|
self.ensure_one()
|
|
|
|
return self.country_id.code not in ('ES', False) or (self.vat or '').startswith("ESN")
|