| Current Path : /home2/wtmwscom/public_html/member/ |
| Current File : /home2/wtmwscom/public_html/member/report_withdraw.php |
<?php
$title= "Withdrawal Report";
include 'header.php';
$uid = $_SESSION['userid'];
?>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="page-title-box">
<h4 class="page-title">Payment History</h4>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item"><a href="#">Report</a></li>
<li class="breadcrumb-item active">Payment History</li>
</ol>
</div>
</div>
</div>
<!-- end row -->
<div class="row">
<div class="col-12">
<div class="card m-b-20">
<div class="card-body">
<?php echo getMessage(); ?>
<div class="card-body">
<!-- <form class="form-inline" id="search-form" >
<div class="form-group">
<label class="form-control" for="login_id"> UserId: </label>
<input type="text" class="form-control" id="login_id" placeholder="Enter login id" name="login_id">
</div>
<div class="form-group">
<label for="name"> Name: </label>
<input type="name" class="form-control" id="name" placeholder="Enter name" name="name">
</div>
<button type="submit" class="btn btn-primary">Search</button>
</form>-->
</div>
<table class="table table-striped table-bordered table-hover dt-responsive datatable-ajax" style="border-collapse: collapse; border-spacing: 0; width: 100%;">
<tfoot align="right">
<tr><th style="text-align: left;" colspan="2">Total</th>><th style="text-align: left;" colspan="6"></th></tr>
</tfoot>
</table>
</div>
</div>
</div> <!-- end col -->
</div> <!-- end row -->
</div> <!-- container-fluid -->
<script type="text/javascript">
var columnMetadataAll = [{"data": "sno", "title": "S.No."}, {"data": "datetime", "title": "Date"}, {"data": "amount", "title": "Amount"}, {"data": "tds", "title": "Tds"}, {"data": "service", "title": "Admin Charge"}, {"data": "net_amount", "title": "Net Amount"}, {"data": "description", "title": "Txn Details"}, {"data": "status", "title": "Status"}];
var urlAll = "./report/report_withdraw_json.php";
var table = null;
$(document).ready(function () {
table = loadDataTable('.datatable-ajax',urlAll, columnMetadataAll, true, 2);
$("#search-form").submit(function (e) {
table.ajax.reload();
e.preventDefault(); // avoid to execute the actual submit of the form.
});
$('.datatable-ajax tbody').on('click', 'tr', function () {
var data = table.row(this).data();
//window.location ='/'+moduleCode+'/view/?id='+data.id;
});
});
</script>
<?php include 'footer.php'; ?>