//MEMBUAT COMBOBOX BIASA YANG BISA DIPAKAI BERKALI-KALI PADA BANYAK MENU TANPA PERLU LOAD ULANG FUNCTION INI LAGI, CUKUP LOAD SEKALI SAJA, PADA SAAT LOGIN | |
<?php | |
header("Access-Control-Allow-Origin: *"); | |
header("Content-Type: application/json; charset=UTF-8"); | |
include "../configurations/configs.php"; | |
try { | |
$stmt2 = $db2->prepare("SELECT * FROM cabang WHERE status_cabang='1' ORDER BY id_cabang ASC"); | |
$stmt2->execute(); | |
$rows2 = $stmt2->fetchAll(PDO::FETCH_ASSOC); | |
$data = array(); | |
/* | |
$data[0] = array( //TAMBAHKAN DEFAULT VALUE -- KOSONG -- | |
"hasil" => 0, | |
"pesan_hasil" => htmlspecialchars("-- KOSONG --"), | |
); | |
*/ | |
for ($y = 0; $y < count($rows2); $y++) { //AMBIL DATA TABEL cabang | |
$id_cabang = $rows2[$y]["id_cabang"]; | |
$nama_cabang = $rows2[$y]["nama_cabang"]; | |
$data[$y + 0] = array( //ANGKA 0 DIGANTI 1, KETIKA DEFAULT VALUE DIATAS AKTIF | |
"hasil" => htmlspecialchars($id_cabang), | |
"pesan_hasil" => htmlspecialchars($nama_cabang), | |
); | |
} | |
$json_data = json_encode($data); | |
if (count($data) > 0) { //ADA DATA | |
echo $json_data; | |
} else { //TIDAK ADA DATA | |
echo '[{"hasil":0,"pesan_hasil":"TIDAK ADA DATA"}]'; | |
} | |
} catch (PDOException $ex) { | |
echo '[{"hasil":0,"pesan_hasil":"' . $ex->getMessage() . '"}]'; | |
} | |
?> | |
function ee_cabang_lokal() { | |
var data = { | |
token_pengguna: isi_token_pengguna | |
}; | |
$.ajax({ | |
url: protocol + "://" + host + "/" + directory + "/actions/ee_cabang_lokal.php?nc=" + (new Date()).getTime(), | |
type: "POST", | |
dataType: "json", | |
data: data, | |
success: function (pesan) { | |
var hasil = ""; | |
var data_combobox = ""; | |
$.each(pesan, function (i, n) { | |
hasil = n["hasil"]; | |
pesan_hasil = n["pesan_hasil"]; | |
data_combobox += "<option value=\"" + hasil + "\">" + pesan_hasil + "</option>"; | |
}); | |
localStorage.setItem("data_combobox_cc_cabang_lokal", data_combobox); | |
}, | |
error: function (pesan) { | |
alert("ERROR: ee_cabang_lokal"); | |
} | |
}); | |
} | |
ee_cabang_lokal(); //LOAD CUKUP SEKALI PADA SAAT LOGIN SAJA | |
<div class="form-group form-group-sm"> | |
<label class="col-sm-3" for="id_cabang">ID Cabang*</label> | |
<div class="col-sm-9"> | |
<select class="form-control input-sm" id="id_cabang" name="id_cabang" required disabled> | |
<option value="0">-- PILIH CABANG --</option> | |
</select> | |
</div> | |
</div> | |
$(document).ready(function () { | |
$("#id_cabang").html(localStorage.getItem("data_combobox_cc_cabang_lokal")); //TINGGAL LOAD INI PADA VIEW TAMPILAN | |
}); | |
//MEMBUAT COMBOBOX BIASA YANG DIPANGGIL PADA MENU SAAT DIBUTUHKAN, MASUKKAN FULL FUNCTION JS PADA HTML | |
<?php | |
header("Access-Control-Allow-Origin: *"); | |
header("Content-Type: application/json; charset=UTF-8"); | |
include "../configurations/configs.php"; | |
try { | |
$stmt2 = $db2->prepare("SELECT * FROM gudang WHERE status_gudang='1' ORDER BY id_gudang ASC"); | |
$stmt2->execute(); | |
$rows2 = $stmt2->fetchAll(PDO::FETCH_ASSOC); | |
$data = array(); | |
for ($y = 0; $y < count($rows2); $y++) { //AMBIL DATA TABEL gudang | |
$id_gudang = $rows2[$y]["id_gudang"]; | |
$nama_gudang = $rows2[$y]["nama_gudang"]; | |
$data[$y + 0] = array( | |
"hasil" => htmlspecialchars($id_gudang), | |
"pesan_hasil" => htmlspecialchars($nama_gudang), | |
); | |
} | |
/* | |
$data[0] = array( //TAMBAHKAN DEFAULT VALUE -- KOSONG -- | |
"hasil" => 0, | |
"pesan_hasil" => htmlspecialchars("-- KOSONG --"), | |
); | |
*/ | |
$json_data = json_encode($data); | |
if (count($data) > 0) { //ADA DATA | |
echo $json_data; | |
} else { //TIDAK ADA DATA | |
echo '[{"hasil":0,"pesan_hasil":"TIDAK ADA DATA"}]'; | |
} | |
} catch (PDOException $ex) { | |
echo '[{"hasil":0,"pesan_hasil":"' . $ex->getMessage() . '"}]'; | |
} | |
?> | |
<div class="form-group form-group-sm"> | |
<label class="col-sm-2" for="id_gudang">Gudang*</label> | |
<div class="col-sm-10"> | |
<select class="form-control input-sm" id="id_gudang" name="id_gudang" required> | |
<option value="0">-- KOSONG --</option> | |
</select> | |
<small class="form-text text-muted sr-only">Keterangan tambahan untuk field Gudang</small> | |
<div class="help-block with-errors sr-only"></div> | |
</div> | |
</div> | |
function gudang_combobox() { | |
var data = { | |
token_pengguna: isi_token_pengguna | |
}; | |
$.ajax({ | |
url: protocol + "://" + host + "/" + directory + "/actions/gudang_combobox.php?nc=" + (new Date()).getTime(), | |
type: "POST", | |
data: data, | |
success: function (pesan) { | |
var hasil = ""; | |
var data_combobox = ""; | |
$.each(pesan, function (i, n) { | |
hasil = n["hasil"]; | |
pesan_hasil = n["pesan_hasil"]; | |
data_combobox = data_combobox + "<option value=\"" + hasil + "\">" + pesan_hasil + "</option>"; | |
}); | |
$("#id_gudang").html(data_combobox); | |
}, | |
error: function (pesan) { | |
alert("ERROR: gudang_combobox"); | |
} | |
}); | |
} | |
$(document).ready(function () { | |
gudang_combobox(); //JALANKAN INI UNTUK MENJALANKAN | |
}); | |
//ONCHANGE BERKELANJUTAN, JIKA DI TRIGGER DARI COMBOBOX BIASA | |
<?php | |
header("Access-Control-Allow-Origin: *"); | |
header("Content-Type: application/json; charset=UTF-8"); | |
include "../configurations/configs.php"; | |
try { | |
$stmt2 = $db4->prepare("SELECT * FROM gudang WHERE id_cabang=:2"); | |
$stmt2->execute(array(":2" => $_POST['id_cabang'])); | |
$rows2 = $stmt2->fetchAll(PDO::FETCH_ASSOC); | |
$data = array(); | |
// $data[0] = array( //TAMBAHKAN DEFAULT VALUE -- KOSONG -- | |
// "hasil" => 0, | |
// "pesan_hasil" => htmlspecialchars("-- PILIH --"), | |
// ); | |
for ($y = 0; $y < count($rows2); $y++) { //AMBIL DATA TABEL master_mesin | |
$id_gudang = $rows2[$y]["id_gudang"]; | |
$kode_gudang = $rows2[$y]["kode_gudang"]; | |
$nama_gudang = $rows2[$y]["nama_gudang"]; | |
$data[$y + 0] = array( //UBAH 0 MENJADI 1 JIKA DEFAULT VALUE DIATAS AKTIF | |
"hasil" => htmlspecialchars($id_gudang), | |
"pesan_hasil" => htmlspecialchars($kode_gudang . " - " . $nama_gudang), | |
); | |
} | |
$json_data = json_encode($data); | |
//$decoded_data = json_decode($json_data); | |
if (count($data) > 0) { //ADA DATA | |
echo $json_data; | |
} else { //TIDAK ADA DATA | |
echo '[{"hasil":0,"pesan_hasil":"TIDAK ADA DATA"}]'; | |
} | |
} catch (PDOException $ex) { //TERDAPAT KESALAHAN PADA QUERY ATAU VARIABLE | |
echo '[{"hasil":0,"pesan_hasil":"' . $ex->getMessage() . '"}]'; | |
} | |
?> | |
<div class="form-group form-group-sm"> | |
<label class="col-sm-3" for="id_cabang">ID Cabang*</label> | |
<div class="col-sm-9"> | |
<select class="form-control input-sm" id="id_cabang" name="id_cabang" required> | |
<option value="0">-- PILIH CABANG --</option> | |
</select> | |
</div> | |
</div> | |
<div class="form-group form-group-sm"> | |
<label class="col-sm-3" for="id_gudang">ID Gudang*</label> | |
<div class="col-sm-9"> | |
<select class="form-control input-sm" id="id_gudang" name="id_gudang" required> | |
<option value="0">-- PILIH GUDANG --</option> | |
</select> | |
</div> | |
</div> | |
$('#id_cabang').change(function () { | |
master_gudang_autocomplete_tampungan(); | |
}); | |
function master_gudang_autocomplete_tampungan() { | |
var data = { | |
id_cabang: $('#id_cabang').val(), | |
token_pengguna: isi_token_pengguna | |
}; | |
$.ajax({ | |
url: protocol + "://" + host + "/" + directory + "/actions/master_gudang_autocomplete_tampungan.php?nc=" + (new Date()).getTime(), | |
type: "POST", | |
data: data, | |
success: function (pesan) { | |
var hasil = ""; | |
var data_combobox = ""; | |
$.each(pesan, function (i, n) { | |
hasil = n["hasil"]; | |
pesan_hasil = n["pesan_hasil"]; | |
data_combobox += "<option value=\"" + hasil + "\">" + pesan_hasil + "</option>"; | |
}); | |
$("#id_gudang").html(data_combobox); | |
}, | |
error: function (pesan) { | |
alert("ERROR: ff_master_wrapper_lokal"); | |
} | |
}); | |
} | |
//MEMBUAT COMBOBOX SELECT2 YANG BISA DIPAKAI BERKALI-KALI PADA BANYAK MENU TANPA PERLU LOAD ULANG FUNCTION INI LAGI, CUKUP LOAD SEKALI SAJA, PADA SAAT LOGIN | |
<?php | |
header("Access-Control-Allow-Origin: *"); | |
header("Content-Type: application/json; charset=UTF-8"); | |
include "../configurations/configs.php"; | |
try { | |
$stmt2 = $db4->prepare("SELECT * FROM master_slip ORDER BY id_slip ASC"); | |
$stmt2->execute(); | |
$rows2 = $stmt2->fetchAll(PDO::FETCH_ASSOC); | |
for ($y = 0; $y < count($rows2); $y++) { | |
//$data[] = array($rows2[$y]["id_wrapper"], trim(preg_replace('/\s+/', ' ', $rows2[$y]["nama_wrapper"] . " = " . ROUND($rows2[$y]["weight"], 0) . " KG"))); | |
$data[] = array( | |
$rows2[$y]["id_slip"], | |
trim(preg_replace('/\s+/', ' ', $rows2[$y]["kode_slip"] . " - " . $rows2[$y]["nama_slip"])), | |
); | |
} | |
if (count($rows2) == 0) { | |
$data[] = array(0, "TIDAK ADA DATA"); | |
} | |
$json_data = json_encode($data); | |
echo $json_data; | |
} catch (PDOException $ex) { //TERDAPAT KESALAHAN PADA QUERY ATAU VARIABLE | |
echo '[{"hasil":0,"pesan_hasil":"' . $ex->getMessage() . '"}]'; | |
} | |
?> | |
function ff_master_slip_lokal() { | |
var data = { | |
token_pengguna: isi_token_pengguna | |
}; | |
$.ajax({ | |
url: protocol + "://" + host + "/" + directory + "/actions/ff_master_slip_lokal.php?nc=" + (new Date()).getTime(), | |
type: "POST", | |
dataType: "json", | |
data: data, | |
success: function (pesan) { | |
let tempTampungan = [{ id: '-1', text: '-- PILIH SLIP --' }]; | |
//let tempTampungan = []; | |
for (let i = 0; i < pesan.length; i++) { | |
tempTampungan.push({ id: pesan[i][0], text: pesan[i][1] }); | |
} | |
localStorage.setItem("data_select2_cc_master_slip_lokal", JSON.stringify(tempTampungan)); | |
}, | |
error: function (pesan) { | |
alert("ERROR: ff_master_slip_lokal"); | |
} | |
}); | |
} | |
ff_master_slip_lokal(); //LOAD CUKUP SEKALI PADA SAAT LOGIN SAJA | |
<div class="form-group form-group-sm"> | |
<label class="col-sm-3" for="id_slip">Slip*</label> | |
<div class="col-sm-9"> | |
<select class="form-control input-sm" id="id_slip" name="id_slip" required> | |
<option value="0">-- Pilih Slip --</option> | |
</select> | |
<small class="form-text text-muted sr-only">Keterangan tambahan untuk field Ppn Pembelian</small> | |
<div class="help-block with-errors sr-only"></div> | |
</div> | |
</div> | |
function cc_master_slip_lokal2() { | |
let pesan = JSON.parse(localStorage.getItem("data_select2_cc_master_slip_lokal")); | |
$('#id_slip').empty(); | |
$('#id_slip').select2({ | |
data: pesan | |
}); | |
$('#id_slip').trigger("change"); | |
} | |
$(document).ready(function () { | |
cc_master_slip_lokal2(); //JALANKAN INI UNTUK MENJALANKAN | |
}); | |
//MEMBUAT COMBOBOX SELECT2 YANG DIPANGGIL PADA MENU SAAT DIBUTUHKAN, MASUKKAN FULL FUNCTION JS, BISA DITAMBAHKAN PARAMETER OUTPUT TAMBAHAN | |
<?php | |
header("Access-Control-Allow-Origin: *"); | |
header("Content-Type: application/json; charset=UTF-8"); | |
include "../configurations/configs.php"; | |
try { | |
if (isset($_POST["id_cabang"])) { | |
if ($_POST["id_cabang"] != "") { | |
$stmt2 = $db2->prepare("SELECT * FROM master_wrapper WHERE id_cabang=:1 ORDER BY id_wrapper ASC"); | |
$stmt2->execute(array(":1" => $_POST["id_cabang"])); | |
} else { | |
$stmt2 = $db2->prepare("SELECT * FROM master_wrapper ORDER BY id_wrapper ASC"); | |
$stmt2->execute(); | |
} | |
} else { | |
$stmt2 = $db2->prepare("SELECT * FROM master_wrapper ORDER BY id_wrapper ASC"); | |
$stmt2->execute(); | |
} | |
$rows2 = $stmt2->fetchAll(PDO::FETCH_ASSOC); | |
for ($y = 0; $y < count($rows2); $y++) { | |
$data[] = array( | |
$rows2[$y]["id_wrapper"], | |
trim(preg_replace('/\s+/', ' ', $rows2[$y]["nama_wrapper"] . " = " . ROUND($rows2[$y]["weight"], 4) . " KG")), | |
trim(preg_replace('/\s+/', ' ', ROUND($rows2[$y]["weight"], 4))), | |
); | |
} | |
if (count($rows2) == 0) { | |
$data[] = array(0, "TIDAK ADA DATA", 0); | |
} | |
$json_data = json_encode($data); | |
echo $json_data; | |
} catch (PDOException $ex) { //TERDAPAT KESALAHAN PADA QUERY ATAU VARIABLE | |
echo '[{"hasil":0,"pesan_hasil":"' . $ex->getMessage() . '"}]'; | |
} | |
?> | |
<div class="form-group form-group-sm"> | |
<label class="col-sm-3" for="id_wrapper">Wrapper*</label> | |
<div class="col-sm-9"> | |
<select class="form-control input-sm" id="id_wrapper" name="id_wrapper" required> | |
<option value="0">-- PILIH WRAPPER --</option> | |
</select> | |
<small class="form-text text-muted sr-only">Keterangan tambahan untuk field Perkiraan</small> | |
<div class="help-block with-errors sr-only"></div> | |
</div> | |
</div> | |
<input type="number" step="0.0001" class="form-control input-sm" id="weight" name="weight" data-minlength="1" maxlength="" value="0" data-error="Wajib isi" placeholder="Masukkan Sg Pembelian Detail" required> | |
function ff_master_wrapper_lokal() { | |
var data = { | |
id_cabang: $('#id_cabang').val(), | |
token_pengguna: isi_token_pengguna | |
}; | |
$.ajax({ | |
url: protocol + "://" + host + "/" + directory + "/actions/ff_master_wrapper_lokal.php?nc=" + (new Date()).getTime(), | |
type: "POST", | |
dataType: "json", | |
data: data, | |
success: function (pesan) { | |
$('#id_wrapper').empty(); //KOSONGKAN ISI SELECT2 | |
let tempTampungan = [{ id: '-1', text: '-- PILIH MASTER WRAPPER --', weight: 0 }]; //MEMBUAT DATA PERTAMA MANUAL SELECT2 | |
//let tempTampungan = []; | |
for (let i = 0; i < pesan.length; i++) { | |
tempTampungan.push({ | |
id: pesan[i][0], //VALUE | |
text: pesan[i][1], //TEXT-HTML | |
weight: pesan[i][2] //TAMBAHAN | |
}); | |
} | |
$('#id_wrapper').select2({ | |
data: tempTampungan | |
}); | |
//$('#id_wrapper').val(1); //JIKA INGIN MENGESET DEFAULT VALUE | |
$('#id_wrapper').trigger("change"); //HARUS SET INI PALING AKHIR, UNTUK MENGUBAH SESUAI DATA DIATAS | |
}, | |
error: function (pesan) { | |
alert("ERROR: ff_master_wrapper_lokal"); | |
} | |
}); | |
} | |
$('#id_wrapper').on('select2:select', function (e) { //PENGGANTI ONCHANGE DISINI | |
let dataselect = e.params.data; | |
$("#weight").val(dataselect.weight); | |
$('#id_wrapper').trigger("change"); | |
}); | |
$(document).ready(function () { | |
ff_master_wrapper_lokal(); //JALANKAN INI UNTUK MENJALANKAN | |
}); |
Blog AgustianRA
Hanya sekedar blog sederhana. Tanda iklan, tanpa skrip jebakan dan tanpa mendaftar.
Rabu, 05 Juni 2024
COMBOBOX & SELECT2
Cara Query Select IN yang didalamnya mengandung Tabel yang sama
-- AKAN MUNCUL ERROR, KARENA TIDAK BISA SELECT DI TABEL YG SAMA, HARUS DIAKALI SEPERTI DIBAWAH INI:
-- 1093 - You can't specify target table 'master_qr_code' for update in FROM clause
delete from master_qr_code where id_master_qr_code in (select a.id_master_qr_code from
master_qr_code a <<< DARI INI
left join pembelian_detail b on a.kode_batang_master_qr_code=b.kode_batang_pembelian_detail where isnull(b.nama_pembelian_detail) and a.id_jenis_transaksi=1);
delete from master_qr_code where id_master_qr_code in (select a.id_master_qr_code from
(select * from master_qr_code) a <<< MENJADI INI
left join pembelian_detail b on a.kode_batang_master_qr_code=b.kode_batang_pembelian_detail where isnull(b.nama_pembelian_detail) and a.id_jenis_transaksi=1);
Minggu, 02 Juni 2024
Install Mosquito MQTT Server pada Ubuntu 22.04
Selasa, 17 Oktober 2023
PHP Array Simpan Data Pada Array Untuk Load Data Laporan Cepat
<?php | |
//INISIALISASI | |
$id_perkiraan_array = []; | |
$kode_perkiraan_array = []; | |
//INSERT | |
array_push($id_perkiraan_array, $id_perkiraan); | |
array_push($kode_perkiraan_array, $kode_perkiraan); | |
//MENCARI ID_PERKIRAAN DARI ARRAY ID BERDASARKAN PARAMETER KODE_PERKIRAAN | |
if (array_search('KODE PERKIRAAN YG DI DICARI', $kode_perkiraan_array) !== false) { | |
$id_perkiraan_PATOKAN = $id_perkiraan_array[array_search('KODE PERKIRAAN YG DI DICARI', $kode_perkiraan_array)]; | |
} else { | |
$id_perkiraan_PATOKAN = null; | |
} | |
try { | |
$db->beginTransaction(); | |
$id_barang_PATOKAN_ARRAY = []; | |
$nama_barang_PATOKAN_ARRAY = []; | |
$stmt = $db->prepare("SELECT * FROM barang"); | |
$stmt->execute(); | |
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC); | |
$total_rows = count($rows); //BANYAK DATA YANG BERHASIL DI SELECT | |
//$total_rows = $stmt->rowCount(); //BANYAK DATA YANG BERHASIL DI SIMPAN/UPDATE/DELETE | |
for ($i = 0; $i < $total_rows; $i++) { | |
$id_barang = $rows[$i]["id_barang"]; | |
$nama_barang = $rows[$i]["nama_barang"]; | |
array_push($id_barang_PATOKAN_ARRAY, $id_barang); | |
array_push($nama_barang_PATOKAN_ARRAY, $nama_barang); | |
} | |
if($total_rows == 0) { | |
throw new PDOException("TIDAK ADA DATA"); | |
} | |
$db->commit(); | |
echo '[{"hasil":1, "pesan_hasil":"SUKSES"}]'; | |
} catch (PDOException $ex) { | |
$db->rollBack(); | |
echo '[{"hasil":0, "pesan_hasil":"ERROR: ' . $ex->getMessage() . '"}]'; | |
} | |
?> |
Senin, 16 Oktober 2023
PHP Perhitungan Metode Penyusutan Aset Saldo Menurun Ganda (Double Declining)
<?php | |
$date_beli = strtotime("2019-11-01"); | |
$nominal_pembelian = 1684900; | |
$persen_penyusutan = 50; | |
$lama_tahun_penyusutan = 4; | |
$string = ""; | |
$sisa_nominal = $nominal_pembelian; | |
if (date("d", $date_beli) <= 15) { | |
$bulan_berjalan = 0; | |
} else { | |
$bulan_berjalan = 1; | |
} | |
for ($aa = 0; $aa < ($lama_tahun_penyusutan); $aa++) { | |
$penyusutan_per_tahun = ROUND((($persen_penyusutan / 100) * $sisa_nominal), 2); | |
if (($aa + 1) == $lama_tahun_penyusutan) { | |
$sisa_nominal = $sisa_nominal; | |
} else { | |
$sisa_nominal = $sisa_nominal - $penyusutan_per_tahun; | |
} | |
echo "Tahun ke-" . ($aa + 1) . ": " . $sisa_nominal . "\n"; | |
for ($bb = 0; $bb < 12; $bb++) { | |
$hitung_bulan = date('m', strtotime("+" . $bulan_berjalan . " months", $date_beli)); | |
$hitung_tahun = date('Y', strtotime("+" . $bulan_berjalan . " months", $date_beli)); | |
echo ($aa + 1) . " - " . ($bb + 1) . " - " . $hitung_bulan . "/" . $hitung_tahun . " - " . ROUND(($sisa_nominal / 12), 2) . "\n"; | |
$bulan_berjalan++; | |
} | |
} | |
?> | |
Tahun ke-1: 842450 | |
1 - 1 - 11/2019 - 70204.166666667 | |
1 - 2 - 12/2019 - 70204.166666667 | |
1 - 3 - 01/2020 - 70204.166666667 | |
1 - 4 - 02/2020 - 70204.166666667 | |
1 - 5 - 03/2020 - 70204.166666667 | |
1 - 6 - 04/2020 - 70204.166666667 | |
1 - 7 - 05/2020 - 70204.166666667 | |
1 - 8 - 06/2020 - 70204.166666667 | |
1 - 9 - 07/2020 - 70204.166666667 | |
1 - 10 - 08/2020 - 70204.166666667 | |
1 - 11 - 09/2020 - 70204.166666667 | |
1 - 12 - 10/2020 - 70204.166666667 | |
Tahun ke-2: 421225 | |
2 - 1 - 11/2020 - 35102.083333333 | |
2 - 2 - 12/2020 - 35102.083333333 | |
2 - 3 - 01/2021 - 35102.083333333 | |
2 - 4 - 02/2021 - 35102.083333333 | |
2 - 5 - 03/2021 - 35102.083333333 | |
2 - 6 - 04/2021 - 35102.083333333 | |
2 - 7 - 05/2021 - 35102.083333333 | |
2 - 8 - 06/2021 - 35102.083333333 | |
2 - 9 - 07/2021 - 35102.083333333 | |
2 - 10 - 08/2021 - 35102.083333333 | |
2 - 11 - 09/2021 - 35102.083333333 | |
2 - 12 - 10/2021 - 35102.083333333 | |
Tahun ke-3: 210612.5 | |
3 - 1 - 11/2021 - 17551.041666667 | |
3 - 2 - 12/2021 - 17551.041666667 | |
3 - 3 - 01/2022 - 17551.041666667 | |
3 - 4 - 02/2022 - 17551.041666667 | |
3 - 5 - 03/2022 - 17551.041666667 | |
3 - 6 - 04/2022 - 17551.041666667 | |
3 - 7 - 05/2022 - 17551.041666667 | |
3 - 8 - 06/2022 - 17551.041666667 | |
3 - 9 - 07/2022 - 17551.041666667 | |
3 - 10 - 08/2022 - 17551.041666667 | |
3 - 11 - 09/2022 - 17551.041666667 | |
3 - 12 - 10/2022 - 17551.041666667 | |
Tahun ke-4: 210612.5 | |
4 - 1 - 11/2022 - 17551.041666667 | |
4 - 2 - 12/2022 - 17551.041666667 | |
4 - 3 - 01/2023 - 17551.041666667 | |
4 - 4 - 02/2023 - 17551.041666667 | |
4 - 5 - 03/2023 - 17551.041666667 | |
4 - 6 - 04/2023 - 17551.041666667 | |
4 - 7 - 05/2023 - 17551.041666667 | |
4 - 8 - 06/2023 - 17551.041666667 | |
4 - 9 - 07/2023 - 17551.041666667 | |
4 - 10 - 08/2023 - 17551.041666667 | |
4 - 11 - 09/2023 - 17551.041666667 | |
4 - 12 - 10/2023 - 17551.041666667 |