feat(fusion_plating_jobs): external sticker — QR fills full width when no MASK/BAKE tags
Taller QR row (30->36mm) and the QR now expands to a full-width centered ~34mm when a job has neither masking nor baking (was leaving the right half empty); when tags are present, QR ~32mm on the left with MASK/BAKE stacked on the right. Logo/WO-band/field rows trimmed to fund the bigger QR. Verified live (WO-30072 no-tags full QR; WO-30090 BAKE tag). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
# License OPL-1 (Odoo Proprietary License v1.0)
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
||||||
{
|
{
|
||||||
'name': 'Fusion Plating — Native Jobs',
|
'name': 'Fusion Plating — Native Jobs',
|
||||||
'version': '19.0.12.1.1',
|
'version': '19.0.12.1.2',
|
||||||
'category': 'Manufacturing/Plating',
|
'category': 'Manufacturing/Plating',
|
||||||
'summary': 'Native plating job model — replaces mrp.production / mrp.workorder bridge.',
|
'summary': 'Native plating job model — replaces mrp.production / mrp.workorder bridge.',
|
||||||
'author': 'Nexa Systems Inc.',
|
'author': 'Nexa Systems Inc.',
|
||||||
|
|||||||
@@ -84,19 +84,21 @@
|
|||||||
/* Layout B rail + main */
|
/* Layout B rail + main */
|
||||||
.rail { position: absolute; left: 0; top: 0; bottom: 0; width: 50mm; border-right: 0.9mm solid #000; overflow: hidden; }
|
.rail { position: absolute; left: 0; top: 0; bottom: 0; width: 50mm; border-right: 0.9mm solid #000; overflow: hidden; }
|
||||||
.main { position: absolute; left: 50mm; right: 0; top: 0; bottom: 0; overflow: hidden; }
|
.main { position: absolute; left: 50mm; right: 0; top: 0; bottom: 0; overflow: hidden; }
|
||||||
.r-logo { height: 12mm; line-height: 12mm; text-align: center; }
|
.r-logo { height: 11mm; line-height: 11mm; text-align: center; }
|
||||||
.r-logo img { max-height: 10mm; max-width: 45mm; vertical-align: middle; }
|
.r-logo img { max-height: 10mm; max-width: 45mm; vertical-align: middle; }
|
||||||
.r-wo { height: 16mm; background: #000; color: #fff; padding: 0; }
|
.r-wo { height: 14mm; background: #000; color: #fff; padding: 0; }
|
||||||
.wobtbl { border-collapse: collapse; width: 100%; height: 100%; }
|
.wobtbl { border-collapse: collapse; width: 100%; height: 100%; }
|
||||||
.wobtbl td { padding: 1mm 2.2mm; vertical-align: middle; }
|
.wobtbl td { padding: 1mm 2.2mm; vertical-align: middle; }
|
||||||
.bignum { font-size: 17pt; font-weight: 900; line-height: 1; display: block; color: #fff; }
|
.bignum { font-size: 17pt; font-weight: 900; line-height: 1; display: block; color: #fff; }
|
||||||
.r-qrflags { height: 30mm; }
|
.r-qrflags { height: 36mm; text-align: center; }
|
||||||
.qftbl { border-collapse: collapse; width: 100%; height: 100%; }
|
.qftbl { border-collapse: collapse; width: 100%; height: 100%; }
|
||||||
.qftbl td { vertical-align: middle; text-align: center; }
|
.qftbl td { vertical-align: middle; text-align: center; }
|
||||||
.qfqr { width: 64%; }
|
.qfqr { width: 66%; }
|
||||||
.qfqr img { width: 28mm; height: 28mm; vertical-align: middle; }
|
.qfqr img { width: 32mm; height: 32mm; vertical-align: middle; }
|
||||||
.qftags { border-left: 0.5mm solid #000; }
|
.qftags { width: 34%; border-left: 0.5mm solid #000; }
|
||||||
.qftags .badge { display: block; width: 15mm; margin: 1.4mm auto; font-size: 9.5pt; padding: 0.8mm 0; }
|
.qftags .badge { display: block; width: 15mm; margin: 1.4mm auto; font-size: 9.5pt; padding: 0.8mm 0; }
|
||||||
|
.qffull { line-height: 36mm; }
|
||||||
|
.qffull img { width: 34mm; height: 34mm; vertical-align: middle; }
|
||||||
.r-fld { padding: 1mm 2.2mm; }
|
.r-fld { padding: 1mm 2.2mm; }
|
||||||
.gtbl { border-collapse: collapse; width: 100%; height: 100%; }
|
.gtbl { border-collapse: collapse; width: 100%; height: 100%; }
|
||||||
.gtbl td { padding: 1mm 2.2mm; vertical-align: middle; }
|
.gtbl td { padding: 1mm 2.2mm; vertical-align: middle; }
|
||||||
@@ -178,13 +180,18 @@
|
|||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
<div class="r-qrflags rule">
|
<div class="r-qrflags rule">
|
||||||
<table class="qftbl"><tr>
|
<t t-if="d['mask'] or d['bake']">
|
||||||
<td class="qfqr"><img t-att-src="_qr"/></td>
|
<table class="qftbl"><tr>
|
||||||
<td class="qftags">
|
<td class="qfqr"><img t-att-src="_qr"/></td>
|
||||||
<t t-if="d['mask']"><span class="badge">MASK</span></t>
|
<td class="qftags">
|
||||||
<t t-if="d['bake']"><span class="badge">BAKE</span></t>
|
<t t-if="d['mask']"><span class="badge">MASK</span></t>
|
||||||
</td>
|
<t t-if="d['bake']"><span class="badge">BAKE</span></t>
|
||||||
</tr></table>
|
</td>
|
||||||
|
</tr></table>
|
||||||
|
</t>
|
||||||
|
<t t-else="">
|
||||||
|
<div class="qffull"><img t-att-src="_qr"/></div>
|
||||||
|
</t>
|
||||||
</div>
|
</div>
|
||||||
<div class="r-fld rule">
|
<div class="r-fld rule">
|
||||||
<span class="lbl">Part#</span>
|
<span class="lbl">Part#</span>
|
||||||
@@ -192,11 +199,11 @@
|
|||||||
<t t-if="d['rev']"><span style="font-size:8.5pt;font-weight:bold"> Rev <t t-esc="d['rev']"/></span></t>
|
<t t-if="d['rev']"><span style="font-size:8.5pt;font-weight:bold"> Rev <t t-esc="d['rev']"/></span></t>
|
||||||
</div>
|
</div>
|
||||||
<div class="r-fld rule"><span class="lbl">Customer</span><span style="font-size:11pt;font-weight:900"><t t-esc="d['customer']"/></span></div>
|
<div class="r-fld rule"><span class="lbl">Customer</span><span style="font-size:11pt;font-weight:900"><t t-esc="d['customer']"/></span></div>
|
||||||
<div class="rule" style="height:9.5mm"><table class="gtbl"><tr>
|
<div class="rule" style="height:8.5mm"><table class="gtbl"><tr>
|
||||||
<td class="vrule" style="width:55%"><span class="lbl">PO#</span><span style="font-size:9.5pt;font-weight:bold;display:block"><t t-esc="d['po'] or '-'"/></span></td>
|
<td class="vrule" style="width:55%"><span class="lbl">PO#</span><span style="font-size:9.5pt;font-weight:bold;display:block"><t t-esc="d['po'] or '-'"/></span></td>
|
||||||
<td><span class="lbl">Qty</span><span style="font-size:11pt;font-weight:900;display:block"><t t-esc="d['qty']"/></span></td>
|
<td><span class="lbl">Qty</span><span style="font-size:11pt;font-weight:900;display:block"><t t-esc="d['qty']"/></span></td>
|
||||||
</tr></table></div>
|
</tr></table></div>
|
||||||
<div style="height:9.5mm"><table class="gtbl"><tr>
|
<div style="height:8.5mm"><table class="gtbl"><tr>
|
||||||
<td class="vrule" style="width:55%"><span class="lbl">Due</span><span style="font-size:9pt;font-weight:bold;display:block"><t t-esc="d['due'] or '-'"/></span></td>
|
<td class="vrule" style="width:55%"><span class="lbl">Due</span><span style="font-size:9pt;font-weight:bold;display:block"><t t-esc="d['due'] or '-'"/></span></td>
|
||||||
<td><span class="lbl">Thk (mils)</span><span style="font-size:8.5pt;font-weight:bold;display:block"><t t-esc="d['thk'] or '-'"/></span></td>
|
<td><span class="lbl">Thk (mils)</span><span style="font-size:8.5pt;font-weight:bold;display:block"><t t-esc="d['thk'] or '-'"/></span></td>
|
||||||
</tr></table></div>
|
</tr></table></div>
|
||||||
|
|||||||
Reference in New Issue
Block a user