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.
84 lines
4.1 KiB
PHP
84 lines
4.1 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</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="max-width: 100%; overflow: auto;">
|
|
<table style="width:100%;" id="report">
|
|
<thead>
|
|
<tr>
|
|
<th style="font-size:12px;" colspan="6" class="text-center">KPRI WARPEKA GRESIK</th>
|
|
</tr>
|
|
<tr>
|
|
<th style="font-size:12px;" colspan="6" class="text-center">Neraca</th>
|
|
</tr>
|
|
<tr style="border-bottom: 1px solid #777;">
|
|
<th style="font-size:12px;" colspan="6" class="text-center">Periode <span class="dated" id="tgl1"></span> s/d <span id="tgl2"></span></th>
|
|
</tr>
|
|
<tr style="border-bottom: 4px double #333;">
|
|
<th style="padding:2px 3px;font-size:12px;">Kode</th>
|
|
<th style="padding:2px 3px;font-size:12px;">Aktiva</th>
|
|
<th style="padding:2px 3px;font-size:12px;">Nominal</th>
|
|
<th style="border-left: 1px solid #777; padding:2px 3px;font-size:12px;">Kode</th>
|
|
<th style="padding:2px 3px;font-size:12px;">Pasiva</th>
|
|
<th style="padding:2px 3px;font-size:12px;">Nominal</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<?php $__env->stopSection(); ?>
|
|
<?php $__env->startSection('script'); ?>
|
|
<noscript id="mainacc"><?php echo json_encode(DB::query_result_object("SELECT * FROM mainacc"),true); ?></noscript>
|
|
<script type="module" src="<?php echo e(PATH); ?>/assets-js/module-lap-neraca.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/neracakeu.blade.php ENDPATH**/ ?>
|