49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
{
|
|
'name': 'Fusion Reports — Templates',
|
|
'version': '19.0.1.2.0',
|
|
'category': 'Tools/Reports',
|
|
'summary': 'Branded PDF templates for Quotation, Sales Order, Invoice, Delivery, Purchase Order, and Payment Receipt.',
|
|
'description': """
|
|
Fusion Reports Templates
|
|
========================
|
|
Replaces Odoo's default PDF layouts for the customer-facing quote-to-cash
|
|
documents with a consistent NEXA Systems branded design. The customer-facing
|
|
mail templates are redirected to the new reports so emails always send the
|
|
branded PDF, not the stock Odoo one.
|
|
|
|
Reports included (each in portrait + landscape):
|
|
* Quotation / Sales Order
|
|
* Customer Invoice / Credit Note
|
|
* Delivery / Packing Slip
|
|
* Purchase Order / RFQ
|
|
* Payment Receipt
|
|
""",
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://nexasystems.ca',
|
|
'depends': [
|
|
'sale',
|
|
'account',
|
|
'stock',
|
|
'purchase',
|
|
],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'report/report_base_styles.xml',
|
|
'report/report_actions.xml',
|
|
'report/report_sale.xml',
|
|
'report/report_invoice.xml',
|
|
'report/report_delivery.xml',
|
|
'report/report_purchase.xml',
|
|
'report/report_receipt.xml',
|
|
'data/mail_template_override.xml',
|
|
'data/hide_default_reports.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
'license': 'OPL-1',
|
|
}
|