Replace em-dashes and en-dashes with hyphens across 789 shipped source files (py/xml/js/scss) so the delivered module reads as human-written; em-dashes had become a recognizable AI-generated tell. Internal .md dev notes are excluded. The WO-sticker mojibake strippers keep their dash search targets (now written — / –). No logic changes: comments and display strings only; validated with py_compile + lxml parse. Rewrite the 7 customer notification emails to be intake-neutral (ship-in / drop-off / pickup) and repair-aware, and fix the Shipped email documents line (packing slip vs bill of lading; certificate only when issued). Subjects use a hyphen separator. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
71 lines
2.6 KiB
Python
71 lines
2.6 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 - Electroless Nickel Process Pack',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Manufacturing/Plating',
|
|
'summary': 'Electroless nickel plating process types (low/mid/high phosphorus, PTFE composite, Ni-B, strike) with bath parameter schemas.',
|
|
'description': """
|
|
Fusion Plating - Electroless Nickel Process Pack
|
|
=================================================
|
|
|
|
Part of the Fusion Plating product family by Nexa Systems Inc.
|
|
|
|
This data-only module plugs into the ``fusion_plating`` core and seeds the
|
|
process taxonomy and bath chemistry schemas specific to electroless nickel
|
|
(EN) plating. No new models, no new views - just records loaded with
|
|
``noupdate="1"`` so downstream customizations survive upgrades.
|
|
|
|
Process types shipped
|
|
---------------------
|
|
* Electroless Nickel - Low Phosphorus (2-5% P)
|
|
* Electroless Nickel - Mid Phosphorus (6-9% P)
|
|
* Electroless Nickel - High Phosphorus (10-13% P)
|
|
* Electroless Nickel - PTFE Composite
|
|
* Electroless Nickel - Boron Nickel (Ni-B)
|
|
* Nickel Strike
|
|
|
|
Bath parameters shipped
|
|
-----------------------
|
|
Nickel concentration, sodium hypophosphite, orthophosphite (HPO3),
|
|
pH, temperature, metal turnovers (MTO), bath loading, and stabilizer.
|
|
Every EN process type shares this same parameter schema; per-bath
|
|
target overrides happen on the bath or recipe record in the core.
|
|
|
|
Hazard awareness
|
|
----------------
|
|
Every process type carries ``hazard_notes`` that flag:
|
|
|
|
* WHMIS 2015 Category 1A respiratory sensitizer / suspected carcinogen
|
|
status of nickel compounds.
|
|
* CEPA Schedule 1 toxic-substance listing for oxidic, sulphidic and
|
|
soluble inorganic nickel compounds.
|
|
* Reducing-agent / explosion risk from hypophosphite around oxidizers.
|
|
* Scald PPE requirement at 85-92°C operating temperature.
|
|
* Ontario Reg. 833 air-monitoring and NPRI Part 1A reporting triggers.
|
|
|
|
Install this module after ``fusion_plating``. It depends only on the core
|
|
module and ships no security rules or views of its own.
|
|
|
|
Copyright (c) 2026 Nexa Systems Inc. All rights reserved.
|
|
""",
|
|
'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'],
|
|
'data': [
|
|
'data/fp_bath_parameter_data.xml',
|
|
'data/fp_process_type_data.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|