Files
Odoo-Modules/fusion_pdf_preview/__manifest__.py
gsinghpal fc3c966484 changes
2026-03-13 12:38:28 -04:00

53 lines
1.9 KiB
Python

# -*- encoding: utf-8 -*-
{
"name": "Fusion PDF Preview",
"version": "19.0.2.0.0",
"depends": ["web"],
"author": "Nexa Systems Inc",
"category": "web",
"website": "https://www.nexasystemsinc.com",
"summary": "Preview and print PDF reports directly in your browser without downloading",
"description": """
Fusion PDF Preview - by Nexa Systems Inc
Preview and print PDF reports directly in your browser without downloading.
Key Features:
- In-browser PDF preview dialog with full-screen support
- One-click printing without file download
- Download and open-in-new-tab buttons in the preview dialog
- Batch document preview
- Per-user configurable preview and print preferences
- Company-level default settings with bulk apply to all users
- Report-specific behavior: always preview, always download, or always auto-print
- Keyboard shortcuts: F (fullscreen), Ctrl+P (print), Ctrl+D (download)
- Print audit log tracking who previewed, printed, or downloaded reports
- Automatic printing mode for streamlined workflows
- Error-safe PDF rendering with friendly error display
- Compatible with Odoo 19 Community and Enterprise
""",
"support": "support@nexasystemsinc.com",
"data": [
"security/ir.model.access.csv",
"data/ir_config_parameter_data.xml",
"views/res_users.xml",
"views/res_config_settings_views.xml",
"views/ir_actions_report_views.xml",
"views/preview_log_views.xml",
"report/ir_actions_report_templates.xml",
"report/ir_actions_report.xml",
],
"assets": {
"web.assets_backend": [
"fusion_pdf_preview/static/src/js/pdf_preview.js",
"fusion_pdf_preview/static/src/js/user_menu.js",
"fusion_pdf_preview/static/src/xml/pdf_viewer_dialog.xml",
],
},
"images": ["static/description/banner.png"],
"installable": True,
"application": True,
"license": "LGPL-3",
}