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>
30 lines
1.1 KiB
Python
30 lines
1.1 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.
|
|
#
|
|
# Phase 1 (Sub 11) - relocated from fusion_plating_bridge_mrp.
|
|
# Adds the back-reference from fp.thickness.reading to the QC record
|
|
# that produced it. Lives here (not in fusion_plating_certificates)
|
|
# because the link target is fusion.plating.quality.check, owned by
|
|
# fusion_plating_quality.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class FpThicknessReading(models.Model):
|
|
_inherit = 'fp.thickness.reading'
|
|
|
|
quality_check_id = fields.Many2one(
|
|
'fusion.plating.quality.check', string='Quality Check',
|
|
ondelete='set null', index=True,
|
|
help='The QC record the reading belongs to (populated when '
|
|
'readings are logged from the mobile QC checklist).',
|
|
)
|
|
auto_extracted = fields.Boolean(
|
|
string='Auto-Extracted',
|
|
help='True for readings parsed out of a Fischerscope PDF. '
|
|
'These are replaced when the PDF is re-uploaded; '
|
|
'manually-entered readings are preserved.',
|
|
)
|