| 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/mts/ |
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"));
$dBayar = mysql_fetch_array(mysql_query("SELECT * FROM jenis_bayar WHERE idJenisBayar='$_GET[jenisBayar]'"));
?>
<!DOCTYPE html>
<html>
<head>
<title>Cetak - Rekapitulasi Pembayaran Siswa</title>
<link rel="stylesheet" href="bootstrap/css/printer.css">
</head>
<body>
<?php
$tgl1 = $_GET['tgl1'];
$tgl2 = $_GET['tgl2'];
?>
<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">
REKAPITULASI PENGELUARAN
</h3>
<hr />
<div class="box box-info box-solid">
<div class="box-header with-border">
<h3 class="box-title">Tanggal : <?php echo tgl_raport($tgl1); ?> s/d <?php echo tgl_raport($tgl2); ?></h3>
</div><!-- /.box-header -->
<div class="box-body">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th width="40px">No.</th>
<th>Tanggal</th>
<th>Uraian (Keterangan)</th>
<th>Pengeluaran</th>
</tr>
</thead>
<tbody>
<?php
$no = 1;
$total = 0;
$sqlJU = mysql_query("SELECT * FROM jurnal_umum WHERE pengeluaran!=0 AND DATE(tgl) BETWEEN '$tgl1' AND '$tgl2' ORDER BY tgl ASC");
while ($d = mysql_fetch_array($sqlJU)) {
echo "<tr>
<td align='center'>$no</td>
<td align='center'>" . tgl_raport($d['tgl']) . "</td>
<td>$d[ket]</td>
<td align='right'>" . buatRp($d['pengeluaran']) . "</td>
</tr>";
$no++;
$total += $d['pengeluaran'];
}
?>
<tr>
<td colspan="3" align="center">Total Pengeluaran</td>
<td align="right"><?php echo buatRp($total); ?></td>
</tr>
</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";
}
?>