Update Module Pendapatan Tamsil dan TPG

This commit is contained in:
izuddin
2025-10-08 09:37:51 +07:00
parent ae68f252e1
commit d462dff0e3
7 changed files with 59 additions and 4 deletions
+6
View File
@@ -1,6 +1,7 @@
<?php
use PHPJasper\PHPJasper;
use App\Models\AkunTamsilTpg;
function GetBulan(){
$Month_name = array("Januari","Februari","Maret",
@@ -160,4 +161,9 @@ function getKodeRekInduk($val)
function convertSerialDate($date) {
$timestamp = ($date - 25569) * 86400;
return date("Y-m-d",$timestamp);
}
function getAkunTamsilTpg()
{
return AkunTamsilTpg::whereRaw("1=1")->get()->pluck("kode_akun")->toArray();
}