| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/spp.raudhatulfalah.sch.id/tes/ |
Upload File : |
<?php
session_start();
error_reporting(0);
include "config/koneksi.php";
include "config/library.php";
include "config/fungsi_indotgl.php";
include "config/fungsi_seo.php";
if (isset($_SESSION[id])) {
if ($_SESSION['level'] == 'admin') {
$iden = mysql_fetch_array(mysql_query("SELECT * FROM users where username='$_SESSION[id]'"));
$nama = $iden['nama_lengkap'];
$level = 'Administrator';
$foto = 'dist/img/user.png';
}
$idt = mysql_fetch_array(mysql_query("SELECT * FROM identitas "));
$ta = mysql_fetch_array(mysql_query("SELECT * FROM tahun_ajaran where idTahunAjaran='$_GET[tahun]'"));
$kls = mysql_fetch_array(mysql_query("SELECT * FROM kelas_siswa where idKelas='$_GET[kelas]'"));
$dBayar = mysql_fetch_array(mysql_query("SELECT * FROM jenis_bayar WHERE idJenisBayar='$_GET[jenisBayar]'"));
?>
<!DOCTYPE html>
<html>
<head>
<title>Cetak - Laporan Pembayaran Siswa</title>
<link rel="stylesheet" href="bootstrap/css/printer.css">
</head>
<body>
<?php
$tahun = $_GET['tahun'];
$jenis = $_GET['jenisBayar'];
$kelas = $_GET['kelas'];
//tagihan bebas
$sqlTagihanBebas = mysql_query("SELECT
tagihan_bebas.*,
jenis_bayar.idPosBayar,
jenis_bayar.idTahunAjaran,
jenis_bayar.nmJenisBayar,
jenis_bayar.tipeBayar,
siswa.nisSiswa,
siswa.nisnSiswa,
siswa.nmSiswa,
siswa.jkSiswa,
siswa.agamaSiswa,
siswa.idKelas,
siswa.statusSiswa,
tahun_ajaran.nmTahunAjaran,
kelas_siswa.nmKelas
FROM
tagihan_bebas
INNER JOIN jenis_bayar ON tagihan_bebas.idJenisBayar = jenis_bayar.idJenisBayar
INNER JOIN siswa ON tagihan_bebas.idSiswa = siswa.idSiswa
INNER JOIN tahun_ajaran ON jenis_bayar.idTahunAjaran = tahun_ajaran.idTahunAjaran
INNER JOIN kelas_siswa ON tagihan_bebas.idKelas = kelas_siswa.idKelas
INNER JOIN pos_bayar ON jenis_bayar.idPosBayar = pos_bayar.idPosBayar
WHERE tagihan_bebas.idJenisBayar='$jenis' AND siswa.idKelas='$kelas' AND jenis_bayar.idTahunAjaran='$tahun' ORDER BY tagihan_bebas.idTagihanBebas ASC");
?>
<!-- Box Data -->
<div class="col-xs-12">
<table width="100%">
<tr>
<td width="100px" align="left"><img src="./gambar/logo/<?php echo $idt['logo_kiri']; ?>" height="60px"></td>
<td valign="top">
<h3 align="center" style="margin-bottom:8px ">
<?php echo $idt['nmSekolah']; ?>
</h3>
<center><?php echo $idt['alamat']; ?></center>
</td>
<td width="100px" align="right"><img src="./gambar/logo/<?php echo $idt['logo_kanan']; ?>" height="60px"></td>
</tr>
</table>
<hr>
<h3 align="center">LAPORAN PEMBAYARAN <?php echo strtoupper($dBayar['nmJenisBayar']); ?></h3>
<div class="box box-info box-solid">
<div class="box-header with-border">
<h3 class="box-title">KELAS : <?php echo $kls['nmKelas']; ?></h3>
</div><!-- /.box-header -->
<div class="box-body">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>No.</th>
<th>NIS</th>
<th>Nama Siswa</th>
<th>Total Tagihan</th>
<th>Total Bayar</th>
<th>Tunggakan</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<?php
$no = 1;
while ($rtb = mysql_fetch_array($sqlTagihanBebas)) {
$qBayar = mysql_query("select sum(jumlahBayar) as totalDibayar from tagihan_bebas_bayar
where idTagihanBebas='$rtb[idTagihanBebas]'");
$dtBayar = mysql_fetch_array($qBayar);
if ($rtb['statusBayar'] == '0') {
$status = "Belum Bayar";
} elseif ($rtb['statusBayar'] == '1') {
$status = "Belum Lunas";
} elseif ($rtb['statusBayar'] == '2') {
$status = "Lunas";
}
echo "<tr>
<td>$no</td>
<td>$rtb[nisSiswa]</td>
<td>$rtb[nmSiswa]</td>
<td>" . buatRp($rtb['totalTagihan']) . "</td>
<td>" . buatRp($dtBayar['totalDibayar']) . "</td>
<td>" . buatRp($rtb['totalTagihan'] - $dtBayar['totalDibayar']) . "</td>
<td>$status</td>
</tr>";
$no++;
}
?>
</tbody>
</table>
</div><!-- /.box-body -->
</div><!-- /.box -->
</div>
<br />
<table width="100%">
<tr>
<td align="center"></td>
<td align="center" width="400px">
<?php echo $idt['kabupaten']; ?>, <?php echo tgl_raport(date("Y-m-d")); ?>
<br />Bendahara,<br /><br /><br /><br />
<b><u><?php echo $idt['nmBendahara']; ?></u><br /><?php echo $idt['nipBendahara']; ?></b>
</td>
</tr>
</table>
</body>
<script>
window.print()
</script>
</html>
<?php
} else {
include "login.php";
}
?>