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.
70 lines
2.3 KiB
PHTML
70 lines
2.3 KiB
PHTML
@extends('temp.admin')
|
|
@php
|
|
use NN\Module\DB;
|
|
use NN\Module\View;
|
|
@endphp
|
|
@section("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">Posting</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">Auto jurnal</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 class="mb-3" id="dasbor">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="card" id="cardMenuArea" style="display:none;">
|
|
<div class="card-header" style='border-bottom: 1px solid #dddddd;'>
|
|
<button class="btn btn-success print-data"><i class="icon-printer"></i></button>
|
|
<input id="searchInput" type="search" style="max-width:200px; float: right;" class="form-control" placeholder="search...">
|
|
<div id="loaderSearch" class="spinner-border spinner-border-sm mt-1 mr-1" role="status" style="float:right;display:none;">
|
|
<span class="visually-hidden"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="cardMenuReport">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div id="report-r">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
</div>
|
|
@endsection
|
|
<noscript id="acc">{!! json_encode(DB::query_result_object("SELECT kode id, nama text, app, dk FROM acc")) !!}</noscript>
|
|
<noscript id="acc2">{!! json_encode(DB::query_result_object("SELECT kode id, nama text, app, dk FROM mainacc")) !!}</noscript>
|
|
<script>
|
|
const acc2 = JSON.parse(document.getElementById('acc2').innerHTML);
|
|
</script>
|
|
@section('css')
|
|
<style>
|
|
table td{
|
|
border:none;
|
|
}
|
|
</style>
|
|
@endsection
|
|
@section('script')
|
|
{!! View::sc('lap/bukubesar.js') !!}
|
|
@include("setup.positingscript")
|
|
@endsection
|
|
|
|
|