Merge pull request 'corrected alignment for item pdf' (#836) from ranjith-dev into master
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 15s

Reviewed-on: #836
This commit was merged in pull request #836.
This commit is contained in:
2026-07-17 06:20:52 +00:00

View File

@@ -79,6 +79,16 @@
top: 8pt; top: 8pt;
} }
.po-long {
font-size: 8pt;
font-weight: bold;
text-align: left !important;
position: absolute;
right: 5pt;
top: 8pt;
width: 45pt;
}
/* .desc { /* .desc {
font-size: 6pt; font-size: 6pt;
margin-left: -5pt; margin-left: -5pt;
@@ -108,7 +118,10 @@
</td> </td>
<td class="text"> <td class="text">
<div class="serial">{{ $sticker['serial'] }}</div> <div class="serial">{{ $sticker['serial'] }}</div>
<div class="po">{{ $sticker['production_order'] }}</div> {{-- <div class="po">{{ $sticker['production_order'] }}</div> --}}
<div class="{{ strlen($sticker['serial']) > 14 ? 'po-long' : 'po' }}">
{{ $sticker['production_order'] }}
</div>
<div class="desc">{{ $sticker['description'] }}</div> <div class="desc">{{ $sticker['description'] }}</div>
</td> </td>
</tr> </tr>