29 lines
969 B
Plaintext
29 lines
969 B
Plaintext
<body>
|
|
<div class="container-fluid">
|
|
<div class="table-container shadow-lg p-3 mb-5 bg-white rounded">
|
|
<div class="header-container">
|
|
<h2>PO Archived</h2>
|
|
</div>
|
|
<table id="approvedPOTable" class="row-border" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<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>
|
|
<th hidden></th>
|
|
<th hidden></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script src="~/JsFunctions/PO/Archived.js"></script>
|
|
@await Html.PartialAsync("PagesView/PO/_PO")
|
|
</div>
|
|
</body> |