|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Dompdf\Dompdf;
|
|
|
|
use Dompdf\Options;
|
|
|
|
use App\Models\Peti;
|
|
|
|
use App\Models\Customer;
|
|
|
|
use App\Models\Type_peti;
|
|
|
|
use Mockery\Matcher\Type;
|
|
|
|
use App\Models\m_warehouse;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
use SimpleSoftwareIO\QrCode\Facades\QrCode;
|
|
|
|
|
|
|
|
class PetiController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'peti' => Peti::all(),
|
|
|
|
'active' => 'menu-peti',
|
|
|
|
];
|
|
|
|
return view('dashboard.Master_Data.Manajemen_Peti.Peti.index', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new resource.
|
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'typepeti' => Type_peti::all(),
|
|
|
|
'customer' => Customer::all(),
|
|
|
|
'warehouse' => m_warehouse::all(),
|
|
|
|
'active' => 'menu-peti',
|
|
|
|
];
|
|
|
|
return view('dashboard.Master_Data.Manajemen_Peti.Peti.create', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created resource in storage.
|
|
|
|
*/
|
|
|
|
public function store(Request $request)
|
|
|
|
{
|
|
|
|
// dd($request->all());
|
|
|
|
$request->validate([
|
|
|
|
'tipe_peti_id' => 'required',
|
|
|
|
'warna' => 'required',
|
|
|
|
'customer_id' => 'required',
|
|
|
|
'warehouse_id' => 'required',
|
|
|
|
'jumlah' => 'required|numeric|min:1',
|
|
|
|
'date_pembuatan' => 'required',
|
|
|
|
'status_disposal' => 'nullable',
|
|
|
|
'packing_no' => 'nullable',
|
|
|
|
'fix_lot' => 'nullable',
|
|
|
|
]);
|
|
|
|
// dd($request);
|
|
|
|
try {
|
|
|
|
$currenttype = Auth::user();
|
|
|
|
|
|
|
|
for ($i = 0; $i < $request->jumlah; $i++) {
|
|
|
|
$validatedData = $request->except('_token');
|
|
|
|
|
|
|
|
// Ambil nomor urutan otomatis untuk packing_no
|
|
|
|
$latestPackingNo = Peti::max('packing_no');
|
|
|
|
$nextPackingNo = $latestPackingNo + 1;
|
|
|
|
$validatedData['packing_no'] = $nextPackingNo;
|
|
|
|
|
|
|
|
$code_customer = Customer::where('id', $validatedData['customer_id'])->first()->code_customer;
|
|
|
|
$type = Type_peti::where('id', $validatedData['tipe_peti_id'])->first()->type;
|
|
|
|
$size_peti = Type_peti::where('id', $validatedData['tipe_peti_id'])->first()->size_peti;
|
|
|
|
$lot_no = Customer::where('id', $validatedData['customer_id'])->first()->lot_no;
|
|
|
|
$packing_no = $validatedData['packing_no'];
|
|
|
|
|
|
|
|
// Generate nilai 'fix_lot' sesuai format yang diinginkan
|
|
|
|
$fixLot = $code_customer . $type . $size_peti . $lot_no . $packing_no;
|
|
|
|
$validatedData['fix_lot'] = $fixLot;
|
|
|
|
|
|
|
|
$validatedData['created_by'] = $currenttype->fullname; // Menggunakan nama pengguna sebagai created_by
|
|
|
|
$validatedData['updated_by'] = $currenttype->fullname; // Menggunakan nama pengguna sebagai updated_by
|
|
|
|
|
|
|
|
// Buat entri peti baru
|
|
|
|
Peti::create($validatedData);
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect()->route('dashboard.peti.index')->with('success', 'Data peti berhasil ditambahkan');
|
|
|
|
} catch (\Throwable $th) {
|
|
|
|
return redirect()->back()->with('error', 'Data peti Gagal Ditambah.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*/
|
|
|
|
public function show($id)
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'peti' => Peti::findOrFail($id),
|
|
|
|
'typepeti' => Type_peti::all(),
|
|
|
|
'customer' => Customer::all(),
|
|
|
|
'warehouse' => m_warehouse::all(),
|
|
|
|
'active' => 'menu-peti',
|
|
|
|
];
|
|
|
|
|
|
|
|
$petiqr = Peti::find($id);
|
|
|
|
|
|
|
|
$qrcode = base64_encode(QrCode::format('svg')->size(150)->errorCorrection('H')->generate(
|
|
|
|
'Nama Customer : ' .
|
|
|
|
$petiqr->customer->name .
|
|
|
|
"\n" .
|
|
|
|
'Code Customer : ' .
|
|
|
|
$petiqr->customer->code_customer .
|
|
|
|
"\n" .
|
|
|
|
'Type Peti : ' .
|
|
|
|
$petiqr->tipe_peti->type .
|
|
|
|
"\n" .
|
|
|
|
'Warehouse : ' .
|
|
|
|
$petiqr->warehouse->name .
|
|
|
|
"\n" .
|
|
|
|
'Ukuran Peti : ' .
|
|
|
|
$petiqr->tipe_peti->size_peti .
|
|
|
|
"\n" .
|
|
|
|
'Lot Number : ' .
|
|
|
|
$petiqr->customer->lot_no .
|
|
|
|
"\n" .
|
|
|
|
'Paking Number : ' .
|
|
|
|
$petiqr->packing_no .
|
|
|
|
"\n" .
|
|
|
|
'Status Peti : ' .
|
|
|
|
$petiqr->status_disposal
|
|
|
|
));
|
|
|
|
return view('dashboard.Master_Data.Manajemen_Peti.Peti.show', compact('qrcode'), $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified resource.
|
|
|
|
*/
|
|
|
|
public function edit($id)
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'peti' => Peti::findOrFail($id),
|
|
|
|
'typepeti' => Type_peti::all(),
|
|
|
|
'customer' => Customer::all(),
|
|
|
|
'warehouse' => m_warehouse::all(),
|
|
|
|
'active' => 'menu-peti',
|
|
|
|
];
|
|
|
|
return view('dashboard.Master_Data.Manajemen_Peti.Peti.edit', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified resource in storage.
|
|
|
|
*/
|
|
|
|
public function update(Request $request, $id)
|
|
|
|
{
|
|
|
|
$request->validate([
|
|
|
|
'tipe_peti_id' => 'required',
|
|
|
|
'warna' => 'required',
|
|
|
|
'customer_id' => 'required',
|
|
|
|
'warehouse_id' => 'required',
|
|
|
|
'status_disposal' => 'nullable',
|
|
|
|
'date_pembuatan' => 'required',
|
|
|
|
]);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$currentuser = Auth::user();
|
|
|
|
$typepeti = Peti::findOrFail($id);
|
|
|
|
|
|
|
|
if (!$typepeti) {
|
|
|
|
return redirect()->back()->with('error', 'Data peti tidak ditemukan.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$validatedData = $request->except('_token', '_method');
|
|
|
|
|
|
|
|
$code_customer = Customer::where('id', $validatedData['customer_id'])->first()->code_customer;
|
|
|
|
$type = Type_peti::where('id', $validatedData['tipe_peti_id'])->first()->type;
|
|
|
|
$size_peti = Type_peti::where('id', $validatedData['tipe_peti_id'])->first()->size_peti;
|
|
|
|
$lot_no = Customer::where('id', $validatedData['customer_id'])->first()->lot_no;
|
|
|
|
$packing_no = $typepeti->packing_no; // Mengambil packing_no dari entitas yang sudah ada
|
|
|
|
|
|
|
|
// Generate nilai 'fix_lot' sesuai format yang diinginkan
|
|
|
|
$fixLot = $code_customer . $type . $size_peti . $lot_no . $packing_no;
|
|
|
|
$validatedData['fix_lot'] = $fixLot;
|
|
|
|
|
|
|
|
// Tambahkan perubahan yang diperlukan ke entitas Peti
|
|
|
|
$typepeti->update($validatedData);
|
|
|
|
|
|
|
|
// Menambahkan nama pengguna yang melakukan pembaruan
|
|
|
|
$typepeti->update(['updated_by' => $currentuser->fullname]);
|
|
|
|
|
|
|
|
return redirect()->route('dashboard.peti.index')->with('success', 'Data peti berhasil diperbaharui');
|
|
|
|
} catch (\Throwable $th) {
|
|
|
|
return redirect()->back()->with('error', 'Data peti gagal diperbaharui');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified resource from storage.
|
|
|
|
*/
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
$typepeti = Peti::findOrFail($id);
|
|
|
|
$typepeti->delete();
|
|
|
|
return redirect()->back()->with('success', 'Data peti berhasil dihapus');
|
|
|
|
} catch (\Throwable $th) {
|
|
|
|
return redirect()->back()->with('error', 'Data peti gagal dihapus');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function cetakPdf($id)
|
|
|
|
{
|
|
|
|
$peti = Peti::find($id);
|
|
|
|
|
|
|
|
// Generate QR Code
|
|
|
|
$qrcode = base64_encode(QrCode::format('svg')->size(150)->errorCorrection('H')->generate(
|
|
|
|
'Nama Customer : ' .
|
|
|
|
$peti->customer->name .
|
|
|
|
"\n" .
|
|
|
|
'Code Customer : ' .
|
|
|
|
$peti->customer->code_customer .
|
|
|
|
"\n" .
|
|
|
|
'Type Peti : ' .
|
|
|
|
$peti->tipe_peti->type .
|
|
|
|
"\n" .
|
|
|
|
'Warehouse : ' .
|
|
|
|
$peti->warehouse->name .
|
|
|
|
"\n" .
|
|
|
|
'Ukuran Peti : ' .
|
|
|
|
$peti->tipe_peti->size_peti .
|
|
|
|
"\n" .
|
|
|
|
'Lot Number : ' .
|
|
|
|
$peti->customer->lot_no .
|
|
|
|
"\n" .
|
|
|
|
'Paking Number : ' .
|
|
|
|
$peti->packing_no .
|
|
|
|
"\n" .
|
|
|
|
'Status Peti : ' .
|
|
|
|
$peti->status_disposal
|
|
|
|
));
|
|
|
|
|
|
|
|
// Inisialisasi Dompdf
|
|
|
|
$options = new Options();
|
|
|
|
$options->set('isHtml5ParserEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$dompdf = new Dompdf($options);
|
|
|
|
|
|
|
|
// Load HTML dari view
|
|
|
|
$html = view('dashboard.Master_Data.Manajemen_Peti.Peti.label_pdf', compact('peti', 'qrcode'))->render();
|
|
|
|
|
|
|
|
// Load HTML ke Dompdf
|
|
|
|
$dompdf->loadHtml($html);
|
|
|
|
|
|
|
|
// Render PDF (portrait A4)
|
|
|
|
$dompdf->setPaper('A4', 'horizontal');
|
|
|
|
$dompdf->render();
|
|
|
|
|
|
|
|
// Menggunakan stream untuk menghasilkan dan mengunduh PDF
|
|
|
|
return $dompdf->stream('Label_Peti.pdf');
|
|
|
|
}
|
|
|
|
}
|