Cetaklabel/Http/Controllers/DocumentController.php

358 lines
14 KiB
PHP

<?php
namespace Modules\Cetaklabel\Http\Controllers;
use anlutro\LaravelSettings\Facades\Setting;
use App\Http\Controllers\Controller;
use Carbon\Carbon;
use Exception;
use Haruncpi\LaravelIdGenerator\IdGenerator;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\View;
use Modules\Cetaklabel\DataTables\DocumentDataTable;
use Modules\Cetaklabel\Entities\Directorat;
use Modules\Cetaklabel\Entities\Document;
use Modules\Cetaklabel\Entities\DocumentDetail;
use Modules\Cetaklabel\Entities\DocumentType;
use Modules\Cetaklabel\Entities\Job;
use Modules\Cetaklabel\Entities\SpecialCode;
use Modules\Cetaklabel\Entities\SubDirectorat;
use Modules\Cetaklabel\Entities\SubJob;
use Modules\Cetaklabel\Entities\SubSubJob;
use Modules\Cetaklabel\Http\Requests\Document\StoreDocumentRequest;
use Modules\Cetaklabel\Http\Requests\Document\UpdateDocumentRequest;
use Response;
// Reference the Dompdf namespace
use Dompdf\Dompdf;
// Reference the Options namespace
use Dompdf\Options;
// Reference the Font Metrics namespace
use Dompdf\FontMetrics;
class DocumentController extends Controller
{
public $user;
public function __construct()
{
$this->middleware(function ($request, $next) {
$this->user = Auth::guard('web')->user();
return $next($request);
});
addVendor('chained-select');
}
/**
* Display a listing of the resource.
*/
public function index(DocumentDataTable $dataTable)
{
if (is_null($this->user) || !$this->user->can('document.read')) {
abort(403, 'Sorry !! You are Unauthorized to view any master data !');
}
return $dataTable->render('cetaklabel::app.document.index');
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreDocumentRequest $request)
{
if (is_null($this->user) || !$this->user->can('document.create')) {
abort(403, 'Sorry !! You are Unauthorized to create any master data !');
}
// Validate the request...
$validated = $request->validated();
// Store the Document...
if ($validated) {
try {
$document = Document::where(['kode_odner' => $validated['kode_odner'],
'sequence_odner' => $validated['sequence_odner']
])->first();
if ($document) {
$document->update($validated);
} else {
$document = Document::create($validated);
}
$created = Document::find($document->id);
if ($request->hasFile('file')) {
$file = $request->file('file');
$path = 'uploads/' . substr($created->kode, 0, 10) . '/' . $created->sequence_odner . '/' . substr($created->kode, -5, 3);
$filename = substr($created->kode, -2, 2) . '_' . $file->getClientOriginalName();
if ($file->move(public_path($path), $filename)) {
$request['file'] = $path . '/' . $filename;
}
}
$special_code = SpecialCode::find($request->special_code_id);
$kode = IdGenerator::generate([
'table' => 'document_details',
'field' => 'kode',
'length' => 13,
'prefix' => $created->kode
]);
$detail = [
'kode' => $kode . $special_code->kode,
'no_urut' => substr($kode, -3, 3),
'document_id' => $created->id,
'document_type_id' => $request->document_type_id,
'special_code_id' => $request->special_code_id,
'tanggal_upload' => date('Y-m-d H:i:s'),
'tanggal_dokumen' => $request->tanggal_dokumen,
'nomor_dokumen' => $request->nomor_dokumen,
'perihal' => $request->perihal,
'kode_cabang' => $request->kode_cabang,
'jumlah_halaman' => $request->jumlah_halaman,
'custom_field_1' => $request->custom_field_1,
'custom_field_2' => $request->custom_field_2,
'custom_field_3' => $request->custom_field_3,
'custom_field_4' => $request->custom_field_4,
'file' => $path . '/' . $filename,
'nama_nasabah' => $request->nama_nasabah,
'no_rekening' => $request->no_rekening,
'no_cif' => $request->no_cif,
'group' => $request->group,
'kategori' => $request->kategori,
'status' => '0',
'keterangan' => ''
];
DocumentDetail::create($detail);
return redirect()->route('document.index')->with('success', 'Document created successfully.');
} catch (Exception $e) {
return redirect()->route('document.index')->with('error', 'Document created failed, ' . $e->getMessage());
}
}
return false;
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
if (is_null($this->user) || !$this->user->can('document.create')) {
abort(403, 'Sorry !! You are Unauthorized to create any master data !');
}
$directorat = Directorat::all();
$special_code = SpecialCode::all();
$document_type = DocumentType::all();
$setting = Setting::all();
return view('cetaklabel::app.document.create', compact('directorat', 'special_code', 'document_type','setting'));
}
/**
* Display the specified resource.
*/
public function show(Document $documents)
{
if (is_null($this->user) || !$this->user->can('document.read')) {
abort(403, 'Sorry !! You are Unauthorized to view any master data !');
}
abort(404, 'Page not found !');
}
/**
* Show the form for editing the specified resource.
*/
public function edit($id)
{
if (is_null($this->user) || !$this->user->hasRole('otorisator')){
abort(403, 'Sorry !! You are Unauthorized to update any master data !');
}
$document = DocumentDetail::with('document')->find($id);
if ($document->status != '0') {
abort(403, 'Sorry !! This Document has been authorized !');
}
$document = DocumentDetail::with('document')->find($id);
return view('cetaklabel::app.document.edit', compact('document'));
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request)
{
if (is_null($this->user) || !$this->user->hasRole('otorisator')) {
abort(403, 'Sorry !! You are Unauthorized to update any master data !');
}
try {
$data = [
'status' => $request->keterangan =="" ? '1' : '3',
'keterangan' => $request->keterangan ?? null,
'approved_at' => date('Y-m-d H:i:s'),
'approved_by' => $this->user->id
];
$documents = DocumentDetail::find($request->id);
$documents->update($data);
echo json_encode(['status' => 'success', 'message' => 'Document updated successfully.']);
} catch (Exception $e) {
echo json_encode(['status' => 'error', 'message' => 'Document updated failed.']);
}
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Request $request)
{
if (is_null($this->user) || !$this->user->can('document.delete')) {
abort(403, 'Sorry !! You are Unauthorized to delete any master data !');
}
// Delete Detail Document First...
$document_details = DocumentDetail::find($request->document);
if($document_details->status == 1){
$document_details->update(['status' => '6','keterangan' => $request->keterangan]);
echo json_encode(['status' => 'success', 'message' => 'Document menunggu Approval untuk di Hapus.']);
return;
}
if($document_details->status == 6){
$document_details->update(['status' => '7']);
echo json_encode(['status' => 'success', 'message' => 'Document menunggu Approval Tingkat 2 untuk di Hapus.']);
return;
}
if($document_details->status == 7){
$document_details->update(['status' => '8']);
$document_details->delete();
echo json_encode(['status' => 'success', 'message' => 'Document deleted successfully.']);
}
}
public function download(Request $request)
{
if (is_null($this->user) || !$this->user->can('document.read')) {
abort(403, 'Sorry !! You are Unauthorized to download any master data !');
}
$document = DocumentDetail::find($request->id);
if($document->status == 1){
$document->update(['status' => '4']);
echo json_encode(['status' => 'success', 'message' => 'Document menunggu Approval untuk di Cetak.']);
return;
}
if($document->status == 4){
$document->update(['status' => '5']);
echo json_encode(['status' => 'success', 'message' => 'Approval Berhasil.']);
return;
}
if($document->status == 5){
$document->update(['status' => '1']);
$document->save();
$filepath = public_path($document->file);
return Response::download($filepath);
}
}
public function aktif(Request $request)
{
$document = DocumentDetail::find($request->id);
if($document->aktif == 1 && $document->status != 9){
$document->update(['status' => '9','keterangan' => $request->keterangan]);
echo json_encode(['status' => 'success', 'message' => 'Document menunggu Approval untuk di Nonaktifkan.']);
return;
}
if($document->aktif == 1 && $document->status == 9){
$document->update(['aktif' => '0','status' => '1']);
echo json_encode(['status' => 'success', 'message' => 'Document Berhasil di Nonaktifkan.']);
return;
}
}
public function label(Request $request)
{
if (is_null($this->user) || !$this->user->can('document.read')) {
abort(403, 'Sorry !! You are Unauthorized to download any master data !');
}
$document_detail = DocumentDetail::with(['document'])->find($request->id);
$document = Document::with(['document_details'])->where(['kode_dus' => $document_detail->document->kode_dus,
'sequence_dus' => $document_detail->document->sequence_dus
])->first();
$start = DocumentDetail::where('document_id', $document_detail->document_id)->orderBy('tanggal_dokumen', 'asc')->first()->tanggal_dokumen;
$last = DocumentDetail::where('document_id', $document_detail->document_id)->orderBy('tanggal_dokumen', 'desc')->first()->tanggal_dokumen;
$start = Carbon::create($start);
$start = $start->isoFormat('DD MMMM Y');
$last = Carbon::create($last);
$last = $last->isoFormat('DD MMMM Y');
activity()
->performedOn($document)
->causedBy(Auth::user())
->withProperties($document)
->log('Cetak Label Dus');
return view('cetaklabel::app.document.label', compact('document_detail', 'start', 'last', 'document'));
}
public function odner(Request $request)
{
if (is_null($this->user) || !$this->user->can('document.read')) {
abort(403, 'Sorry !! You are Unauthorized to download any master data !');
}
$document_detail = DocumentDetail::with(['document'])->find($request->id);
$document = Document::with(['document_details'])->where(['kode_odner' => $document_detail->document->kode_odner,
'sequence_odner' => $document_detail->document->sequence_odner
])->first();
$start = DocumentDetail::where('document_id', $document_detail->document_id)->orderBy('tanggal_dokumen', 'asc')->first()->tanggal_dokumen;
$last = DocumentDetail::where('document_id', $document_detail->document_id)->orderBy('tanggal_dokumen', 'desc')->first()->tanggal_dokumen;
$start = Carbon::create($start);
$start = $start->isoFormat('DD MMMM Y');
$last = Carbon::create($last);
$last = $last->isoFormat('DD MMMM Y');
activity()
->performedOn($document)
->causedBy(Auth::user())
->withProperties($document)
->log('Cetak Label Odner');
return view('cetaklabel::app.document.odner', compact('document_detail', 'start', 'last', 'document'));
}
}