add signature section and consolidate unit/method display in custom report
This commit is contained in:
parent
d2e84162cd
commit
d7149ca322
@ -89,17 +89,14 @@
|
||||
<tr>
|
||||
<td class="info-label">Test</td>
|
||||
<td class="value" x-text="testName"></td>
|
||||
<td class="info-label">Method</td>
|
||||
<td class="value" x-text="testMethod"></td>
|
||||
<td class="info-label">Unit / Method</td>
|
||||
<td class="value" x-text="testUnit + ' / ' + testMethod"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- PC Range Table -->
|
||||
<table class="pc-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="pc-header" colspan="5" x-text="testCode"></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="pc-subheader">Control</th>
|
||||
<th class="pc-subheader">Lot No</th>
|
||||
@ -208,6 +205,18 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Signature Section -->
|
||||
<div class="signature-section">
|
||||
<div class="signature-item">
|
||||
<div class="signature-label">Analis</div>
|
||||
<div class="signature-line"></div>
|
||||
</div>
|
||||
<div class="signature-item">
|
||||
<div class="signature-label">Verifikator</div>
|
||||
<div class="signature-line"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Error State -->
|
||||
@ -542,6 +551,40 @@
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
/* Signature Section */
|
||||
.signature-section {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 80px;
|
||||
margin-top: 30px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.signature-item {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.signature-label {
|
||||
font-size: 11px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.signature-line {
|
||||
width: 150px;
|
||||
border-bottom: 1px solid #333;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media print {
|
||||
.signature-section {
|
||||
margin-top: 40px;
|
||||
}
|
||||
.signature-line {
|
||||
border-bottom: 1px solid #000;
|
||||
}
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.report-footer {
|
||||
border: 1px solid #333;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user