oca-ocb-l10n_americas/odoo-bringout-oca-ocb-l10n_uy/l10n_uy/controllers/portal.py
Ernad Husremovic 1b82c20a58 19.0 vanilla
2026-03-09 09:31:16 +01:00

14 lines
489 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.http import request
from odoo.addons.l10n_latam_base.controllers.portal import L10nLatamBasePortalAccount
class L10nUYPortalAccount(L10nLatamBasePortalAccount):
def _l10n_get_default_identification_type_id(self):
return (
(self.env.company.country_code == 'UY' and request.env.ref('l10n_uy.it_ci'))
or super()._l10n_get_default_identification_type_id()
)