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
57 lines
1.6 KiB
Python
57 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'SMS gateway',
|
|
'version': '3.0',
|
|
'category': 'Sales/Sales',
|
|
'summary': 'SMS Text Messaging',
|
|
'description': """
|
|
This module gives a framework for SMS text messaging
|
|
----------------------------------------------------
|
|
|
|
The service is provided by the In App Purchase Odoo platform.
|
|
""",
|
|
'depends': [
|
|
'base',
|
|
'iap_mail',
|
|
'mail',
|
|
'phone_validation'
|
|
],
|
|
'data': [
|
|
'data/iap_service_data.xml',
|
|
'data/ir_cron_data.xml',
|
|
'wizard/sms_account_code_views.xml',
|
|
'wizard/sms_account_phone_views.xml',
|
|
'wizard/sms_account_sender_views.xml',
|
|
'wizard/sms_composer_views.xml',
|
|
'wizard/sms_template_preview_views.xml',
|
|
'wizard/sms_template_reset_views.xml',
|
|
'views/ir_actions_server_views.xml',
|
|
'views/mail_notification_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/res_partner_views.xml',
|
|
'views/iap_account_views.xml',
|
|
'views/sms_sms_views.xml',
|
|
'views/sms_template_views.xml',
|
|
'security/ir.model.access.csv',
|
|
'security/sms_security.xml',
|
|
],
|
|
'demo': [
|
|
'data/sms_demo.xml',
|
|
'data/mail_demo.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'sms/static/src/**/*',
|
|
],
|
|
'web.assets_unit_tests': [
|
|
'sms/static/tests/**/*',
|
|
],
|
|
},
|
|
'author': 'Odoo S.A.',
|
|
'license': 'LGPL-3',
|
|
}
|