161 lines
5.2 KiB
PHP
Executable File
161 lines
5.2 KiB
PHP
Executable File
<!--sidebar end-->
|
|
<!--main content start-->
|
|
<section id="main-content">
|
|
<section class="wrapper site-min-height">
|
|
<!-- page start-->
|
|
<section class="">
|
|
<header class="panel-heading">
|
|
<?php echo lang('pharmacy'); ?> <?php echo lang('all_sales'); ?>
|
|
<div class="col-md-4 no-print pull-right">
|
|
<a href="finance/pharmacy/addPaymentView">
|
|
<div class="btn-group pull-right">
|
|
<button id="" class="btn green btn-xs">
|
|
<i class="fa fa-plus-circle"></i> <?php echo lang('add_sale'); ?>
|
|
</button>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</header>
|
|
|
|
|
|
<style>
|
|
|
|
.editable-table .search_form{
|
|
border: 0px solid #ccc !important;
|
|
padding: 0px !important;
|
|
background: none !important;
|
|
float: right;
|
|
margin-right: 14px !important;
|
|
}
|
|
|
|
|
|
.editable-table .search_form input{
|
|
padding: 6px !important;
|
|
width: 250px !important;
|
|
background: #fff !important;
|
|
border-radius: none !important;
|
|
}
|
|
|
|
.editable-table .search_row{
|
|
margin-bottom: 20px !important;
|
|
}
|
|
|
|
.panel-body {
|
|
padding: 15px 0px 15px 0px;
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
<div class="panel-body">
|
|
<div class="adv-table editable-table">
|
|
<div class="space15">
|
|
<?php if (!empty($key)) { ?>
|
|
<p>Search Result For <?php echo $key; ?></p>
|
|
<?php } ?>
|
|
</div>
|
|
<table class="table table-striped table-hover table-bordered" id="editable-sample1">
|
|
<thead>
|
|
<tr>
|
|
<th> <?php echo lang('invoice_id'); ?> </th>
|
|
<th> <?php echo lang('date'); ?> </th>
|
|
<th> <?php echo lang('sub_total'); ?> </th>
|
|
<th> <?php echo lang('discount'); ?> </th>
|
|
<th> <?php echo lang('grand_total'); ?> </th>
|
|
<!--
|
|
<th> <?php echo lang('amount_received'); ?> </th>
|
|
<th> <?php echo lang('due_amount'); ?> </th>
|
|
-->
|
|
<th class="option_th"> <?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>
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- page end-->
|
|
</section>
|
|
</section>
|
|
<!--main content end-->
|
|
<!--footer start-->
|
|
|
|
|
|
<script src="common/js/codearistos.min.js"></script>
|
|
<script>
|
|
|
|
|
|
$(document).ready(function () {
|
|
var table = $('#editable-sample1').DataTable({
|
|
responsive: true,
|
|
// dom: 'lfrBtip',
|
|
|
|
"processing": true,
|
|
"serverSide": true,
|
|
"searchable": true,
|
|
"ajax": {
|
|
url: "finance/pharmacy/getPaymentList",
|
|
type: 'POST',
|
|
},
|
|
scroller: {
|
|
loadingIndicator: true
|
|
},
|
|
dom: "<'row'<'col-sm-3'l><'col-sm-5 text-center'B><'col-sm-4'f>>" +
|
|
"<'row'<'col-sm-12'tr>>" +
|
|
"<'row'<'col-sm-5'i><'col-sm-7'p>>",
|
|
buttons: [
|
|
'copyHtml5',
|
|
'excelHtml5',
|
|
'csvHtml5',
|
|
'pdfHtml5',
|
|
{
|
|
extend: 'print',
|
|
exportOptions: {
|
|
columns: [0, 1, 2, 3, 4],
|
|
}
|
|
},
|
|
],
|
|
aLengthMenu: [
|
|
[10, 25, 50, 100, -1],
|
|
[10, 25, 50, 100, "All"]
|
|
],
|
|
iDisplayLength: 100,
|
|
"order": [[0, "desc"]],
|
|
"language": {
|
|
"lengthMenu": "_MENU_",
|
|
search: "_INPUT_",
|
|
searchPlaceholder: "Search...",
|
|
"url": "common/assets/DataTables/languages/english.json"
|
|
},
|
|
});
|
|
table.buttons().container().appendTo('.custom_buttons');
|
|
});
|
|
</script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$(".flashmessage").delay(3000).fadeOut(100);
|
|
});
|
|
</script>
|