NonInventPurchasingSystem/CPRNIMS.WebApps/Views/Receiving/RRReport.cshtml
2026-01-20 07:44:30 +08:00

61 lines
2.5 KiB
Plaintext

<body>
<div class="container-fluid">
<div class="header-container" style="margin-top:-40px !important">
<h2>RR Reports</h2>
</div>
<div class="table-container shadow-lg p-3 mb-3 bg-white rounded" style="overflow-x: auto;height:110%">
<div class="row" style="margin-top:10px">
<div class="col-md-3 col-sm-6 form-group">
<label for="dateFrom">From:</label>
<input type="date" id="dateFrom" class="form-control" />
</div>
<div class="col-md-3 col-sm-6 form-group">
<label for="dateTo">To:</label>
<input type="date" id="dateTo" class="form-control" />
</div>
<div class="col-md-2 col-sm-6 form-group d-flex align-items-end">
<button type="button" id="btnSort" onclick="sortByDate();" class="btn btn-primary">Sort</button>
</div>
</div>
<br />
<table id="ReportTable" class="row-border" width="100%">
<thead>
<tr>
<th>PRNo</th>
<th>ItemNo</th>
<th>UOM</th>
<th>PRQty</th>
<th>ItemName</th>
<th>ItemDescription</th>
<th>Specification</th>
<th>Category</th>
<th>PRType</th>
<th>PRBy</th>
<th>PRDate</th>
<th>Department</th>
<th>Remarks</th>
<th>AttestedBy</th>
<th>ApprovedBy</th>
<th>PONo</th>
<th>POBy</th>
<th>PODate</th>
<th>Supplier</th>
<th>DRNo</th>
<th>RRNo</th>
<th>RRBy</th>
<th>RRDate</th>
<th>ReceivedQty</th>
<th>ReceivedBy</th>
<th>ReceivedDate</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<link href="~/css/pr/trackingdetail.css" rel="stylesheet" />
<script src="~/jsfunctions/receiving/rrreports.js"></script>
@await Html.PartialAsync("PagesView/Receiving/_ReceivingScripts")
</body>