65 lines
3.0 KiB
Plaintext
65 lines
3.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;" id="POHeader"></h2>
|
|
</div>
|
|
<br />
|
|
<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>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- Custom Modal HTML -->
|
|
<div id="customModalOverlay" class="custom-modal-overlay" data-bs-backdrop="static">
|
|
<div id="customModalContent" class="custom-modal-content">
|
|
<div class="custom-modal-body">
|
|
<div class="alert alert-warning">
|
|
<strong>Alert:</strong> You have incoming for shipment!
|
|
</div>
|
|
<div class="table-container shadow-lg p-3 mb-5 bg-white rounded">
|
|
<table id="ForShipmentTable" class="row-border" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:13%;">PONo</th>
|
|
<th style="width:20%;">SupplierName</th>
|
|
<th style="width:20%;">Requestor</th>
|
|
<th style="width:21%;">ItemName</th>
|
|
<th style="width:8%;">Qty</th>
|
|
<th style="width:10%;">ShipmentDate</th>
|
|
<th style="width:8%;">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="custom-modal-footer">
|
|
<button id="dismissCustomModal" onclick="minimizeModal()" class="custom-btn custom-btn-primary">Hide</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Floating button to reopen the modal -->
|
|
<div id="floatingAlertButton" class="floating-alert" onclick="restoreModal()" style="display: none;">
|
|
⚠ Alert
|
|
</div>
|
|
|
|
<link href="~/css/po/approvedpo.css" rel="stylesheet" />
|
|
<link href="~/css/po/custommodalv2.css" rel="stylesheet" />
|
|
<script src="~/JsFunctions/PO/CreatedPOV4.js"></script>
|
|
@await Html.PartialAsync("PagesView/PO/_PO")
|
|
</div>
|
|
</body> |