NonInventPurchasingSystem/CPRNIMS.WebApps/Views/CanvassMgmt/WOResponse.cshtml
2026-01-20 07:44:30 +08:00

64 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;">Supplier Without Response</h2>
</div>
<br />
<table id="CanvassWOTable" class="row-border" cellspacing="0" width="100%">
<thead>
<tr>
<th style="width:7%">CanvassNo's</th>
<th style="width:7%">PRNo's</th>
<th style="width:7%">ItemNo's</th>
<th style="width:42%">ItemName's</th>
<th style="width:15%">SupplierName</th>
<th style="width:15%">EmailAddress</th>
<th style="width:7%">Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<!-- Modal viewWOResponseBySuppId to show the PRNo by Item -->
<div class="modal fade custom-modal-backdrop" id="viewWOResponseBySuppId" tabindex="-1" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header" style="display: flex; flex-direction: column; align-items: center;">
<h2 class="modal-title" id="ModalLabel">Item List</h2>
</div>
<br />
<div class="modal-body">
<div style="margin-bottom:10px;font-size:large">
<label for="supplierName">Supplier:</label>
<label id="supplierName"></label>
<input hidden id="email-Address" />
</div>
<br />
<table id="WORespModalDataTable" class="row-border" style="width: 100%;">
<thead class="thead-dark">
<tr>
<th>PRNo</th>
<th>ItemNo</th>
<th>ItemName</th>
<th>Specs</th>
<th>Category</th>
<th>Qty</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Back</button>
</div>
</div>
</div>
</div>
</div>
<script src="~/jsfunctions/canvass/WOResponseV3.js"></script>
@await Html.PartialAsync("PagesView/Canvass/_CanvassScript")
</body>