NonInventPurchasingSystem/CPRNIMS.WebApps/Views/Components/Receiving/RRPrinting/DR.cshtml
2026-04-21 11:59:21 +08:00

59 lines
2.1 KiB
Plaintext

<div style="width: 100%; position: relative;">
<!-- RR Number in top right -->
<div style="position: absolute; top: 20px; right: 30px; text-align: right;">
<label>RRNo#: </label>
<strong id="rr-Number"></strong>
</div>
<!-- Client field (positioned where CLIENT field is on form) -->
<div style="position: absolute; top:120px !important; left: 35px;">
<span id="client" >LLOYD LABORATORIES INC.</span>
</div>
<!-- Date field (positioned where DATE field is on form) -->
<div style="position: absolute; top: 120px !important; right: 60px;">
<span id="receivedDate"></span>
</div>
<!-- Supplier field (positioned where SUPPLIER field is on form) -->
<div style="position: absolute; top: 140px !important; left: 50px;">
<span id="supplierName"></span>
</div>
<!-- DR NO field (positioned beside Supplier) -->
<div style="position: absolute; top: 140px !important; left: 400px;">
<span id="suppDocNo"></span>
</div>
<!-- PO Number field (positioned where P.O. NO. field is on form) -->
<div style="position: absolute; top: 140px !important; right: 60px;">
<span id="po-Number"></span>
</div>
<!-- Table Section -->
<table id="DRRRDataTable" class="row-border" style="width: 100%;position: absolute; top: 205px;">
<!-- Add colgroup to preserve column widths -->
<colgroup>
<col class="itemNo" style="width:10%">
<col class="itemDescription" style="width:45%">
<col class="qty" style="width:10%;">
<col class="uomName" style="width:10%;">
<col style="width:25%;text-align:left;">
</colgroup>
<tbody>
</tbody>
</table>
<!-- Footer Section: receivedBy, approvedBy -->
<div class="footer-row">
<div class="col-md-3 text-center footer-column">
<span id="receivedBy" class="footer-span"></span>
</div>
<div class="col-md-3 text-center footer-column" style="margin-right:30px">
<span id="approvedBy" class="footer-span"></span>
</div>
</div>
<label hidden id="address"></label>
</div>