forked from Mapan/odoo17e
17 lines
545 B
Python
17 lines
545 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models, _
|
|
from odoo.addons.l10n_be_codabox.const import raise_deprecated
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
l10n_be_codabox_show_iap_token = fields.Boolean(related="company_id.l10n_be_codabox_show_iap_token")
|
|
|
|
def l10n_be_codabox_refresh_connection_status(self):
|
|
raise_deprecated(self.env)
|
|
|
|
def l10n_be_codabox_open_soda_mapping(self):
|
|
raise_deprecated(self.env)
|