| Server IP : 162.214.74.102 / Your IP : 216.73.216.59 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/public_html/lrsys_apps/school/application/views/backend/admin/ |
Upload File : |
<hr />
<div class="row">
<div class="col-md-12">
<ul class="nav nav-tabs bordered">
<li class="active">
<a href="#unpaid" data-toggle="tab">
<span class="hidden-xs"><?php echo get_phrase('invoices');?></span>
</a>
</li>
<li>
<a href="#paid" data-toggle="tab">
<span class="hidden-xs"><?php echo get_phrase('payment_history');?></span>
</a>
</li>
</ul>
<div class="tab-content">
<br>
<div class="tab-pane active" id="unpaid">
<table class="table table-bordered datatable example">
<thead>
<tr>
<th>#</th>
<th><div><?php echo get_phrase('student');?></div></th>
<th><div><?php echo get_phrase('title');?></div></th>
<th><div><?php echo get_phrase('total');?></div></th>
<th><div><?php echo get_phrase('paid');?></div></th>
<th><div><?php echo get_phrase('status');?></div></th>
<th><div><?php echo get_phrase('date');?></div></th>
<th><div><?php echo get_phrase('options');?></div></th>
</tr>
</thead>
<tbody>
<?php
$count = 1;
$this->db->where('year' , $running_year);
$this->db->order_by('creation_timestamp' , 'desc');
$invoices = $this->db->get('invoice')->result_array();
foreach($invoices as $row):
?>
<tr>
<td><?php echo $count++;?></td>
<td><?php echo $this->crud_model->get_type_name_by_id('student',$row['student_id']);?></td>
<td><?php echo $row['title'];?></td>
<td><?php echo $row['amount'];?></td>
<td><?php echo $row['amount_paid'];?></td>
<?php if($row['due'] == 0):?>
<td>
<button class="btn btn-success btn-xs"><?php echo get_phrase('paid');?></button>
</td>
<?php endif;?>
<?php if($row['due'] > 0):?>
<td>
<button class="btn btn-danger btn-xs"><?php echo get_phrase('unpaid');?></button>
</td>
<?php endif;?>
<td><?php echo date('d M,Y', $row['creation_timestamp']);?></td>
<td>
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
<?php echo get_phrase('action');?> <span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-default pull-right" role="menu">
<?php if ($row['due'] != 0):?>
<li>
<a href="#" onclick="showAjaxModal('<?php echo base_url();?>index.php?modal/popup/modal_take_payment/<?php echo $row['invoice_id'];?>');">
<i class="entypo-bookmarks"></i>
<?php echo get_phrase('take_payment');?>
</a>
</li>
<li class="divider"></li>
<?php endif;?>
<!-- VIEWING LINK -->
<li>
<a href="#" onclick="showAjaxModal('<?php echo base_url();?>index.php?modal/popup/modal_view_invoice/<?php echo $row['invoice_id'];?>');">
<i class="entypo-credit-card"></i>
<?php echo get_phrase('view_invoice');?>
</a>
</li>
<li class="divider"></li>
<!-- EDITING LINK -->
<li>
<a href="#" onclick="showAjaxModal('<?php echo base_url();?>index.php?modal/popup/modal_edit_invoice/<?php echo $row['invoice_id'];?>');">
<i class="entypo-pencil"></i>
<?php echo get_phrase('edit');?>
</a>
</li>
<li class="divider"></li>
<!-- DELETION LINK -->
<li>
<a href="#" onclick="confirm_modal('<?php echo base_url();?>index.php?admin/invoice/delete/<?php echo $row['invoice_id'];?>');">
<i class="entypo-trash"></i>
<?php echo get_phrase('delete');?>
</a>
</li>
</ul>
</div>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
<div class="tab-pane" id="paid">
<table class="table table-bordered datatable example">
<thead>
<tr>
<th><div>#</div></th>
<th><div><?php echo get_phrase('title');?></div></th>
<th><div><?php echo get_phrase('description');?></div></th>
<th><div><?php echo get_phrase('method');?></div></th>
<th><div><?php echo get_phrase('amount');?></div></th>
<th><div><?php echo get_phrase('date');?></div></th>
<th></th>
</tr>
</thead>
<tbody>
<?php
$count = 1;
$this->db->where('payment_type' , 'income');
$this->db->order_by('timestamp' , 'desc');
$payments = $this->db->get('payment')->result_array();
foreach ($payments as $row):
?>
<tr>
<td><?php echo $count++;?></td>
<td><?php echo $row['title'];?></td>
<td><?php echo $row['description'];?></td>
<td>
<?php
if ($row['method'] == 1)
echo get_phrase('cash');
if ($row['method'] == 2)
echo get_phrase('check');
if ($row['method'] == 3)
echo get_phrase('card');
if ($row['method'] == 'paypal')
echo 'paypal';
?>
</td>
<td><?php echo $row['amount'];?></td>
<td><?php echo date('d M,Y', $row['timestamp']);?></td>
<td align="center">
<a href="#" onclick="showAjaxModal('<?php echo base_url();?>index.php?modal/popup/modal_view_invoice/<?php echo $row['invoice_id'];?>');"
class="btn btn-default">
<?php echo get_phrase('view_invoice');?>
</a>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script type="text/javascript">
jQuery(document).ready(function($)
{
var datatable = $(".example").dataTable({
"sPaginationType": "bootstrap",
});
$(".dataTables_wrapper select").select2({
minimumResultsForSearch: -1
});
});
</script>