53 lines
2.3 KiB
Plaintext
53 lines
2.3 KiB
Plaintext
<body>
|
|
<div class="container-fluid">
|
|
<div class="table-container shadow-lg p-3 mb-5 bg-white rounded">
|
|
<div class="header-container">
|
|
<h2 style="display: flex; flex-direction: column; align-items: center;">
|
|
RR Archived</h2>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
<table id="RRArchivedTable" class="row-border" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>RRNo</th>
|
|
<th>PONo</th>
|
|
<th>POType</th>
|
|
<th>PRNo's</th>
|
|
<th>ItemNo's</th>
|
|
<th>ItemName's</th>
|
|
<th>ItemCategory</th>
|
|
<th>SupplierName</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
@* viewRRDetail *@
|
|
<div class="modal fade rr-modal-backdrop" id="viewRRDetail"
|
|
tabindex="-1" aria-labelledby="POLabel" data-bs-backdrop="static">
|
|
<div class="modal-dialog modal-xl">
|
|
<div class="modal-content">
|
|
<div class="modal-body">
|
|
<div id="printableSIDR">
|
|
<div id="RRContainer">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-primary" onclick="refreshTable();" data-bs-dismiss="modal">Back</button>
|
|
<button type="button" id="btnPrintSIRR" onclick="printRRSI();" class="btn btn-warning">Print</button>
|
|
<button type="button" id="btnPrintDRRR" onclick="printRRDR();" class="btn btn-warning">Print</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<link href="~/css/receiving/RRV2.css" rel="stylesheet" />
|
|
<script src="~/JsFunctions/Receiving/rr.js"></script>
|
|
<script src="~/lib/html2pdf.js-0.10.3/html2pdf.bundle.min.js"></script>
|
|
@await Html.PartialAsync("PagesView/Receiving/_ReceivingScripts")
|
|
</div>
|
|
</body> |