57 lines
1.6 KiB
Python
57 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Disable Odoo Online Services',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Tools',
|
|
'summary': 'Blocks ALL external Odoo server communications',
|
|
'description': """
|
|
Comprehensive Module to Disable ALL Odoo Online Services
|
|
=========================================================
|
|
|
|
This module completely blocks all external communications from Odoo to Odoo's servers.
|
|
|
|
**Blocked Services:**
|
|
- Publisher Warranty checks (license validation)
|
|
- IAP (In-App Purchase) - All services
|
|
- Partner Autocomplete API
|
|
- Company Enrichment API
|
|
- VAT Lookup API
|
|
- SMS API
|
|
- Invoice/Expense OCR Extract
|
|
- Media Library (Stock Images)
|
|
- Currency Rate Live Updates
|
|
- CRM Lead Mining
|
|
- CRM Reveal (Website visitor identification)
|
|
- Google Calendar Sync
|
|
- AI/OLG Content Generation
|
|
- Database Registration
|
|
- Module Update checks from Odoo Store
|
|
- Session-based license detection
|
|
- Frontend expiration panel warnings
|
|
|
|
**Use Cases:**
|
|
- Air-gapped installations
|
|
- Local development without internet
|
|
- Enterprise deployments that don't want telemetry
|
|
- Testing environments
|
|
|
|
**WARNING:** This module disables legitimate Odoo services.
|
|
Only use if you understand the implications.
|
|
""",
|
|
'author': 'Fusion Development',
|
|
'website': 'https://fusiondevelopment.com',
|
|
'license': 'LGPL-3',
|
|
'depends': ['base', 'mail', 'web'],
|
|
'data': [
|
|
'data/disable_external_services.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'disable_odoo_online/static/src/js/disable_external_links.js',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': False,
|
|
}
|