63 lines
3.0 KiB
PHP
63 lines
3.0 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('documentId') }}">
|
|
<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">
|
|
<button type="button" class="btn btn-success" id="saveButton" onclick="saveLpjSederhanadanStandard()">
|
|
<span id="saveButtonText">Save</span>
|
|
</button>
|
|
@if (Auth::user()->hasAnyRole(['senior-officer', 'EO Appraisal', 'DD Appraisal']))
|
|
<a class="btn btn-info"
|
|
href="{{ route('penilai.lampiran') }}?permohonanId={{ request('permohonanId') }}&documentId={{ request('documentId') }}&inspeksiId={{ request('inspeksiId') }}&jaminanId={{ request('jaminanId') }}&statusLpj=1">
|
|
LAMPIRAN FOTO DAN DOKUMEN
|
|
</a>
|
|
|
|
<a class="btn btn-primary"
|
|
onclick="checkLaporan('{{ $permohonan->id }}', '{{ request('documentId') }}', '{{ request('inspeksiId') }}', {{ request('jaminanId') }}, )">
|
|
<i class="ki-filled ki-printer"></i> Print
|
|
</a>
|
|
@endif
|
|
</div>
|
|
</form>
|
|
@endsection
|
|
|
|
@include('lpj::surveyor.js.utils')
|