59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
|
|
{
|
|
'name': 'Fusion Faxes',
|
|
'version': '19.0.2.0.0',
|
|
'category': 'Productivity',
|
|
'summary': 'Send and receive faxes via RingCentral API from Sale Orders, Invoices, and Contacts.',
|
|
'description': """
|
|
Fusion Faxes
|
|
============
|
|
|
|
Send faxes directly from Odoo using the RingCentral REST API.
|
|
|
|
Features:
|
|
---------
|
|
* Send faxes from Sale Orders and Invoices
|
|
* Fax history tracked per contact
|
|
* Fax log with status tracking (draft/sending/sent/failed)
|
|
* Cover page text support
|
|
* Multiple document attachments per fax
|
|
* Chatter integration for fax events
|
|
* RingCentral JWT authentication (server-to-server)
|
|
|
|
Copyright 2026 Nexa Systems Inc. All rights reserved.
|
|
""",
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://www.nexasystems.ca',
|
|
'license': 'OPL-1',
|
|
'depends': [
|
|
'base',
|
|
'mail',
|
|
'sale',
|
|
'sale_management',
|
|
'account',
|
|
],
|
|
'external_dependencies': {
|
|
'python': ['ringcentral'],
|
|
},
|
|
'data': [
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
'data/ir_config_parameter_data.xml',
|
|
'data/ir_sequence_data.xml',
|
|
'data/ir_cron_data.xml',
|
|
'views/fusion_fax_views.xml',
|
|
'views/dashboard_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/res_partner_views.xml',
|
|
'views/sale_order_views.xml',
|
|
'views/account_move_views.xml',
|
|
'wizard/send_fax_wizard_views.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': True,
|
|
}
|