Files
Odoo-Modules/fusion_plating/fusion_plating/views/fp_recipe_thickness_views.xml
gsinghpal 406cac1362 feat(promote-customer-spec): Phase A — recipe + spec foundation
- Add fp.recipe.thickness model (replaces fp.coating.thickness, scoped to recipe root)
- Add spec metadata + bake-relief fields to fusion.plating.process.node (recipe root):
  phosphorus_level, thickness_min/max/uom, thickness_option_ids,
  requires_bake_relief + bake_window_hours/temperature/duration
- Add recipe_ids M2M + print_on_cert to fusion.plating.customer.spec
- Add applicable_spec_ids reverse M2M as inherit in fusion_plating_quality
  (avoids circular dep — core can't reference customer.spec which lives in quality)
- Surface new fields on recipe form ("Specification & Bake" notebook page)
- Surface recipe linkage on customer spec form

Pure additive. Foundation for Phases B-E.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-15 00:50:17 -04:00

26 lines
902 B
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>
<record id="view_fp_recipe_thickness_list" model="ir.ui.view">
<field name="name">fp.recipe.thickness.list</field>
<field name="model">fp.recipe.thickness</field>
<field name="arch" type="xml">
<list string="Thickness Options" decoration-muted="not active" editable="bottom">
<field name="sequence" widget="handle"/>
<field name="recipe_id"/>
<field name="value"/>
<field name="uom"/>
<field name="label" string="Display"/>
<field name="note" optional="hide"/>
<field name="active" optional="hide"/>
</list>
</field>
</record>
</odoo>