fix(fusion_plating_jobs): internal sticker row 3 — tighten label/value gap, widen Thk
- Drop the <br/> between label and value (.lbl is display:block, so the value already sits beneath it; the <br/> added a blank-line gap). - Rebalance widths: PO# 34→25%, Qty 16→13%, Due 30→26%, Thk 20→36% + nowrap, so a thickness RANGE (e.g. 0.0025" - 0.0030") stays on ONE line instead of wrapping. Verified on entech (WO-30096). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -157,14 +157,17 @@
|
||||
</td>
|
||||
</tr></table></td>
|
||||
</tr>
|
||||
<!-- PO# / Qty / Due / Thk — Customer removed, 4 fields share the row
|
||||
with bigger values; freed vertical room flows to NOTES. -->
|
||||
<!-- PO# / Qty / Due / Thk. Label stacks TIGHT on the value: no <br/>
|
||||
(.lbl is display:block, so the value sits directly beneath it —
|
||||
the old <br/> added a blank line = the label/data gap). Thk gets
|
||||
the widest column + nowrap so a thickness RANGE stays on one line;
|
||||
PO#/Qty/Due trimmed to feed it. -->
|
||||
<tr style="height:12mm" class="rule">
|
||||
<td style="padding:0" colspan="2"><table class="fpt"><tr>
|
||||
<td class="pad vrule" style="width:34%"><span class="lbl">PO#</span><br/><span style="font-size:13pt;font-weight:900"><t t-esc="d['po'] or '-'"/></span></td>
|
||||
<td class="pad vrule" style="width:16%"><span class="lbl">Qty</span><br/><span style="font-size:14pt;font-weight:900"><t t-esc="d['qty']"/></span></td>
|
||||
<td class="pad vrule" style="width:30%"><span class="lbl">Due</span><br/><span style="font-size:12pt;font-weight:bold"><t t-esc="d['due'] or '-'"/></span></td>
|
||||
<td class="pad" style="width:20%"><span class="lbl">Thk</span><br/><span style="font-size:11pt;font-weight:bold"><t t-esc="d['thk'] or '-'"/></span></td>
|
||||
<td class="pad vrule" style="width:25%"><span class="lbl">PO#</span><span style="font-size:13pt;font-weight:900;display:block"><t t-esc="d['po'] or '-'"/></span></td>
|
||||
<td class="pad vrule" style="width:13%"><span class="lbl">Qty</span><span style="font-size:14pt;font-weight:900;display:block"><t t-esc="d['qty']"/></span></td>
|
||||
<td class="pad vrule" style="width:26%"><span class="lbl">Due</span><span style="font-size:12pt;font-weight:bold;display:block"><t t-esc="d['due'] or '-'"/></span></td>
|
||||
<td class="pad" style="width:36%"><span class="lbl">Thk</span><span style="font-size:11pt;font-weight:bold;display:block;white-space:nowrap"><t t-esc="d['thk'] or '-'"/></span></td>
|
||||
</tr></table></td>
|
||||
</tr>
|
||||
<t t-if="d['bake']">
|
||||
|
||||
Reference in New Issue
Block a user