You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.7 KiB
PHP
83 lines
3.7 KiB
PHP
<?php
|
|
use NN\CookieHandler as Cookie;
|
|
use NN\Module\DB;
|
|
use NN\Module\View;
|
|
?>
|
|
<?php $__env->startSection("content"); ?>
|
|
|
|
<div class="content-header row">
|
|
<div class="content-header-left col-md-6 col-12 mb-2 breadcrumb-new">
|
|
<h3 class="content-header-title mb-0 d-inline-block">Laporan</h3>
|
|
<div class="row breadcrumbs-top d-inline-block">
|
|
<div class="breadcrumb-wrapper col-12">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item active" id="sublap">Neraca Saldo</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content-header-right col-md-6 col-12">
|
|
<div class="btn-group float-md-right">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content-body">
|
|
<section id="dasbor">
|
|
<div class="row">
|
|
<div class="col-12 col-sm-12 col-lg-3">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="mb-1" id="filterpath"></div>
|
|
<div style="width:calc(100% - 5px);display:grid;grid-template-columns: 50% 50%;grid-gap:5px;">
|
|
<button id="print" class="btn w-100 btn-success"><i class="icon-printer"></i> Cetak Laporan</button>
|
|
<button id="exportExcel" class="btn w-100 btn-success"><i class="la la-file-excel-o"></i> Export Excel</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-sm-12 col-lg-9">
|
|
<div class="card" id="cardMenuReport">
|
|
<div class="card-content">
|
|
<div class="card-body">
|
|
|
|
<div style="clear:both;"></div>
|
|
<div style="max-width: 100%; overflow: auto;">
|
|
<table style="width:100%;" id="report">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="5" class="text-center">Neraca Saldo</th>
|
|
</tr>
|
|
<tr style="border-bottom: 1px solid #777;">
|
|
<th colspan="5" class="text-center">Periode <span id="tgl1"></span> s/d <span id="tgl2"></span></th>
|
|
</tr>
|
|
<tr style="border-bottom: 4px double #333;">
|
|
<th>Kode</th>
|
|
<th>Nama Akun</th>
|
|
<th style="text-align: center;">D/K</th>
|
|
<th style="text-align: right;">Debit</th>
|
|
<th style="text-align: right;">Kredit</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php $__env->startSection('script'); ?>
|
|
<script type="module" src="<?php echo e(PATH); ?>/assets-js/module-lap-saldo.js?v=<?php echo e(View::filetimes()); ?>"></script>
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
|
|
|
|
<?php echo $__env->make('temp.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /DATA/AppData/warpeka/views/admin/laporan/neracasaldo.blade.php ENDPATH**/ ?>
|