88 lines
4.2 KiB
Plaintext
88 lines
4.2 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>Supplier Alternative Offer List</h2>
|
|
</div>
|
|
<table id="AlterOfferTable" class="row-border" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:7%">PRNo</th>
|
|
<th style="width:8%">ItemNo</th>
|
|
<th style="width:15%">ItemName</th>
|
|
<th style="width:24%">Description</th>
|
|
<th style="width:24%">Alter.Offer</th>
|
|
<th style="width:15%">SupplierName</th>
|
|
<th style="width:7%">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Modal viewSupplierAlterOfferList -->
|
|
<div class="modal fade custom-modal-backdrop" id="viewSupplierAlterOfferList"
|
|
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">Supplier Bidding List</h2>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="p-2 mb-3 rounded border shadow-sm" style="background-color:#f9f9f9;">
|
|
<div class="row g-3 align-items-center">
|
|
<!-- PR No -->
|
|
<div class="col-md-3">
|
|
<small class="text-muted">PR No</small>
|
|
<div id="label-prNo" class="fw-semibold fs-5" dark></div>
|
|
</div>
|
|
<!-- Item No -->
|
|
<div class="col-md-3">
|
|
<small class="text-muted">Item No</small>
|
|
<div id="label-itemNo" class="fw-semibold fs-5" dark></div>
|
|
</div>
|
|
<!-- Quantity -->
|
|
<div class="col-md-3">
|
|
<small class="text-muted">Quantity</small>
|
|
<div id="label-qty" class="fw-semibold fs-5" dark></div>
|
|
</div>
|
|
<!-- Item Name -->
|
|
<div class="col-md-12">
|
|
<small class="text-muted">Item Name</small>
|
|
<div id="label-itemName" class="fw-semibold fs-5 dark"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<table id="AlterOfferListDataTable" class="row-border"
|
|
cellspacing="0" width="100%" style="table-layout:fixed">
|
|
<colgroup>
|
|
<col style="width:10%">
|
|
<col style="width:90%">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Approved
|
|
</th>
|
|
<th class="description">Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<input hidden id="canvassDetailId">
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" onclick="refreshAlterTable()" data-bs-dismiss="modal">Back</button>
|
|
<button type="button" id="btnAlterApproved" onclick="putSupplierAlterOffer();" class="btn btn-warning">Submit</button>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<link href="~/css/pr/tracking.css" rel="stylesheet" />
|
|
<script src="~/JsFunctions/PR/AlterOffer.js"></script>
|
|
@await Html.PartialAsync("PagesView/PR/_PRScripts")
|
|
</body> |