38 lines
1.6 KiB
Plaintext
38 lines
1.6 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;">Canvass Bidding List Per Item</h2>
|
|
</div>
|
|
<br />
|
|
<form method="get" asp-action="CanvassReport" asp-controller="CanvassMgmt">
|
|
<button type="submit" class="btn btn-success btn-md"
|
|
id="canvassReport">
|
|
Canvass Report
|
|
</button>
|
|
</form>
|
|
<br />
|
|
<table id="BidForApprovalTable" class="row-border" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:7%">CanvassNo</th>
|
|
<th style="width:7%">PRNo</th>
|
|
<th style="width:8%">ItemNo</th>
|
|
<th style="width:20%">ItemName</th>
|
|
<th style="width:28%">ItemSpecs</th>
|
|
<th style="width:15%">ItemCateg.</th>
|
|
<th style="width:8%">Qty</th>
|
|
<th style="width:7%">Action</th>
|
|
<th hidden></th>
|
|
<th hidden></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@await Html.PartialAsync("PagesView/Canvass/_CanvassReport")
|
|
@await Html.PartialAsync("PagesView/Canvass/_PrintCanvass")
|
|
<script src="~/JsFunctions/Canvass/SupplierBidsV3.js"></script>
|
|
</body> |