Includes: - Odoo 19 framework (odoo/) - 27 custom EnCoach addons (new_project/custom_addons/) - encoach_core, encoach_api, encoach_lms_api, encoach_adaptive_api - encoach_exam, encoach_taxonomy, encoach_adaptive, encoach_assignment - encoach_ai, encoach_ai_grading, encoach_ai_generation, encoach_ai_media - encoach_courseware, encoach_communication, encoach_subscription - encoach_notification, encoach_approval, encoach_branding - encoach_classroom, encoach_registration, encoach_stats - encoach_faq, encoach_ticket, encoach_training, encoach_resources - encoach_adaptive_ai, encoach_sis - 21 OpenEduCat Enterprise modules (new_project/enterprise-19/) - 14 OpenEduCat Community modules (new_project/openeducat_erp-19.0/) - Configuration: odoo.conf, requirements.txt, scripts - 200+ REST API endpoints with JWT authentication - SRS and test documentation Made-with: Cursor
30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import controllers
|
|
from . import models
|
|
from . import wizard
|
|
|
|
from odoo.http import request
|
|
|
|
|
|
def uninstall_hook(env):
|
|
# Force remove ondelete='cascade' elements,
|
|
# This might be prevented by another ondelete='restrict' field
|
|
# TODO: This should be an Odoo generic fix, not a website specific one
|
|
website_domain = [('website_id', '!=', False)]
|
|
env['ir.asset'].search(website_domain).unlink()
|
|
env['ir.ui.view'].search(website_domain).with_context(active_test=False, _force_unlink=True).unlink()
|
|
|
|
# Cleanup records which are related to websites and will not be autocleaned
|
|
# by the uninstall operation. This must be done here in the uninstall_hook
|
|
# as during an uninstallation, `unlink` is not called for records which were
|
|
# created by the user (not XML data). Same goes for @api.ondelete available
|
|
# from 15.0 and above.
|
|
env['website'].search([])._remove_attachments_on_website_unlink()
|
|
|
|
|
|
def post_init_hook(env):
|
|
if request:
|
|
env = env(context=request.default_context())
|
|
request.website_routing = env['website'].get_current_website().id
|