Enhance pendatang module with existing resident selection, standardize UI gender display to LAKI-LAKI/PEREMPUAN, add Jenis Kelamin columns to pindah/mendu tables, fix NIK display in reports, and implement security improvements

This commit is contained in:
2026-01-22 15:52:22 +08:00
parent 51451824ba
commit 19cc3244de
36 changed files with 648 additions and 434 deletions

View File

@@ -17,7 +17,7 @@
<th>No</th>
<th>NIK</th>
<th>Nama</th>
<th>JK</th>
<th>Jenis Kelamin</th>
<th>Alamat</th>
<th>No KK</th>
<th>Aksi</th>
@@ -59,7 +59,15 @@
<?php echo $data['nama']; ?>
</td>
<td>
<?php echo $data['jekel']; ?>
<?php
if ($data['jekel'] == 'LK') {
echo 'LAKI-LAKI';
} elseif ($data['jekel'] == 'PR') {
echo 'PEREMPUAN';
} else {
echo $data['jekel'];
}
?>
</td>
<td>
<?php echo $data['desa']; ?>