75 lines
3.4 KiB
Plaintext
75 lines
3.4 KiB
Plaintext
<div class="container-fluid">
|
|
<div class="table-container shadow-lg p-2 mb-3 bg-white rounded">
|
|
<div class="header-container" style="margin-bottom:15px">
|
|
<h2>Supplier Management</h2>
|
|
</div>
|
|
<button id="btnAddNewSupplier" type="button" class="btn btn-success"
|
|
onclick="showModalNewUpdateSupplier(0);" style="margin-bottom:20px;margin-left:5px;">
|
|
Add new
|
|
</button>
|
|
<br />
|
|
<table id="SupplierTable"
|
|
class="row-border"
|
|
cellspacing="0" width="150%" style="table-layout:fixed;">
|
|
<colgroup>
|
|
<col style="width:8%"/>
|
|
<col style="width:20%"/>
|
|
<col style="width:20%"/>
|
|
<col style="width:20%"/>
|
|
<col style="width:10%"/>
|
|
<col style="width:15%"/>
|
|
<col style="width:10%"/>
|
|
<col style="width:10%"/>
|
|
<col style="width:10%"/>
|
|
<col style="width:8%"/>
|
|
<col style="width:8%"/>
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th >Action</th>
|
|
<th >SupplierName</th>
|
|
<th >EmailAddress</th>
|
|
<th >Address</th>
|
|
<th >ContactNo</th>
|
|
<th >ContactPerson</th>
|
|
<th >TinNo</th>
|
|
<th >LeadTime</th>
|
|
<th >Terms</th>
|
|
<th >VatInc</th>
|
|
<th >Currency</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- Modal viewDeniedForm -->
|
|
<div class="modal fade custom-modal-backdrop" id="viewDeniedForm" tabindex="-1"
|
|
aria-labelledby="ModalLabel" aria-hidden="true" data-bs-backdrop="static">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
<div class="modal-header" style="display: flex; flex-direction: column; align-items: center;">
|
|
<h2 class="modal-title" id="ModalLabel">Remarks and confirmation</h2>
|
|
</div>
|
|
<div class="modal-body">
|
|
<label for="denied-remarks">
|
|
Remarks
|
|
<span class="text-danger required-indicator">*</span>
|
|
</label>
|
|
<textarea id="denied-remarks" class="form-control"></textarea>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Back</button>
|
|
<button type="button" class="btn btn-danger" onclick="deniedItem(3);" data-bs-dismiss="modal">Confirm</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="~/jsfunctions/canvass/SuppliersV4.js"></script>
|
|
<script src="~/jsfunctions/common/PRWOCanvassV2.js"></script>
|
|
@await Html.PartialAsync("PagesView/Canvass/_Suppliers")
|
|
@await Html.PartialAsync("PagesView/PR/_PRWOCanvass")
|
|
@await Html.PartialAsync("PagesView/Canvass/_CanvassSCript")
|
|
<script src="~/jsfunctions/common/ParamConfigV2.js"></script>
|
|
</div>
|