48 lines
2.0 KiB
Plaintext
48 lines
2.0 KiB
Plaintext
<!-- Modal viewIndexCard -->
|
|
<div class="modal fade custom-modal-backdrop" id="viewIndexCard" tabindex="-1" aria-labelledby="ModalLabel" data-bs-backdrop="static" >
|
|
<div class="modal-dialog custom-modal-tracker">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h2 class="modal-title" id="ModalLabel">Index Card (Top 15 Descending)</h2>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="p-2 rounded-lg shadow-sm border bg-light mb-3">
|
|
<!-- Item Info Section -->
|
|
<div class="mb-2">
|
|
<h6 class="text-muted mb-1">Item No</h6>
|
|
<p id="i-itemNo" class="fw-semibold fs-5" style="color:#00796b;"></p>
|
|
</div>
|
|
<div>
|
|
<h6 class="text-muted mb-1">Item Name</h6>
|
|
<p id="i-itemName" class="fw-semibold fs-5" style="color:#00796b;"></p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Table Section -->
|
|
<table id="IndexCardTable" class="row-border" style="width: 100%;">
|
|
<thead>
|
|
<tr>
|
|
<th>PONo</th>
|
|
<th>PODate</th>
|
|
<th>PRNo</th>
|
|
<th>PRDate</th>
|
|
<th>Qty</th>
|
|
<th>UnitPrice</th>
|
|
<th>SupplierName</th>
|
|
<th>RRDate</th>
|
|
<th>Remarks</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- Modal Footer -->
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Back</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |