- fusion_claims: separated field service logic, updated controllers/views - fusion_tasks: updated task views and map integration - fusion_authorizer_portal: added page 11 signing, schedule booking, migrations - fusion_shipping: new standalone shipping module (Canada Post, FedEx, DHL, Purolator) - fusion_ltc_management: new standalone LTC management module
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()
|