72 lines
3.7 KiB
PHP
72 lines
3.7 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumbs')
|
|
{{ Breadcrumbs::render(request()->route()->getName()) }}
|
|
@endsection
|
|
|
|
@section('content')
|
|
<style>
|
|
.list-decimal {
|
|
list-style-type: decimal;
|
|
margin: 0;
|
|
padding-left: 1.25rem;
|
|
line-height: 1.6;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 16px;
|
|
color: #333333;
|
|
}
|
|
|
|
.list-decimal li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
</style>
|
|
@include('lpj::assetsku.includenya')
|
|
<form id="form-lpj" method="post" class="w-full grid gap-5">
|
|
<input type="hidden" name="permohonan_id" value="{{ $permohonan->id }}">
|
|
<input type="hidden" name="dokument_id" value="{{ request('dokument') }}">
|
|
<input type="hidden" name="nomor_registrasi" value="{{ $permohonan->nomor_registrasi }}">
|
|
<input type="hidden" id="lpj-data" value="{{ json_encode($lpjData ?? []) }}" />
|
|
@include('lpj::component.form-penilai')
|
|
<div class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5" style="margin-top: 20px">
|
|
<label class="form-label lg:form-label max-w-56 ">DISCLAIMER
|
|
</label>
|
|
<div class="input-group w-full flex gap-2">
|
|
<ol class="list-decimal pl-5 space-y-2">
|
|
<li>PENILAIAN INI DIBUAT BERDASARKAN ATURAN YANG BERLAKU DI SUBDIT APPRAISAL</li>
|
|
<li>LAPORAN INI DIBUAT BERDASARKAN DATA FOTOCOPY DOKUMEN YANG DITERIMA PENILAI DENGAN ASUMSI BAHWA DATA
|
|
TERSEBUT SESUAI DENGAN DOKUMEN ASLINYA</li>
|
|
<li>PENILAI TIDAK MELAKUKAN PEMBUKTIAN LEBIH RINCI ATAU PENGAKUAN TERTULIS DARI PIHAK YANG DITEMUI SAAT
|
|
PENILAIAN, ATAS INFORMASI YANG DIBERIKAN SECARA LISAN SEHUBUNGAN DENGAN IDENTITAS DIRI DAN HUBUNGAN
|
|
DI ANTARA PIHAK TERKAIT SAAT MELAKUKAN INSPEKSI OBJEK YANG DINILAI</li>
|
|
<li>LAPORAN INI DIGUNAKAN HANYA UNTUK KEPENTINGAN INTERNAL DAN DILARANG MENYEBARKAN KEPADA PIHAK KETIGA
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<div class="flex card-footer justify-end gap-5">
|
|
@if (Auth::user()->hasAnyRole(['senior-officer', 'surveyor', 'administrator']))
|
|
<button type="button" class="btn btn-primary" id="saveButton" onclick="saveLpjSederhanadanStandard()" {{ $permohonan->status == 'proses-paparan' || $permohonan->status == 'proses-laporan' && Auth::user()->hasAnyRole(['surveyor']) ? 'disabled' : '' }}>
|
|
<i class="ki-filled ki-save-2"></i>
|
|
<span id="saveButtonText">Simpan</span>
|
|
</button>
|
|
@endif
|
|
@if (Auth::user()->hasAnyRole(['senior-officer', 'EO Appraisal', 'DD Appraisal', 'administrator']))
|
|
<a class="btn btn-info"
|
|
href="{{ route('penilai.lampiran') }}?permohonanId={{ $permohonan->id }}&documentId={{ request('dokument') }}&jaminanId={{ request('jaminanId') }}&statusLpj=1">
|
|
Lampiran Foto dan Dokumen
|
|
</a>
|
|
<a href="{{ route('surveyor.print_out_inspeksi', ['permohonan_id' => $permohonan->id, 'dokument_id' => request('dokument'), 'jenis_jaminan_id' => request('jaminanId')]) }}" class="btn btn-light"
|
|
>
|
|
<i class="ki-filled ki-printer"></i> Cetak Hasil Inspeksi
|
|
</a>
|
|
<a class="btn btn-success"
|
|
onclick="checkLaporan('{{ $permohonan->id }}', '{{ request('documentId') }}', {{ request('jaminanId') }}, 0)">
|
|
<i class="ki-filled ki-printer"></i> Cetak Laporan
|
|
</a>
|
|
@endif
|
|
</div>
|
|
</form>
|
|
@endsection
|
|
|
|
@include('lpj::surveyor.js.utils')
|