copy dari repo om Irfan

This commit is contained in:
2026-06-13 16:02:07 +10:00
commit db327c0305
5376 changed files with 2770667 additions and 0 deletions
@@ -0,0 +1,414 @@
<!doctype html>
<html class="fixed sidebar-left-collapsed">
<head>
<!-- Basic -->
<meta charset="UTF-8" http-equiv="refresh" content="600">
<title>INFORMASI | KEUANGAN</title>
<meta name="keywords" content="HTML5 Admin Template" />
<meta name="description" content="Porto Admin - Responsive HTML5 Template">
<meta name="author" content="okler.net">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Vendor CSS -->
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/font-awesome/css/font-awesome.css" />
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/magnific-popup/magnific-popup.css" />
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/bootstrap-datepicker/css/datepicker3.css" />
<!-- Specific Page Vendor CSS -->
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/select2/select2.css" />
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/jquery-datatables-bs3/assets/css/datatables.css" />
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/pnotify/pnotify.custom.css" />
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/vendor/bootstrap-multiselect/bootstrap-multiselect.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/stylesheets/theme.css" />
<!-- Skin CSS -->
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/stylesheets/skins/default.css" />
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="<?php echo base_url('') ?>assets/stylesheets/theme-custom.css">
<!-- Head Libs -->
<script src="<?php echo base_url('') ?>assets/vendor/modernizr/modernizr.js"></script>
</head>
<script src="<?= base_url() ?>assets/bower_components/jquery/jquery-3.3.1.min.js"></script>
<script src="<?= base_url() ?>assets/bower_components/sweetalert2/sweetalert2.all.min.js"></script>
<script type="text/javascript">
let base_url = '<?= base_url() ?>';
</script>
<body>
<section class="body">
<!-- start: header -->
<?php $this->load->view('template/header'); ?>
<!-- end: header -->
<div class="inner-wrapper">
<!-- start: sidebar -->
<?php $this->load->view('template/sidebar'); ?>
<!-- end: sidebar -->
<section role="main" class="content-body">
<header class="page-header">
<h2><strong>Buku Kasbank Harian</strong></h2>
<div class="right-wrapper pull-right">
<ol class="breadcrumbs">
<li>
<a href="<?php echo base_url() ?>index.php">
<i class="fa fa-home"></i>
</a>
</li>
<li><span>Kas</span></li>
</ol>
<a class="sidebar-right-toggle" data-open="sidebar-right"><i class="fa fa-chevron-left"></i></a>
</div>
</header>
<!-- start: page -->
<div class="col-md-12">
<section class="panel panel-featured panel-featured-dark">
<header class="panel-heading">
<div class="panel-actions">
<a onclick="closeTab1()"><strong>Close </strong><i class="fa fa-times"></i></a>
</div>
<h2 class="panel-title"><strong>KAS <?=$kode_kas?> | <?=$tgl_view?> <i class="fa fa-search"></i></strong></h2>
</header>
<div class="panel-body">
<div class="row">
<div class="form-group">
<div class="col-md-12 text-right">
<div class="btn-group">
<?php if ($debet_sk==NULL) {
$debet_sk = "Rp 0.00";
$kredit_sk = "Rp 0.00";
} else {
$debet_sk = number_format($debet_sk,2);
$debet_sk = "Rp $debet_sk";
$kredit_sk = number_format($kredit_sk,2);
$kredit_sk = "Rp $kredit_sk"; } ?>
<button type="button" class="btn btn-default text-primary"><strong>DEBET <?=$debet_sk?></strong></button>
<button type="button" class="btn btn-default text-danger"><strong>KREDIT <?=$kredit_sk?></strong></button><br></br>
</div>
</div>
</div>
</div>
<table class="table table-bordered table-striped mb-none" id="datatable-default">
<thead>
<th class="center default">No</th>
<th class="default">Kode</th>
<th class="default">Tanggal Input</th>
<th class="default">Debet</th>
<th class="default">Kredit</th>
<th class="default">Keterangan</th>
</thead>
<tbody>
<?php
if (is_array($keuangan) || is_object($keuangan)) {
$no = 1;
foreach ($keuangan as $key) { ?>
<tr>
<td class="center"><?= $no; ?></td>
<?php $kode_kb = "BBK/"; ?>
<?php if ($key['DEBET_SK']=="0.00" AND $key['SETDATA_ID']==NULL) { ?>
<td class="text-danger"><strong><?= $key['KODE_KB']; ?></strong></td>
<?php } else if ($key['KREDIT_SK']=="0.00" AND $key['SETDATA_ID']==NULL) { ?>
<td class="text-primary"><strong><?= $key['KODE_KB']; ?></strong></td>
<?php } else if ($key['SETDATA_ID']!=NULL) { ?>
<td class="text-dark"><strong><?= $key['KODE_SETDATA']; ?></strong></td>
<?php } ?>
<td><?= $key['TGLKAS']; ?></td>
<?php $debet_sk = $key['DEBET_SK'];
$debet_sk = number_format($debet_sk,2);
$debet_sk = "Rp $debet_sk";
$kredit_sk = $key['KREDIT_SK'];
$kredit_sk = number_format($kredit_sk,2);
$kredit_sk = "Rp $kredit_sk";?>
<td><?= $debet_sk; ?></td>
<td><?= $kredit_sk; ?></td>
<?php if (strpos($key['KODE_KB'],$kode_kb)!== FALSE) { ?>
<td class="text-quartenary"><strong><?= $key['KET_DKB']; ?></strong></td>
<?php } else { ?>
<td><?= $key['KET_DKB']; ?></td>
<?php } ?>
</tr>
<?php $no++;
}
} ?>
</tbody>
</table>
</div>
</section>
</div>
<!-- end: page -->
</section>
<?php $this->load->view('template/sidebar_right'); ?>
<!-- Vendor -->
<script src="<?php echo base_url('') ?>assets/vendor/jquery/jquery.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/jquery-browser-mobile/jquery.browser.mobile.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/bootstrap/js/bootstrap.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/nanoscroller/nanoscroller.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/magnific-popup/magnific-popup.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/jquery-placeholder/jquery.placeholder.js"></script>
<!-- Specific Page Vendor -->
<script src="<?php echo base_url('') ?>assets/vendor/select2/select2.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/jquery-datatables/media/js/jquery.dataTables.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/jquery-datatables-bs3/assets/js/datatables.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/bootstrap-multiselect/bootstrap-multiselect.js"></script>
<!-- Specific Page Vendor -->
<script src="<?php echo base_url('') ?>assets/vendor/pnotify/pnotify.custom.js"></script>
<!-- Theme Base, Components and Settings -->
<script src="<?php echo base_url('') ?>assets/javascripts/theme.js"></script>
<!-- Theme Custom -->
<script src="<?php echo base_url('') ?>assets/javascripts/theme.custom.js"></script>
<!-- Theme Initialization Files -->
<script src="<?php echo base_url('') ?>assets/javascripts/theme.init.js"></script>
<!-- Examples -->
<!-- Examples -->
<script src="<?php echo base_url('') ?>assets/javascripts/tables/examples.datatables.default.js"></script>
<script src="<?php echo base_url('') ?>assets/javascripts/tables/examples.datatables.row.with.details.js"></script>
<script src="<?php echo base_url('') ?>assets/javascripts/tables/examples.datatables.tabletools.js"></script>
<!-- <script src="<?php echo base_url('') ?>assets/javascripts/tables/examples.datatables.editable.js"></script> -->
<script src="<?php echo base_url('') ?>assets/javascripts/ui-elements/examples.notifications.js"></script>
<script src="<?php echo base_url('') ?>assets/vendor/jquery-validation/jquery.validate.js"></script>
<script src="<?php echo base_url('') ?>assets/javascripts/forms/examples.validation.js"></script>
<!-- notif -->
<?php $this->load->view('template/notification'); ?>
<script>
$(document).ready(function() {
<?php if ($this->session->flashdata('success')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data berhasil <?= $this->session->flashdata('success'); ?>.',
type: 'success',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('failed')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data gagal <?= $this->session->flashdata('failed'); ?>, hubungi Administrator',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('latest')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Menu tidak valid, silahkan refresh Browser.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('data_lock')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data berhasil <?= $this->session->flashdata('data_lock'); ?>. Kembali ke Menu Awal.',
type: 'warning',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('data_lock_all')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data berhasil <?= $this->session->flashdata('data_lock'); ?> semua. Kembali ke Menu Awal.',
type: 'warning',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('not_zero_negative')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Nilai tidak valid, silahkan Check kembali.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('not_valid')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data utama berubah, kembali ke Menu Awal.',
type: 'warning',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('data_used')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data terpakai, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('data_used_pka')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data terpakai Piutang Karyawan, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('data_used_hpa')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data terpakai Kasbank Hutang Pajak, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('date_locked')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data sudah berbeda Bulan, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('fee_pda_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Nilai Fee melebihi sisa Piutang, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('inventaris_null_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Nilai Inventaris kosong, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('inventaris_penyusutan_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Nilai Penyusutan melebihi Nilai Inventaris, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('kendaraan_null_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Nilai Kendaraan kosong, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('kendaraan_penyusutan_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Nilai Penyusutan melebihi Nilai Kendaraan, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('ruko_penyusutan_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Nilai Penyusutan melebihi Nilai Ruko, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('ruko_null_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Nilai Ruko Mangga Dua kosong, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('dpj_pelanggan_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data Pelanggan DP Penjualan tidak sesuai, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('dpj_nilai_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Sisa Piutang tidak sesuai dengan Nilai DP, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('dpb_supplier_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Data Supplier DP Pembelian tidak sesuai, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
<?php if ($this->session->flashdata('dpb_nilai_error')) { ?>
new PNotify({
title: 'Notifikasi',
text: 'Sisa Hutang tidak sesuai dengan Nilai DP, proses dihentikan.',
type: 'error',
shadow: true
});
<?php } ?>
});
function DisableButton(b) {
b.disabled = true;
b.value = 'Submitting';
b.form.submit();
}
function closeTab1() {
window.close('dataBukuKB_Keuangan_A1/1', '_blank');
}
</script>
</body>
</html>