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.
49 lines
1.1 KiB
PHTML
49 lines
1.1 KiB
PHTML
@extends('temp.admin')
|
|
@php
|
|
use NN\Module\View;
|
|
use NN\Module\DB;
|
|
@endphp
|
|
@section("content")
|
|
|
|
@include('admin.tsimpan.temp.ang')
|
|
|
|
<noscript id="jpinjam">{!! json_encode(DB::query_result_object("SELECT kode id, nama text FROM jpinjam WHERE typetransaksi = 'angsuran'")) !!}</noscript>
|
|
<noscript id="anggota">{!! json_encode(DB::query_result_object("
|
|
SELECT
|
|
kode id
|
|
, nama text
|
|
, golkar
|
|
, nip
|
|
, unitkerja
|
|
, golkar golongan
|
|
, gaji
|
|
, status
|
|
FROM anggota
|
|
")) !!}</noscript>
|
|
<noscript id="nipdata">{!! json_encode(DB::query_result_object("
|
|
SELECT kode id, nip text FROM anggota
|
|
")) !!}</noscript>
|
|
|
|
@endsection
|
|
|
|
@section('script')
|
|
{!! View::jsm('ts/angsuran.js') !!}
|
|
@endsection
|
|
@section('css')
|
|
<div class="d-faktur" style="display:none;">
|
|
@include('admin.tsimpan.fkt')
|
|
</div>
|
|
@include('temp.modalfull')
|
|
<style>
|
|
.dataTable tr td:nth-child(1){
|
|
white-space: nowrap;
|
|
max-width: 120px;
|
|
}
|
|
.dataTable tr td:nth-child(2){
|
|
white-space: nowrap;
|
|
}
|
|
.dataTable tr td{
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|
|
@endsection |