Files
Odoo-Modules/fusion_plating/fusion_plating_aerospace/views/fp_fair_views.xml
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

63 lines
2.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2026 Nexa Systems Inc.
License OPL-1 (Odoo Proprietary License v1.0)
Part of the Fusion Plating product family.
-->
<odoo>
<!--
Extend the quality FAIR form with the AS9102 form attachments
and customer-approval signature block. Added as a notebook page
so the base layout is untouched.
-->
<record id="view_fp_fair_form_inherit_aerospace" model="ir.ui.view">
<field name="name">fp.fair.form.inherit.aerospace</field>
<field name="model">fusion.plating.fair</field>
<field name="inherit_id" ref="fusion_plating_quality.view_fp_fair_form"/>
<field name="arch" type="xml">
<xpath expr="//notebook" position="inside">
<page string="AS9102 Forms" name="as9102_forms">
<group>
<group string="Form 1 - Part Accountability">
<field name="x_fc_as9102_form1"
filename="x_fc_as9102_form1_filename"/>
<field name="x_fc_as9102_form1_filename" invisible="1"/>
</group>
<group string="Form 2 - Product Accountability">
<field name="x_fc_as9102_form2"
filename="x_fc_as9102_form2_filename"/>
<field name="x_fc_as9102_form2_filename" invisible="1"/>
</group>
</group>
<group>
<group string="Form 3 - Characteristic Accountability">
<field name="x_fc_as9102_form3"
filename="x_fc_as9102_form3_filename"/>
<field name="x_fc_as9102_form3_filename" invisible="1"/>
</group>
<group string="Drawing &amp; Customer Approval">
<field name="x_fc_drawing_revision"/>
<field name="x_fc_customer_approval_id"/>
<field name="x_fc_customer_approval_date"/>
</group>
</group>
</page>
</xpath>
</field>
</record>
<!-- Drawing revision column on the list for quick scanning. -->
<record id="view_fp_fair_list_inherit_aerospace" model="ir.ui.view">
<field name="name">fp.fair.list.inherit.aerospace</field>
<field name="model">fusion.plating.fair</field>
<field name="inherit_id" ref="fusion_plating_quality.view_fp_fair_list"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='part_revision']" position="after">
<field name="x_fc_drawing_revision" string="Dwg Rev" optional="show"/>
</xpath>
</field>
</record>
</odoo>