1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_co_edi_website_sale/models/website.py
2024-12-10 09:04:09 +07:00

13 lines
405 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):
"""Colombian localization must always display b2b fields"""
self.ensure_one()
return self.company_id.account_fiscal_country_id.code == "CO" or super()._display_partner_b2b_fields()