80 lines
4.0 KiB
Plaintext
80 lines
4.0 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;">PR Archived</h2>
|
|
</div>
|
|
<br />
|
|
<div class="d-flex flex-wrap gap-2 mb-2">
|
|
<div class="search-wrapper" style="min-width:180px; flex:1;">
|
|
<div class="search-inner">
|
|
<span class="search-icon">
|
|
<svg width="14" height="14" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor" stroke-width="2.5">
|
|
<circle cx="11" cy="11" r="8" />
|
|
<path d="m21 21-4.35-4.35" />
|
|
</svg>
|
|
</span>
|
|
<input id="srchPRNo" class="search-input"
|
|
placeholder="PR Number…" autocomplete="off" />
|
|
<span class="search-clear pr-search-clear"
|
|
data-target="#srchPRNo" title="Clear">✕</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="search-wrapper" style="min-width:220px; flex:2;">
|
|
<div class="search-inner">
|
|
<span class="search-icon">
|
|
<svg width="14" height="14" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor" stroke-width="2.5">
|
|
<circle cx="11" cy="11" r="8" />
|
|
<path d="m21 21-4.35-4.35" />
|
|
</svg>
|
|
</span>
|
|
<input id="srchItemName" class="search-input"
|
|
placeholder="Item Name…" autocomplete="off" />
|
|
<span class="search-clear pr-search-clear"
|
|
data-target="#srchItemName" title="Clear">✕</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="search-wrapper" style="min-width:180px; flex:1;">
|
|
<div class="search-inner">
|
|
<span class="search-icon">
|
|
<svg width="14" height="14" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor" stroke-width="2.5">
|
|
<circle cx="11" cy="11" r="8" />
|
|
<path d="m21 21-4.35-4.35" />
|
|
</svg>
|
|
</span>
|
|
<input id="srchDept" class="search-input"
|
|
placeholder="Department…" autocomplete="off" />
|
|
<span class="search-clear pr-search-clear"
|
|
data-target="#srchDept" title="Clear">✕</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<table id="PRTable" class="row-border" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:7%">PRNo</th>
|
|
<th style="width:7%">New PRNo</th>
|
|
<th style="width:50%">ItemName's</th>
|
|
<th style="width:9%">Req. Date</th>
|
|
<th style="width:14%">Req. By</th>
|
|
<th style="width:8%">DateNeeded</th>
|
|
<th style="width:7%">ChargeTo</th>
|
|
<th style="width:7%">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<link href="~/css/pr/TrackingV3.css" rel="stylesheet" />
|
|
<link href="~/css/item/item.css" rel="stylesheet" />
|
|
@await Html.PartialAsync("PagesView/PR/_PRTracking")
|
|
<script src="~/JsFunctions/PR/ArchivedV3.js"></script>
|
|
@await Html.PartialAsync("PagesView/PR/_PRScripts")
|
|
</body> |