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>
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
#
|
|
# /fp/job/<id> - scan-redirect endpoint for native fp.job stickers.
|
|
#
|
|
# The fp.job sticker (Phase 5) embeds a QR encoding this URL. When a
|
|
# warehouse user scans it, this controller redirects them to either
|
|
# the fp.job form (for managers) or the upcoming process-tree client
|
|
# action (for operators - Phase 6 expansion).
|
|
|
|
from odoo import http
|
|
from odoo.http import request
|
|
|
|
|
|
class FpJobScanController(http.Controller):
|
|
|
|
@http.route('/fp/job/<int:job_id>', type='http', auth='user', website=False)
|
|
def fp_job_scan(self, job_id, **kwargs):
|
|
Job = request.env['fp.job'].sudo()
|
|
job = Job.browse(job_id).exists()
|
|
if not job:
|
|
return request.redirect('/odoo/plating-jobs')
|
|
|
|
# If user is a plating manager → land on the form.
|
|
# Otherwise (operator) → land on process tree client action
|
|
# (will be wired once process tree is added).
|
|
user = request.env.user
|
|
is_manager = user.has_group('fusion_plating.group_fp_manager')
|
|
if is_manager:
|
|
return request.redirect(
|
|
'/odoo/action-fusion_plating.action_fp_job/%d' % job.id
|
|
)
|
|
# Operator path: same form for now (process tree action will replace
|
|
# this once it's registered).
|
|
return request.redirect(
|
|
'/odoo/action-fusion_plating.action_fp_job/%d' % job.id
|
|
)
|