fix(configurator): rebalance two-column layout — no more empty right side
After the right-side preview panel was retired, the left column had Customer & Part / RFQ-PO / Geometry / Delivery & Fees stacked while the right side ran out of content after Rush Order — almost half the form was dead air. Reshuffled the groups so every row has peers. Old layout (4 rows, mostly half-empty): Customer & Part | RFQ / PO / Quantity & Options Geometry | Auto from 3D (often empty) Delivery & Fees | (empty) Calculated Price | Final Price New layout (every row balanced): Customer & Part | RFQ / PO Documents Quantity & Options | Auto from 3D (visible only with part catalog) Geometry | Delivery & Fees Calculated Price | Final Price Quantity & Options moved out of the RFQ/PO group (where it was shoehorned in via a <separator>) into its own group on the left of row 2. Auto from 3D becomes its right-side peer when present, or shrinks gracefully when absent. Delivery & Fees moves up one row to pair with Geometry instead of sitting alone. Net effect: form fits more above the fold and the estimator's eye doesn't have to chase fields across uneven columns. Bumped fusion_plating_configurator to 19.0.4.0.0. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Fusion Plating — Configurator',
|
'name': 'Fusion Plating — Configurator',
|
||||||
'version': '19.0.3.0.0',
|
'version': '19.0.4.0.0',
|
||||||
'category': 'Manufacturing/Plating',
|
'category': 'Manufacturing/Plating',
|
||||||
'summary': 'Quotation configurator with part catalog, coating configs, and formula-based pricing engine.',
|
'summary': 'Quotation configurator with part catalog, coating configs, and formula-based pricing engine.',
|
||||||
'description': """
|
'description': """
|
||||||
|
|||||||
@@ -192,27 +192,22 @@
|
|||||||
<field name="po_number_preliminary"
|
<field name="po_number_preliminary"
|
||||||
string="PO Number"
|
string="PO Number"
|
||||||
readonly="state != 'draft'"/>
|
readonly="state != 'draft'"/>
|
||||||
<separator string="Quantity & Options"/>
|
</group>
|
||||||
|
</group>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Row 2 — Quantity / Options on the LEFT, Auto-from-3D on
|
||||||
|
the RIGHT (visible only when a part catalog is linked).
|
||||||
|
Quantity moved out of the RFQ/PO group so the right
|
||||||
|
column has a peer instead of stretching alone.
|
||||||
|
-->
|
||||||
|
<group>
|
||||||
|
<group string="Quantity & Options">
|
||||||
<field name="quantity"/>
|
<field name="quantity"/>
|
||||||
<field name="batch_size"/>
|
<field name="batch_size"/>
|
||||||
<field name="complexity"/>
|
<field name="complexity"/>
|
||||||
<field name="rush_order"/>
|
<field name="rush_order"/>
|
||||||
</group>
|
</group>
|
||||||
</group>
|
|
||||||
<group>
|
|
||||||
<group string="Geometry">
|
|
||||||
<field name="surface_area"/>
|
|
||||||
<field name="surface_area_uom"/>
|
|
||||||
<field name="masking_area_sqin"
|
|
||||||
string="Masking Area (sq in)"/>
|
|
||||||
<field name="effective_area_sqin"
|
|
||||||
string="Effective Plating Area"
|
|
||||||
readonly="1"/>
|
|
||||||
<field name="thickness_requested"/>
|
|
||||||
<field name="substrate_material"/>
|
|
||||||
<field name="masking_zones"/>
|
|
||||||
<field name="turnaround_days"/>
|
|
||||||
</group>
|
|
||||||
<group string="Auto from 3D"
|
<group string="Auto from 3D"
|
||||||
invisible="not part_catalog_id">
|
invisible="not part_catalog_id">
|
||||||
<field name="bbox_summary_in"
|
<field name="bbox_summary_in"
|
||||||
@@ -232,13 +227,34 @@
|
|||||||
readonly="1"/>
|
readonly="1"/>
|
||||||
</group>
|
</group>
|
||||||
</group>
|
</group>
|
||||||
|
|
||||||
<div class="alert alert-warning"
|
<div class="alert alert-warning"
|
||||||
invisible="is_manifold or not part_catalog_id or not hole_count">
|
invisible="is_manifold or not part_catalog_id or not hole_count">
|
||||||
<i class="fa fa-exclamation-triangle me-1"/>
|
<i class="fa fa-exclamation-triangle me-1"/>
|
||||||
<strong>Warning:</strong> 3D model is not watertight.
|
<strong>Warning:</strong> 3D model is not watertight.
|
||||||
Surface area calculation may be inaccurate. Review the file before quoting.
|
Surface area calculation may be inaccurate. Review the file before quoting.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Row 3 — Geometry on the LEFT, Delivery & Fees on the
|
||||||
|
RIGHT. Delivery/Fees used to live in its own row with
|
||||||
|
an empty right side; pairing it with Geometry keeps
|
||||||
|
both columns balanced.
|
||||||
|
-->
|
||||||
<group>
|
<group>
|
||||||
|
<group string="Geometry">
|
||||||
|
<field name="surface_area"/>
|
||||||
|
<field name="surface_area_uom"/>
|
||||||
|
<field name="masking_area_sqin"
|
||||||
|
string="Masking Area (sq in)"/>
|
||||||
|
<field name="effective_area_sqin"
|
||||||
|
string="Effective Plating Area"
|
||||||
|
readonly="1"/>
|
||||||
|
<field name="thickness_requested"/>
|
||||||
|
<field name="substrate_material"/>
|
||||||
|
<field name="masking_zones"/>
|
||||||
|
<field name="turnaround_days"/>
|
||||||
|
</group>
|
||||||
<group string="Delivery & Fees">
|
<group string="Delivery & Fees">
|
||||||
<field name="delivery_method"/>
|
<field name="delivery_method"/>
|
||||||
<field name="currency_id" invisible="1"/>
|
<field name="currency_id" invisible="1"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user