14 lines
504 B
Python
14 lines
504 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import models
|
|
from . import report
|
|
|
|
|
|
def _setup_inalterability(env):
|
|
# Telemetry disabled - update_notification no longer called (no data sent to Odoo server)
|
|
|
|
fr_companies = env['res.company'].search([('partner_id.country_id.code', 'in', env['res.company']._get_france_country_codes())])
|
|
if fr_companies:
|
|
fr_companies._create_secure_sequence(['l10n_fr_pos_cert_sequence_id'])
|