104 lines
5.7 KiB
PHP
Executable File
104 lines
5.7 KiB
PHP
Executable File
|
|
<!--sidebar end-->
|
|
<!--main content start-->
|
|
<section id="main-content">
|
|
<section class="wrapper site-min-height">
|
|
<!-- page start-->
|
|
<section class="panel">
|
|
<header class="panel-heading">
|
|
<i class="fa fa-money"></i> <?php echo lang('amount_distribution'); ?>
|
|
</header>
|
|
<div class="panel-body">
|
|
<div class="adv-table editable-table ">
|
|
<div class="clearfix no-print">
|
|
<a href="finance/addPaymentView">
|
|
<div class="btn-group">
|
|
<button id="" class="btn green">
|
|
<i class="fa fa-plus-circle"></i> <?php echo lang('add_payment'); ?>
|
|
</button>
|
|
</div>
|
|
</a>
|
|
<button class="export no-print" onclick="javascript:window.print();"><?php echo lang('print'); ?></button>
|
|
</div>
|
|
<div class="space15"></div>
|
|
<table class="table table-striped table-hover table-bordered" id="editable-sample">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo lang('patient'); ?></th>
|
|
<th><?php echo lang('refd_by_doctor'); ?></th>
|
|
<th><?php echo lang('date'); ?></th>
|
|
<th><?php echo lang('sub_total'); ?></t>
|
|
<th><?php echo lang('discount'); ?></th>
|
|
<th><?php echo lang('total'); ?></th>
|
|
<th><?php echo lang('hospital_amount'); ?></th>
|
|
<th><?php echo lang('doctor_amount'); ?></th>
|
|
<th class="option_th no-print"><?php echo lang('options'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<style>
|
|
|
|
.img_url{
|
|
height:20px;
|
|
width:20px;
|
|
background-size: contain;
|
|
max-height:20px;
|
|
border-radius: 100px;
|
|
}
|
|
.option_th{
|
|
width:18%;
|
|
}
|
|
|
|
</style>
|
|
|
|
<?php foreach ($payments as $payment) { ?>
|
|
<?php $patient_info = $this->db->get_where('patient', array('id' => $payment->patient))->row(); ?>
|
|
|
|
<tr class="">
|
|
<td><?php
|
|
if (!empty($patient_info)) {
|
|
echo $patient_info->name . '</br>' . $patient_info->address . '</br>' . $patient_info->phone;
|
|
}
|
|
?></td>
|
|
<td><?php
|
|
if (!empty($payment->doctor)) {
|
|
echo $this->db->get_where('doctor', array('id' => $payment->doctor))->row()->name;
|
|
}
|
|
?></td>
|
|
<td><?php echo date('d/m/y', $payment->date); ?></td>
|
|
<td><?php echo $settings->currency; ?> <?php echo $payment->amount; ?></td>
|
|
<td><?php echo $settings->currency; ?> <?php
|
|
if (!empty($payment->flat_discount)) {
|
|
echo $payment->flat_discount;
|
|
} else {
|
|
echo '0';
|
|
}
|
|
?></td>
|
|
<td><?php echo $settings->currency; ?> <?php echo $payment->gross_total; ?></td>
|
|
<td><?php echo $settings->currency; ?> <?php echo $payment->hospital_amount; ?></td>
|
|
<td><?php echo $settings->currency; ?> <?php echo $payment->doctor_amount; ?></td>
|
|
<td class="no-print">
|
|
<?php if ($this->ion_auth->in_group(array('admin', 'Accountant'))) { ?>
|
|
<a class="btn btn-info btn-xs editbutton width_auto" href="finance/editPayment?id=<?php echo $payment->id; ?>"><i class="fa fa-edit"> <?php echo lang('edit'); ?></i></a>
|
|
<?php } ?>
|
|
|
|
<a class="btn btn-xs invoicebutton width_auto" style="color: #fff;" href="finance/invoice?id=<?php echo $payment->id; ?>"><i class="fa fa-file-text"></i> <?php echo lang('invoice'); ?></a>
|
|
<?php if ($this->ion_auth->in_group(array('admin', 'Accountant'))) { ?>
|
|
<a class="btn btn-info btn-xs delete_button width_auto" href="finance/delete?id=<?php echo $payment->id; ?>" onclick="return confirm('Are you sure you want to delete this item?');"><i class="fa fa-trash-o"></i> <?php echo lang('delete'); ?></a>
|
|
<?php } ?>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- page end-->
|
|
</section>
|
|
</section>
|
|
<!--main content end-->
|
|
<!--footer start-->
|