| Server IP : 14.225.204.176 / Your IP : 216.73.216.252 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/thanhphuong/resources/views/report/ |
Upload File : |
@extends('layout.main') @section('content')
<section class="forms">
<div class="container-fluid">
<div class="card">
<div class="card-header mt-2">
<h3 class="text-center">{{trans('file.Payment Report')}}</h3>
</div>
{!! Form::open(['route' => 'report.paymentByDate', 'method' => 'post']) !!}
<div class="col-md-6 offset-md-3 mt-3 mb-3">
<div class="form-group row">
<label class="d-tc mt-2"><strong>{{trans('file.Choose Your Date')}}</strong> </label>
<div class="d-tc">
<div class="input-group">
<input type="text" id="daterangepicker-change-date" class="daterangepicker-field form-control" value="{{date('d-m-Y', strtotime($start_date))}} To {{date('d-m-Y', strtotime($end_date))}}" required />
<input type="hidden" name="start_date" />
<input type="hidden" name="end_date" />
<div class="input-group-append">
<button class="btn btn-primary" type="submit">{{trans('file.submit')}}</button>
</div>
</div>
</div>
</div>
</div>
{!! Form::close() !!}
</div>
</div>
<div class="table-responsive mb-4">
<table id="report-table" class="table table-hover">
<thead>
<tr>
<th class="not-exported"></th>
<th>{{trans('file.Date')}}</th>
<th>{{trans('file.Payment Reference')}} </th>
<th>{{trans('file.Sale Reference')}}</th>
<th>{{trans('file.Purchase Reference')}}</th>
<th>{{trans('file.Paid By')}}</th>
<th>{{trans('file.Amount')}}</th>
<th>{{trans('file.Created By')}}</th>
</tr>
</thead>
<tbody>
@foreach($lims_payment_data as $payment)
<?php
$sale = DB::table('sales')->find($payment->sale_id);
$purchase = DB::table('purchases')->find($payment->purchase_id);
$user = DB::table('users')->find($payment->user_id);
?>
<tr>
<td></td>
<td>{{date($general_setting->date_format, strtotime($payment->created_at->toDateString()))}}</td>
<td>{{$payment->payment_reference}}</td>
<td>@if($sale){{$sale->reference_no}}@endif</td>
<td>@if($purchase){{$purchase->reference_no}}@endif</td>
<td>{{$payment->paying_method}}</td>
<td>{{number_format((float)$payment->amount, 0, '.', ',')}}</td>
<td>{{$user->name}}<br>{{$user->email}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</section>
<script type="text/javascript">
$("ul#report").siblings('a').attr('aria-expanded','true');
$("ul#report").addClass("show");
$("ul#report li#payment-report-menu").addClass("active");
$('#report-table').DataTable( {
"order": [],
'language': {
'lengthMenu': '_MENU_ {{trans("file.records per page")}}',
"info": '<small>{{trans("file.Showing")}} _START_ - _END_ (_TOTAL_)</small>',
"search": '{{trans("file.Search")}}',
'paginate': {
'previous': '<i class="dripicons-chevron-left"></i>',
'next': '<i class="dripicons-chevron-right"></i>'
}
},
'columnDefs': [
{
"orderable": false,
'targets': 0
},
{
'render': function(data, type, row, meta){
if(type === 'display'){
data = '<div class="checkbox"><input type="checkbox" class="dt-checkboxes"><label></label></div>';
}
return data;
},
'checkboxes': {
'selectRow': true,
'selectAllRender': '<div class="checkbox"><input type="checkbox" class="dt-checkboxes"><label></label></div>'
},
'targets': [0]
}
],
'select': { style: 'multi', selector: 'td:first-child'},
'lengthMenu': [[10, 25, 50, -1], [10, 25, 50, "All"]],
dom: '<"row"lfB>rtip',
buttons: [
{
extend: 'pdf',
text: '{{trans("file.PDF")}}',
exportOptions: {
columns: ':visible:Not(.not-exported)',
rows: ':visible'
},
},
{
extend: 'csv',
text: '{{trans("file.CSV")}}',
exportOptions: {
columns: ':visible:Not(.not-exported)',
rows: ':visible'
},
},
{
extend: 'print',
text: '{{trans("file.Print")}}',
messageTop: function(){
return `
<div>
<div style="display:flex;justify-content: center">
<div style="padding-right: 15px">
<img src="{{url('public/logo', $general_setting->site_logo)}}" width="65">
</div>
<div>
<h4 style="text-align:left;color:red;">{{trans('file.Company name system')}}</h4>
<p style="text-align:left;color:red;">{{trans('file.Company address system')}}</p>
</div>
</div>
<div style="text-align:center;">
<br>
<h3 style="text-transform: uppercase" class="modal-title text-center container-fluid">{{trans('file.Payment Report')}}</h3>
<p class="modal-title text-center container-fluid">{{trans('file.From date')}} {{date('d-m-Y', strtotime($start_date))}} {{trans('file.To date')}} {{date('d-m-Y', strtotime($end_date))}}</p>
</div>
</div>
`;
},
text: '{{trans("file.Print")}}',
exportOptions: {
columns: ':visible:Not(.not-exported)',
rows: ':visible'
},
},
{
extend: 'colvis',
text: '{{trans("file.Column visibility")}}',
columns: ':gt(0)'
}
],
} );
$(".daterangepicker-field").daterangepicker({
callback: function(startDate, endDate, period){
var start_date = startDate.format('YYYY-MM-DD');
var end_date = endDate.format('YYYY-MM-DD');
var display_start_date = startDate.format('DD-MM-YYYY');
var display_end_date = endDate.format('DD-MM-YYYY');
var title = display_start_date + ' To ' + display_end_date;
$(this).val(title);
$('input[name="start_date"]').val(start_date);
$('input[name="end_date"]').val(end_date);
}
});
$('#daterangepicker-change-date').on("change", function(){
var date_value = $(this).val();
var arrDate = (date_value.trim()).split("To")
var start = arrDate[0].trim().split("-")
var end = arrDate[1].trim().split("-")
var start_date = start[2] + '-' + start[1] + '-' + start[0]
var end_date = end[2] + '-' + end[1] + '-' + end[0]
$('input[name="start_date"]').val(start_date);
$('input[name="end_date"]').val(end_date);
});
</script>
@endsection