Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.220.140.173
<style>
.sortable tr {
cursor: pointer;
}
</style>
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card">
<div class="header">
<h2>Invoice Entry</h2>
<div style="float: right">
<button
style="margin-top: -45px"
class="btn bg-primary waves-effect"
onclick="addInvoice_1()"
>
New
</button>
</div>
</div>
<div class="body">
<div class="row clearfix">
<div class="form-group">
<label
class="control-label col-sm-1"
for="Supplier Code"
style="width: 85px"
>
<b>Status</b>
</label>
<div class="col-sm-8">
<select
class="form-control2"
id="statusselectinv"
style="width: 300px; margin-left: 20px"
onchange="statonchangeinv()"
>
<option value="">Pending Verification</option>
<option value="All">--All--</option>
<option value="Verified">Verified</option>
<option value="Approved">Approved</option>
<option value="Paymentmade">Payment Made</option>
</select>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" id="loadInvoice">
<table class="table table-bordered table-hover sortable">
<thead>
<tr class="bg-primary">
<th width="4%">
<center>Sl. No.</center>
</th>
<th width="7%">
<center>Voucher no.</center>
</th>
<th width="9%">
<center>Voucher Date</center>
</th>
<th width="9%">
<center>Inv. No.</center>
</th>
<th width="9%">
<center>Inv. Date</center>
</th>
<th>
<center>Supplier</center>
</th>
<th width="9%">
<center>Inv. Total</center>
</th>
<th width="12%">
<center>Status</center>
</th>
<th width="9%">
<center>Action</center>
</th>
</tr>
</thead>
<tbody id="invtrbody"></tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
|