recall code ansuran lama
This commit is contained in:
@@ -9,7 +9,6 @@
|
|||||||
<ol class="breadcrumb pb-3">
|
<ol class="breadcrumb pb-3">
|
||||||
<li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li>
|
<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"><a href="{{ route('laporan') }}">Laporan</a></li>
|
||||||
<li class="breadcrumb-item"><a href="{{ route('homepage.ansuranupah') }}">Ansuran & Upah</a></li>
|
|
||||||
<li class="breadcrumb-item active" aria-current="page">Ansuran</li>
|
<li class="breadcrumb-item active" aria-current="page">Ansuran</li>
|
||||||
</ol>
|
</ol>
|
||||||
</nav>
|
</nav>
|
||||||
@@ -45,15 +44,19 @@
|
|||||||
<th width="30%">Nama</th>
|
<th width="30%">Nama</th>
|
||||||
<th>No K/P</th>
|
<th>No K/P</th>
|
||||||
<th>Tempoh</th>
|
<th>Tempoh</th>
|
||||||
<th>Baki Pembiayaan</th>
|
<th>Baki Pembiayaan (RM)</th>
|
||||||
<th>Bayaran</th>
|
<th>Bayaran (RM)</th>
|
||||||
<th>Keuntungan</th>
|
<th>Ujrah (RM)</th>
|
||||||
|
<th>Keuntungan 1% (RM)</th>
|
||||||
|
<th>Keuntungan (RM)</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tfoot class="thead-dark">
|
<tfoot class="thead-dark">
|
||||||
<th colspan="5">TOTAL</th>
|
<th colspan="5">TOTAL</th>
|
||||||
<th id="pinjamantotal"></th>
|
<th id="pinjamantotal"></th>
|
||||||
<th id="bayarantotal"></th>
|
<th id="bayarantotal"></th>
|
||||||
|
<th id="ansuranujrahtotal"></th>
|
||||||
|
<th id="ansuranonepercenttotal"></th>
|
||||||
<th id="keuntungantotal"></th>
|
<th id="keuntungantotal"></th>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
@@ -114,6 +117,8 @@
|
|||||||
var total_pinjaman = 0;
|
var total_pinjaman = 0;
|
||||||
var total_bayaran = 0;
|
var total_bayaran = 0;
|
||||||
var total_keuntungan = 0;
|
var total_keuntungan = 0;
|
||||||
|
var total_ansuranujrah = 0;
|
||||||
|
var total_ansuranonepercent = 0;
|
||||||
tabletebus.clear().draw();
|
tabletebus.clear().draw();
|
||||||
$.each(data,function(index,tebus){
|
$.each(data,function(index,tebus){
|
||||||
$.ajax({
|
$.ajax({
|
||||||
@@ -127,6 +132,9 @@
|
|||||||
total_pinjaman += Number(gadai[0][0]['bakipjm']);
|
total_pinjaman += Number(gadai[0][0]['bakipjm']);
|
||||||
total_bayaran += Number(tebus['duit_masuk']);
|
total_bayaran += Number(tebus['duit_masuk']);
|
||||||
total_keuntungan += Number(tebus['bayaran_keuntungan']);
|
total_keuntungan += Number(tebus['bayaran_keuntungan']);
|
||||||
|
total_ansuranujrah += Number(tebus['ansuranujrah']);
|
||||||
|
total_ansuranonepercent += Number(tebus['ansuranonepercent']);
|
||||||
|
|
||||||
tabletebus.row.add([
|
tabletebus.row.add([
|
||||||
counter,
|
counter,
|
||||||
tebus['norujukan'],
|
tebus['norujukan'],
|
||||||
@@ -135,15 +143,23 @@
|
|||||||
gadai[0][0]['tempoh'],
|
gadai[0][0]['tempoh'],
|
||||||
gadai[0][0]['bakipjm'],
|
gadai[0][0]['bakipjm'],
|
||||||
tebus['duit_masuk'],
|
tebus['duit_masuk'],
|
||||||
|
tebus['ansuranujrah'],
|
||||||
|
tebus['ansuranonepercent'],
|
||||||
tebus['bayaran_keuntungan']
|
tebus['bayaran_keuntungan']
|
||||||
]).draw();
|
]).draw();
|
||||||
$('#pinjamantotal').text(formatter.format(total_pinjaman.toFixed(2)));
|
$('#pinjamantotal').text(formatter.format(total_pinjaman.toFixed(2)));
|
||||||
$('#bayarantotal').text(formatter.format(total_bayaran.toFixed(2)));
|
$('#bayarantotal').text(formatter.format(total_bayaran.toFixed(2)));
|
||||||
|
$('#ansuranujrahtotal').text(formatter.format(total_ansuranujrah.toFixed(2)));
|
||||||
|
$('#ansuranonepercenttotal').text(formatter.format(total_ansuranonepercent.toFixed(2)));
|
||||||
$('#keuntungantotal').text(formatter.format(total_keuntungan.toFixed(2)));
|
$('#keuntungantotal').text(formatter.format(total_keuntungan.toFixed(2)));
|
||||||
|
|
||||||
|
counter = counter + 1;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-3 mx-1">
|
<div class="col-3 mx-1">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<a href="{{ route('laporan.ansuranujrah') }}" class="btn btn-dark btn-lg btn-block mb-3">Ansuran</a>
|
<a href="{{ route('laporan.ansuran') }}" class="btn btn-dark btn-lg btn-block mb-3">Ansuran</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<a href="{{ route('laporan.stokaudit') }}" class="btn btn-dark btn-lg btn-block mb-3">Stok Audit</a>
|
<a href="{{ route('laporan.stokaudit') }}" class="btn btn-dark btn-lg btn-block mb-3">Stok Audit</a>
|
||||||
|
|||||||
@@ -203,99 +203,154 @@
|
|||||||
<th>No Rujukan</th>
|
<th>No Rujukan</th>
|
||||||
<th width="30%">Nama</th>
|
<th width="30%">Nama</th>
|
||||||
<th>No K/P</th>
|
<th>No K/P</th>
|
||||||
|
<th>Tarikh Bayaran</th>
|
||||||
<th>Tempoh</th>
|
<th>Tempoh</th>
|
||||||
<th>Baki Pembiayaan (RM)</th>
|
<th>Baki Pembiayaan (RM)</th>
|
||||||
<th>Bayaran Pemb. (RM)</th>
|
<th>Bayaran Pemb. (RM)</th>
|
||||||
|
<th>Ujrah(RM)</th>
|
||||||
|
<th>Keuntungan 1% (RM)</th>
|
||||||
<th>Keuntungan (RM)</th>
|
<th>Keuntungan (RM)</th>
|
||||||
<th>Bayaran (RM)</th>
|
<th>Bayaran (RM)</th>
|
||||||
</tr>
|
</tr>
|
||||||
@php $counter = 1;$totalduitmasuk = 0;$totalkeuntungan = 0; $totalpendahuluan = 0;@endphp
|
@php
|
||||||
@foreach($tebus as $index=>$item)
|
$counter = 1;
|
||||||
@php $totalduitmasuk += $item['duit_masuk'];$totalkeuntungan += $item['bayaran_keuntungan'];$totalpendahuluan += $item['bayaran_pembiayaan']; @endphp
|
$totalduitmasuk = 0;
|
||||||
@if($index > 0)
|
$totalkeuntungan = 0;
|
||||||
@if($item['teller'] != $tebus[$index - 1]['teller'])
|
$totalpendahuluan = 0;
|
||||||
<tr>
|
$totalujrah = 0;
|
||||||
<td colspan="11">Teller : <b>{{ $item['teller'] }}</b></td>
|
$totalonepercent = 0;
|
||||||
</tr>
|
@endphp
|
||||||
@php $totaldmteller = 0;$totalupahteller = 0;$totalpendhteller = 0; @endphp
|
@foreach($tebus as $index=>$item)
|
||||||
@endif
|
@php
|
||||||
@else
|
$totalduitmasuk += $item['duit_masuk'];
|
||||||
<tr>
|
$totalkeuntungan += $item['bayaran_keuntungan'];
|
||||||
<td colspan="11">Teller : <b>{{ $item['teller'] }}</b></td>
|
$totalpendahuluan += $item['bayaran_pembiayaan'];
|
||||||
</tr>
|
$totalujrah += bcdiv(round($item['ansuranujrah'],2),1,1);
|
||||||
@php $totaldmteller = 0;$totalupahteller = 0;$totalpendhteller = 0; @endphp
|
$totalonepercent += bcdiv(round($item['ansuranonepercent'],2),1,1);
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
@if($index > 0)
|
||||||
|
@if($item['teller'] != $tebus[$index - 1]['teller'])
|
||||||
|
<tr>
|
||||||
|
<td colspan="11">Teller : <b>{{ $item['teller'] }}</b></td>
|
||||||
|
</tr>
|
||||||
|
@php
|
||||||
|
$totaldmteller = 0;
|
||||||
|
$totalupahteller = 0;
|
||||||
|
$totalpendhteller = 0;
|
||||||
|
$totalujrahteller = 0;
|
||||||
|
$totalonepercentteller = 0;
|
||||||
|
@endphp
|
||||||
|
@endif
|
||||||
|
@else
|
||||||
|
<tr>
|
||||||
|
<td colspan="11">Teller : <b>{{ $item['teller'] }}</b></td>
|
||||||
|
</tr>
|
||||||
|
@php
|
||||||
|
$totaldmteller = 0;
|
||||||
|
$totalupahteller = 0;
|
||||||
|
$totalpendhteller = 0;
|
||||||
|
$totalujrahteller = 0;
|
||||||
|
$totalonepercentteller = 0;
|
||||||
|
@endphp
|
||||||
|
@endif
|
||||||
|
<tr>
|
||||||
|
<td>{{ $counter }}</td>
|
||||||
|
<td>{{$item['norujukan']}}</td>
|
||||||
|
<td>{{ $item['nama'] }}</td>
|
||||||
|
<td>{{ $item['nokp'] }}</td>
|
||||||
|
<td> @php
|
||||||
|
$myDateTime = DateTime::createFromFormat('Y-m-d H:i:s', $item['tarikh_bayaran']);
|
||||||
|
$formattedweddingdate = $myDateTime->format('d-m-Y');
|
||||||
|
echo($formattedweddingdate)
|
||||||
|
@endphp</td>
|
||||||
|
<td>{{ $item['tempoh'] }}</td>
|
||||||
|
<td>{{ number_format($item['bakipjm'],2) }}</td>
|
||||||
|
<td>{{ number_format($item['bayaran_pembiayaan'],2) }}</td>
|
||||||
|
<td>{{ number_format(bcdiv(round($item['ansuranujrah'],2),1,1),2) }}</td>
|
||||||
|
<td>{{ number_format(bcdiv(round($item['ansuranonepercent'],2),1,1),2) }}</td>
|
||||||
|
<td>{{ number_format($item['bayaran_keuntungan'],2) }}</td>
|
||||||
|
<td>{{ number_format($item['duit_masuk'],2) }}</td>
|
||||||
|
</tr>
|
||||||
|
@php $counter++; @endphp
|
||||||
|
@php
|
||||||
|
$totaldmteller += $item['duit_masuk'];
|
||||||
|
$totalupahteller += $item['bayaran_keuntungan'];
|
||||||
|
$totalpendhteller += $item['bayaran_pembiayaan'];
|
||||||
|
$totalujrahteller += bcdiv(round($item['ansuranujrah'],2),1,1);
|
||||||
|
$totalonepercentteller += bcdiv(round($item['ansuranonepercent'],2),1,1);
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
@if($index+1 < sizeof($tebus))
|
||||||
|
@if($item['teller'] != $tebus[$index + 1]['teller'])
|
||||||
|
<tr>
|
||||||
|
<td colspan="7">{{ $counter-1 }} Jumlah Bagi Teller : {{ $item['teller'] }}</td>
|
||||||
|
<td><b>{{ number_format($totalpendhteller,2) }} </b></td>
|
||||||
|
<td><b>{{ number_format($totalujrahteller,2) }} </b></td>
|
||||||
|
<td><b>{{ number_format($totalonepercentteller,2) }} </b></td>
|
||||||
|
<td><b>{{ number_format($totalupahteller,2) }} </b></td>
|
||||||
|
<td><b>{{ number_format($totaldmteller,2) }} </b></td>
|
||||||
|
</tr>
|
||||||
|
@php
|
||||||
|
$counter = 1;
|
||||||
|
$totaldmteller = 0;
|
||||||
|
$totalupahteller = 0;
|
||||||
|
$totalpendhteller = 0;
|
||||||
|
@endphp
|
||||||
@endif
|
@endif
|
||||||
<tr>
|
@else
|
||||||
<td>{{ $counter }}</td>
|
<tr>
|
||||||
<td>{{$item['norujukan']}}</td>
|
<td colspan="7">{{ $counter-1 }} Jumlah Bagi Teller : {{ $item['teller'] }}</td>
|
||||||
<td>{{ $item['nama'] }}</td>
|
<td><b>{{ number_format($totalpendhteller,2) }} </b></td>
|
||||||
<td>{{ $item['nokp'] }}</td>
|
<td><b>{{ number_format($totalujrahteller,2) }} </b></td>
|
||||||
<td>{{ $item['tempoh'] }}</td>
|
<td><b>{{ number_format($totalonepercentteller,2) }} </b></td>
|
||||||
<td>{{ number_format($item['bakipjm'],2) }}</td>
|
<td><b>{{ number_format($totalupahteller,2) }} </b></td>
|
||||||
<td>{{ number_format($item['bayaran_pembiayaan'],2) }}</td>
|
<td><b>{{ number_format($totaldmteller,2) }} </b></td>
|
||||||
<td>{{ number_format($item['bayaran_keuntungan'],2) }}</td>
|
</tr>
|
||||||
<td>{{ number_format($item['duit_masuk'],2) }}</td>
|
@endif
|
||||||
</tr>
|
@endforeach
|
||||||
@php $counter++; @endphp
|
|
||||||
@php $totaldmteller += $item['duit_masuk'];$totalupahteller += $item['bayaran_keuntungan'];$totalpendhteller += $item['bayaran_pembiayaan']; @endphp
|
|
||||||
@if($index+1 < sizeof($tebus))
|
|
||||||
@if($item['teller'] != $tebus[$index + 1]['teller'])
|
|
||||||
<tr>
|
|
||||||
<td colspan="6">{{ $counter-1 }} Jumlah Bagi Teller : {{ $item['teller'] }}</td>
|
|
||||||
<td><b>{{ number_format($totalpendhteller,2) }} </b></td>
|
|
||||||
<td><b>{{ number_format($totalupahteller,2) }} </b></td>
|
|
||||||
<td><b>{{ number_format($totaldmteller,2) }} </b></td>
|
|
||||||
</tr>
|
|
||||||
@php $counter = 1;$totaldmteller = 0;$totalupahteller = 0;$totalpendhteller = 0;@endphp
|
|
||||||
@endif
|
|
||||||
@else
|
|
||||||
<tr>
|
|
||||||
<td colspan="6">{{ $counter-1 }} Jumlah Bagi Teller : {{ $item['teller'] }}</td>
|
|
||||||
<td><b>{{ number_format($totalpendhteller,2) }} </b></td>
|
|
||||||
<td><b>{{ number_format($totalupahteller,2) }} </b></td>
|
|
||||||
<td><b>{{ number_format($totaldmteller,2) }} </b></td>
|
|
||||||
</tr>
|
|
||||||
@endif
|
|
||||||
@endforeach
|
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<br><br>
|
<br><br>
|
||||||
<table id="details" style="border-top:1px solid black;border-bottom:1px solid black;text-align:center;">
|
<table id="details" style="border-top:1px solid black;border-bottom:1px solid black;text-align:center;">
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="9"></th>
|
<th colspan="9"></th>
|
||||||
<th style="text-align:center;">Bayaran Pemb. (RM)</th>
|
<th style="text-align:center;">Bayaran Pemb. (RM)</th>
|
||||||
<th style="text-align:center;">Keuntungan (RM)</th>
|
<th style="text-align:center;">Ujrah (RM)</th>
|
||||||
<th style="text-align:center;">Bayaran (RM)</th>
|
<th style="text-align:center;">Keuntungan 1% (RM)</th>
|
||||||
</tr>
|
<th style="text-align:center;">Keuntungan (RM)</th>
|
||||||
<tr>
|
<th style="text-align:center;">Bayaran (RM)</th>
|
||||||
<td colspan="9" style="text-align: center;"><b>JUMLAH KESELURUHAN</b></td>
|
</tr>
|
||||||
<td>{{ number_format($totalpendahuluan,2) }}</td>
|
<tr>
|
||||||
<td>{{ number_format($totalkeuntungan,2) }}</td>
|
<td colspan="9" style="text-align: center;"><b>JUMLAH KESELURUHAN</b></td>
|
||||||
<td>{{ number_format($totalduitmasuk,2) }}</td>
|
<td>{{ number_format($totalpendahuluan,2) }}</td>
|
||||||
</tr>
|
<td>{{ number_format($totalujrah,2) }}</td>
|
||||||
|
<td>{{ number_format($totalonepercent,2) }}</td>
|
||||||
|
<td>{{ number_format($totalkeuntungan,2) }}</td>
|
||||||
|
<td>{{ number_format($totalduitmasuk,2) }}</td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<br><br>
|
<br><br>
|
||||||
<br><br>
|
<br><br>
|
||||||
<table id="sign">
|
<table id="sign">
|
||||||
<tr>
|
<tr>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td colspan="2"> .................................................................. </td>
|
<td colspan="2"> .................................................................. </td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td colspan="2">.................................................................. </td>
|
<td colspan="2">.................................................................. </td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td colspan="2"><B> DI SEMAK</B> </td>
|
<td colspan="2"><B> DI SEMAK</B> </td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td colspan="2"><B>DI SAHKAN </B></td>
|
<td colspan="2"><B>DI SAHKAN </B></td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user