odoo18/addons/l10n_uy_website_sale/models/website.py

12 lines
365 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class Website(models.Model):
_inherit = 'website'
def _display_partner_b2b_fields(self):
""" Uruguay localization must always display b2b fields. """
return self.company_id.country_id.code == 'UY' or super()._display_partner_b2b_fields()