Files
Odoo-Modules/fusion_plating/fusion_plating_process_anodize/__manifest__.py
gsinghpal 8c76a16366 chore(plating): de-dash shipped code + intake-neutral customer emails
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>
2026-06-05 00:16:19 -04:00

79 lines
2.9 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 - Aluminum Anodizing Process Pack',
'version': '19.0.1.0.0',
'category': 'Manufacturing/Plating',
'summary': 'Aluminum anodizing process types - Type I chromic, Type II sulfuric, Type III hardcoat, plus dye/seal/desmut - with bath parameter schemas.',
'description': """
Fusion Plating - Aluminum Anodizing 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 aluminum anodizing.
No new models, no new views - just records loaded with ``noupdate="1"`` so
downstream customizations survive upgrades.
Process types shipped
---------------------
* Type I - Chromic Acid Anodize (MIL-A-8625)
* Type II - Sulfuric Anodize, Clear (MIL-A-8625)
* Type II - Sulfuric Anodize, Dyed (MIL-A-8625)
* Type III - Hardcoat Anodize (MIL-A-8625)
* Dye Immersion
* Hot Water Seal
* Nickel Acetate Seal
* Dichromate Seal
* Bright Dip (pre-anodize)
* Desmut (post-etch)
Bath parameters shipped
-----------------------
Sulfuric acid concentration, dissolved aluminum, bath temperatures (Type II
room-temp and Type III chilled), current density, voltage, chromic acid
(Type I), seal bath temperature, seal bath pH, nickel acetate concentration,
dye concentration, and dye bath temperature. Per-bath target overrides
happen on the bath or recipe record in the core.
Hazard awareness
----------------
* Type I (chromic acid) carries the same Cr(VI) carcinogen warnings as
chrome plating - NPRI Part 1B reportable, Toronto Ch. 681 Cr(VI) limit
2 mg/L, mandatory mist suppression and medical surveillance.
* Type II and Type III sulfuric baths are severe splash hazards -
acid-resistant PPE, eyewash within 10 seconds travel, safety shower.
* Type III chilled bath requires mandatory refrigeration and arc flash
PPE at rectifier voltages up to 90V+.
* Nickel acetate seal is a WHMIS 2015 Category 1A sensitizer/carcinogen
subject to Ontario Reg. 833 air monitoring.
Prefer Type II over Type I wherever customer spec allows, to reduce
hexavalent chromium exposure in the facility.
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,
}