186 lines
7.7 KiB
PHP
186 lines
7.7 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="card">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb pb-3">
|
|
<li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li>
|
|
<li class="breadcrumb-item"><a href="{{ route('laporan') }}">Laporan</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">Penyelesaian Pem.</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<div class="card-body text-center">
|
|
<div class="row form-group">
|
|
<div class="col-md-2">
|
|
</div>
|
|
<div class="col-md-10">
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-5">
|
|
<form action="{{ route('tebus.laporancetak') }}" target="_blank" method="post">
|
|
@csrf
|
|
<div class="input-group mb-3">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text" id="basic-addon1">Tarikh</span>
|
|
</div>
|
|
<input type="text" class="form-control" placeholder="Pilih Tarikh" aria-label="Tarikh" id="datetarikh" name="datetarikh" aria-describedby="basic-addon1">
|
|
|
|
<input type="submit" class="btn btn-primary ml-md-5" id="submit_button" name="submit_button" value="Cetak">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<table class="table table-striped table-hover" id="myTable">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>Bil</th>
|
|
<th width="22%">Nama</th>
|
|
<th>No K/P</th>
|
|
<th>No Rujukan</th>
|
|
<th>Pembiayaan (RM)</th>
|
|
<th>Keuntungan (RM)</th>
|
|
<th>Bayaran (RM)</th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot class="thead-dark">
|
|
<th colspan="4">TOTAL</th>
|
|
<th id="pinjamantotal"></th>
|
|
<th id="keuntungantotal"></th>
|
|
<th id="bayarantotal"></th>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{{-- <div class="row">
|
|
<div class="col-md-12 text-right">
|
|
<h5> Jumlah Pinjaman : <span id="jumlah_pinjaman"></span></h5>
|
|
</div>
|
|
</div> --}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
var api_url = "<?php echo $api_url ?>";
|
|
var kodcaw = "<?php echo $cawangan_info['kodcaw'] ?>";
|
|
|
|
var tabletebus = $('#myTable').DataTable({
|
|
"ordering": true
|
|
});
|
|
$(document).ready( function () {
|
|
$('#datetarikh').datepicker({
|
|
format: 'dd-mm-yyyy'
|
|
});
|
|
|
|
var current = new Date();
|
|
var current_date = current.getDate();
|
|
var current_month = current.getMonth()+1;
|
|
var current_year = current.getFullYear();
|
|
var today_date = current_year + '-' + current_month + '-' + current_date;
|
|
$.ajax({
|
|
method:'get',
|
|
url: api_url + '/api/tebus/laporan/' +kodcaw+ '/' + today_date,
|
|
success: function(tebus){
|
|
tebustable(tebus);
|
|
}
|
|
});
|
|
});
|
|
|
|
$('#datetarikh').change(function(){
|
|
var input_date = this.value;
|
|
var split_date = input_date.split('-');
|
|
var today_date = split_date[2] + '-' + split_date[1] + '-' + split_date[0];
|
|
$.ajax({
|
|
method:'get',
|
|
url: api_url + '/api/tebus/laporan/' + kodcaw + '/' + today_date,
|
|
success: function(tebus){
|
|
tebustable(tebus);
|
|
}
|
|
});
|
|
$('#pinjamantotal').text('0.00');
|
|
$('#keuntungantotal').text('0.00');
|
|
$('#bayarantotal').text('0.00');
|
|
|
|
});
|
|
|
|
const formatter = new Intl.NumberFormat('en-US', {
|
|
minimumFractionDigits: 2
|
|
});
|
|
|
|
function tebustable(data){
|
|
var counter = 1;
|
|
var total_pinjaman = 0;
|
|
var total_keuntungan = 0;
|
|
var total_bayaran = 0;
|
|
|
|
console.log(data);
|
|
|
|
tabletebus.clear().draw();
|
|
$.each(data,function(index,tebus){
|
|
total_pinjaman += parseFloat(tebus['pinjaman']);
|
|
total_keuntungan += parseFloat(tebus['bakiupah']);
|
|
total_bayaran += parseFloat(tebus['bakipjm']);
|
|
tabletebus.row.add([
|
|
counter,
|
|
tebus['nama'],
|
|
tebus['nokp'],
|
|
tebus['norujukan'],
|
|
formatter.format(tebus['pinjaman']),
|
|
formatter.format(tebus['bakiupah']),
|
|
formatter.format(tebus['bakipjm'])
|
|
]).draw();
|
|
counter = counter + 1;
|
|
$('#pinjamantotal').text(formatter.format(total_pinjaman.toFixed(2)));
|
|
$('#keuntungantotal').text(formatter.format(total_keuntungan.toFixed(2)));
|
|
$('#bayarantotal').text(formatter.format(total_bayaran.toFixed(2)));
|
|
});
|
|
|
|
|
|
// $.each(data,function(index,tebus){
|
|
// $.ajax({
|
|
// url:api_url + '/api/gadai/norujukan/' + tebus['norujukan'],
|
|
// method:'get',
|
|
// success:function(gadai){
|
|
// $.ajax({
|
|
// url:api_url + '/api/customers/' + gadai[0][0]['nokp'],
|
|
// method:'get',
|
|
// success:function(customer){
|
|
// total_pinjaman += parseFloat(tebus['pinjaman']);
|
|
// total_keuntungan += parseFloat(tebus['bakiupah']);
|
|
// total_bayaran += parseFloat(tebus['bakipjm']);
|
|
// tabletebus.row.add([
|
|
// counter,
|
|
// customer['nama'],
|
|
// gadai[0][0]['nokp'],
|
|
// tebus['norujukan'],
|
|
// tebus['t_tebus'],
|
|
// formatter.format(tebus['pinjaman']),
|
|
// formatter.format(tebus['bakiupah']),
|
|
// formatter.format(tebus['bakipjm'])
|
|
// ]).draw();
|
|
// counter = counter + 1;
|
|
// $('#pinjamantotal').text(formatter.format(total_pinjaman.toFixed(2)));
|
|
// $('#keuntungantotal').text(formatter.format(total_keuntungan.toFixed(2)));
|
|
// $('#bayarantotal').text(formatter.format(total_bayaran.toFixed(2)));
|
|
|
|
// }
|
|
// });
|
|
// }
|
|
// });
|
|
// });
|
|
// console.log('Total Pinjam : ' + total_pinjaman);
|
|
// $('#jumlah_pinjaman').text('RM '+ total_pinjaman);
|
|
|
|
}
|
|
</script>
|
|
@endsection
|
|
|