Odoo18-Base/addons/l10n_br_website_sale/models/website.py
2025-03-10 10:52:11 +07:00

12 lines
364 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):
""" Brazil localization must always display b2b fields. """
return self.company_id.country_id.code == 'BR' or super()._display_partner_b2b_fields()