The CoC body now renders English + the French translation together, so the separate "Certificat de Conformité (Français)" print option was redundant. - Removed the action_report_coc_fr report action and the now-dead report_coc_fr template; renamed action_report_coc_en to "Certificate of Conformance" (print filename "CoC - <name>"). - fp_notification_template: dropped the per-partner-language EN/FR branch — CoC email attachments always render the single bilingual action_report_coc_en. - fp_hide_default_reports: dropped the FR sequence record. - Refreshed the report_coc.xml design note. - Bump reports 19.0.11.32.0, notifications 19.0.7.1.0. Deployed on entech (-u removed the orphan FR action + template). Verified the cert Print menu now lists only "Certificate of Conformance" and it renders clean. The dead action_report_coc_fr ref in the uninstalled fusion_plating_bridge_mrp is left as-is (module not loaded). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
# Part of the Fusion Plating product family.
|
|
|
|
{
|
|
'name': 'Fusion Plating — Notifications',
|
|
'version': '19.0.7.1.0',
|
|
'category': 'Manufacturing/Plating',
|
|
'summary': 'Auto-email notifications at workflow milestones with configurable templates, PDF attachments, and audit log.',
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://www.nexasystems.ca',
|
|
'maintainer': 'Nexa Systems Inc.',
|
|
'support': 'support@nexasystems.ca',
|
|
'license': 'OPL-1',
|
|
'price': 0.00,
|
|
'currency': 'CAD',
|
|
'depends': [
|
|
'fusion_plating_configurator',
|
|
'fusion_plating_certificates',
|
|
'fusion_plating_receiving',
|
|
'fusion_plating_invoicing',
|
|
'fusion_plating_logistics',
|
|
'fusion_plating_reports',
|
|
'fusion_shipping',
|
|
'sale_management',
|
|
'account',
|
|
'mail',
|
|
],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/mail_template_data.xml',
|
|
'data/fp_notification_template_data.xml',
|
|
'data/fp_cert_authority_templates.xml',
|
|
'views/fp_notification_template_views.xml',
|
|
'views/fp_notification_log_views.xml',
|
|
'views/fp_notifications_menu.xml',
|
|
],
|
|
'post_init_hook': 'post_init_hook',
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|