forked from Mapan/odoo17e
14 lines
381 B
Python
14 lines
381 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
def _get_countries_allowing_tax_representative(self):
|
|
rslt = super()._get_countries_allowing_tax_representative()
|
|
rslt.add(self.env.ref('base.be').code)
|
|
return rslt
|