recall code ansuran lama

This commit is contained in:
Amirah
2023-12-06 16:44:31 +08:00
parent cc48bf3565
commit 49857f25e9
3 changed files with 150 additions and 79 deletions
@@ -9,7 +9,6 @@
<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"><a href="{{ route('homepage.ansuranupah') }}">Ansuran & Upah</a></li>
<li class="breadcrumb-item active" aria-current="page">Ansuran</li>
</ol>
</nav>
@@ -45,15 +44,19 @@
<th width="30%">Nama</th>
<th>No K/P</th>
<th>Tempoh</th>
<th>Baki Pembiayaan</th>
<th>Bayaran</th>
<th>Keuntungan</th>
<th>Baki Pembiayaan (RM)</th>
<th>Bayaran (RM)</th>
<th>Ujrah (RM)</th>
<th>Keuntungan 1% (RM)</th>
<th>Keuntungan (RM)</th>
</tr>
</thead>
<tfoot class="thead-dark">
<th colspan="5">TOTAL</th>
<th id="pinjamantotal"></th>
<th id="bayarantotal"></th>
<th id="ansuranujrahtotal"></th>
<th id="ansuranonepercenttotal"></th>
<th id="keuntungantotal"></th>
</tfoot>
</table>
@@ -114,6 +117,8 @@
var total_pinjaman = 0;
var total_bayaran = 0;
var total_keuntungan = 0;
var total_ansuranujrah = 0;
var total_ansuranonepercent = 0;
tabletebus.clear().draw();
$.each(data,function(index,tebus){
$.ajax({
@@ -127,6 +132,9 @@
total_pinjaman += Number(gadai[0][0]['bakipjm']);
total_bayaran += Number(tebus['duit_masuk']);
total_keuntungan += Number(tebus['bayaran_keuntungan']);
total_ansuranujrah += Number(tebus['ansuranujrah']);
total_ansuranonepercent += Number(tebus['ansuranonepercent']);
tabletebus.row.add([
counter,
tebus['norujukan'],
@@ -135,15 +143,23 @@
gadai[0][0]['tempoh'],
gadai[0][0]['bakipjm'],
tebus['duit_masuk'],
tebus['ansuranujrah'],
tebus['ansuranonepercent'],
tebus['bayaran_keuntungan']
]).draw();
$('#pinjamantotal').text(formatter.format(total_pinjaman.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)));
counter = counter + 1;
}
});
}
});
});
}
@@ -90,7 +90,7 @@
</div>
<div class="col-3 mx-1">
<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 class="row">
<a href="{{ route('laporan.stokaudit') }}" class="btn btn-dark btn-lg btn-block mb-3">Stok Audit</a>