| Server IP : 162.214.74.102 / Your IP : 216.73.216.139 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_projetos/sopizzas/application/views/superadmin/ |
Upload File : |
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1><?php echo $this->lang->line('TrackPayment');?></h1>
<!--<div class="breadcrumb topright">-->
<!-- <button data-toggle="control-sidebar" class="btn btn-outline green btn-sm opo addressEdit opened btn-circle mcfr addcatbtn active pad2_10 view" ><i style="font-size: 16px;" class="fa fa-plus-circle"></i> Add New Customer</button>-->
<!-- </div>-->
</section>
<!-- Main content -->
<section class="content">
<div class="nav-tabs-custom">
<div class="tab-content no-padding">
<div id="home" class="tab-pane fade in active">
<div class="box-body mctop30">
<div class="col-md-12 col-xs-12">
<div class="col-md-2 custom-padding-0">
<label style="float: left; margin-top: 6px;"><?php echo $this->lang->line('Show');?></label>
<div class="input-group col-md-8" style="padding-left: 6px;">
<select id="myFilter3" onchange="getData('0',$('#myFilter1').val(),this.value,$('#myFilter2').val())" class="fs_input select2" style="width: 100%;">
<option value="5" <?=ROW_PER_PAGE==5?'selected':''?> >5</option><option value="10" <?=ROW_PER_PAGE==10?'selected':''?> >10</option><option value="15" <?=ROW_PER_PAGE==15?'selected':''?> >15</option><option value="20" <?=ROW_PER_PAGE==20?'selected':''?> >20</option>
</select>
<span class="input-group-addon" style="padding: 6px 4px;"><?php echo $this->lang->line('Page');?></span>
</div>
</div>
<div class="col-md-5 col-sm-6 col-xs-12">
<div class="form-group">
<select id="myFilter2" onchange="getData('0',$('#myFilter1').val(),$('#myFilter3').val(),this.value)" class="fs_input select2">
<option value="999999"><?php echo $this->lang->line('SelectRestaurant');?></option>
<option value="0" value=""><?php echo $this->lang->line('All');?></option>
<?php
foreach($RestaurantList as $row) { ?>
<option value="<?php echo $row->restaurant_id; ?>" ><?php echo $row->restaurant_name ?></option>';
<?php } ?>
</select>
</div>
</div>
<div class="col-md-5 col-sm-12 col-xs-12 margintop10 paddingright0">
<div class="form-group">
<select id="myFilter1" onchange="getData('0',this.value,$('#myFilter3').val(),$('#myFilter2').val())" class="form-control select2">
<option value="99"><?php echo $this->lang->line('Sort_By');?></option>
<optgroup label="Others">
<option value="3"> <?php echo $this->lang->line('CustomerAsc');?></option>
<option value="4"> <?php echo $this->lang->line('CustomerDesc');?></option>
<option value="5"> <?php echo $this->lang->line('RestaurantAsc');?></option>
<option value="6"> <?php echo $this->lang->line('RestaurantDesc');?></option>
<option value="7"> <?php echo $this->lang->line('TotalAsc');?></option>
<option value="8"> <?php echo $this->lang->line('TotalDesc');?></option>
</optgroup>
</select>
</div>
</div>
</div>
<div class="box-body" id="customers">
<div class="clearfix"></div>
<div class="table-responsive" id="postList">
<?php $this->load->view('superadmin/customer_payment_list_ajax'); ?>
</div>
<!-- /.table-responsive -->
</div>
</div>
</div>
</div>
</div>
<!-- ./tab section -->
<div class="clearfix"></div>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<script type="text/javascript">
function do_export(){
var restaurant_id = $('#myFilter2').val();
var sort = $('#myFilter1').val();
if (restaurant_id == '') {
restaurant_id = 0;
}
window.location='<?php echo base_url(); ?>dashboard/order_export_payment/'+restaurant_id+'/'+sort;
}
</script>