This commit is contained in:
izuddin
2024-09-24 14:00:49 +07:00
parent d5212f1f89
commit cd56b76e3f
12 changed files with 602 additions and 178 deletions
+5
View File
@@ -155,4 +155,9 @@ function getKodeRekInduk($val)
$kodeRek = array_combine(array_keys($conf),array_column(array_values($conf),"rekening"));
return $kodeRek[$val];
}
function convertSerialDate($date) {
$timestamp = ($date - 25569) * 86400;
return date("Y-m-d",$timestamp);
}