| 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 : |
<?php
$edit_data = $this->db->get_where('invoice', array('invoice_id' => $param2))->result_array();
foreach ($edit_data as $row):
?>
<center>
<a onClick="PrintElem('#invoice_print')" class="btn btn-default btn-icon icon-left hidden-print pull-right">
Print Invoice
<i class="entypo-print"></i>
</a>
</center>
<br><br>
<div id="invoice_print">
<table width="100%" border="0">
<tr>
<td align="right">
<h5><?php echo get_phrase('creation_date'); ?> : <?php echo date('d M,Y', $row['creation_timestamp']);?></h5>
<h5><?php echo get_phrase('title'); ?> : <?php echo $row['title'];?></h5>
<h5><?php echo get_phrase('description'); ?> : <?php echo $row['description'];?></h5>
<h5><?php echo get_phrase('status'); ?> : <?php echo $row['status']; ?></h5>
</td>
</tr>
</table>
<hr>
<table width="100%" border="0">
<tr>
<td align="left"><h4><?php echo get_phrase('payment_to'); ?> </h4></td>
<td align="right"><h4><?php echo get_phrase('bill_to'); ?> </h4></td>
</tr>
<tr>
<td align="left" valign="top">
<?php echo $this->db->get_where('settings', array('type' => 'system_name'))->row()->description; ?><br>
<?php echo $this->db->get_where('settings', array('type' => 'address'))->row()->description; ?><br>
<?php echo $this->db->get_where('settings', array('type' => 'phone'))->row()->description; ?><br>
</td>
<td align="right" valign="top">
<?php echo $this->db->get_where('student', array('student_id' => $row['student_id']))->row()->name; ?><br>
<?php
$class_id = $this->db->get_where('enroll' , array(
'student_id' => $row['student_id'],
'year' => $this->db->get_where('settings', array('type' => 'running_year'))->row()->description
))->row()->class_id;
echo get_phrase('class') . ' ' . $this->db->get_where('class', array('class_id' => $class_id))->row()->name;
?><br>
</td>
</tr>
</table>
<hr>
<table width="100%" border="0">
<tr>
<td align="right" width="80%"><?php echo get_phrase('total_amount'); ?> :</td>
<td align="right"><?php echo $row['amount']; ?></td>
</tr>
<tr>
<td align="right" width="80%"><h4><?php echo get_phrase('paid_amount'); ?> :</h4></td>
<td align="right"><h4><?php echo $row['amount_paid']; ?></h4></td>
</tr>
<?php if ($row['due'] != 0):?>
<tr>
<td align="right" width="80%"><h4><?php echo get_phrase('due'); ?> :</h4></td>
<td align="right"><h4><?php echo $row['due']; ?></h4></td>
</tr>
<?php endif;?>
</table>
<hr>
<!-- payment history -->
<h4><?php echo get_phrase('payment_history'); ?></h4>
<table class="table table-bordered" width="100%" border="1" style="border-collapse:collapse;">
<thead>
<tr>
<th><?php echo get_phrase('date'); ?></th>
<th><?php echo get_phrase('amount'); ?></th>
<th><?php echo get_phrase('method'); ?></th>
</tr>
</thead>
<tbody>
<?php
$payment_history = $this->db->get_where('payment', array('invoice_id' => $row['invoice_id']))->result_array();
foreach ($payment_history as $row2):
?>
<tr>
<td><?php echo date("d M, Y", $row2['timestamp']); ?></td>
<td><?php echo $row2['amount']; ?></td>
<td>
<?php
if ($row2['method'] == 1)
echo get_phrase('cash');
if ($row2['method'] == 2)
echo get_phrase('check');
if ($row2['method'] == 3)
echo get_phrase('card');
if ($row2['method'] == 'paypal')
echo 'paypal';
?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
<tbody>
</table>
</div>
<?php endforeach; ?>
<script type="text/javascript">
// print invoice function
function PrintElem(elem)
{
Popup($(elem).html());
}
function Popup(data)
{
var mywindow = window.open('', 'invoice', 'height=400,width=600');
mywindow.document.write('<html><head><title>Invoice</title>');
mywindow.document.write('<link rel="stylesheet" href="assets/css/neon-theme.css" type="text/css" />');
mywindow.document.write('<link rel="stylesheet" href="assets/js/datatables/responsive/css/datatables.responsive.css" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.print();
mywindow.close();
return true;
}
</script>