16 lines
426 B
Python
16 lines
426 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2024-2025 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
# Part of the Fusion Claim Assistant product family.
|
|
|
|
from . import models
|
|
from . import wizard
|
|
|
|
|
|
def _load_adp_device_codes(env):
|
|
"""
|
|
Post-init hook to load ADP Mobility Manual device codes.
|
|
Called on module install AND upgrade.
|
|
"""
|
|
env['fusion.adp.device.code']._load_packaged_device_codes()
|