NonInventPurchasingSystem/CPRNIMS.WebApps/Views/Shared/PagesView/PO/_OtherCharges.cshtml
2026-02-19 17:23:28 +08:00

25 lines
1.0 KiB
Plaintext

<div class="col-6">
<div class="form-group">
<div style="background-color: teal; color: white; border-radius: 5px;">
<h5 class="modal-title">List of Charges</h5>
</div>
<div class="table-dest-container">
<table id="DestChargesTable" class="row-border" style="width: 100%;">
<thead style="background-color: teal; color: white; font-size: .8rem;">
<tr>
<th style="display: none;">otherChargesId</th>
<th style="width:80%;">ChargeName</th>
<th style="width:12%;">Amount</th>
<th style="width:8%;">Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="charges-right-align">
<i class="bx bxs-message-rounded-add"
style="color: green; font-size: 1.5rem; cursor: pointer;" onclick="viewCharges()"></i>
</div>
</div>
</div>