|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use App\Http\Requests\ValidasiCreatePeti;
|
|
|
|
use App\Http\Requests\ValidasiUpdatePeti;
|
|
|
|
use Dompdf\Dompdf;
|
|
|
|
use Dompdf\Options;
|
|
|
|
use App\Models\Peti;
|
|
|
|
use App\Models\Customer;
|
|
|
|
use App\Models\Type_peti;
|
|
|
|
use App\Models\Kondisi_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 = [
|
|
|
|
'kondisiPeti' => Kondisi_Peti::all(),
|
|
|
|
'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 = [
|
|
|
|
'kondisiPeti' => Kondisi_Peti::get(),
|
|
|
|
'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(ValidasiCreatePeti $request)
|
|
|
|
{
|
|
|
|
// dd($request->all());
|
|
|
|
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
|
|
|
|
|
|
|
|
// Ambil nomor urutan otomatis untuk id_incre
|
|
|
|
$nextIdIncre = Peti::max('id_incre') + 1;
|
|
|
|
$validatedData['id_incre'] = $nextIdIncre;
|
|
|
|
|
|
|
|
// 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(
|
|
|
|
// $petiqr->fix_lot . ";" . $petiqr->id . ";" . $petiqr->warehouse->id
|
|
|
|
// ));
|
|
|
|
return view('dashboard.Master_Data.Manajemen_Peti.Peti.show', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified resource.
|
|
|
|
*/
|
|
|
|
public function edit($id)
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'kondisiPeti' => Kondisi_Peti::get(),
|
|
|
|
'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(ValidasiUpdatePeti $request, $id)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
$peti = Peti::find($id);
|
|
|
|
|
|
|
|
// Generate QR Code
|
|
|
|
$qrcode = base64_encode(QrCode::format('svg')->size(150)->errorCorrection('H')->generate(
|
|
|
|
$peti->fix_lot . ';' . $peti->id . ';' . $peti->warehouse->id
|
|
|
|
));
|
|
|
|
|
|
|
|
// Inisialisasi Dompdf
|
|
|
|
$options = new Options();
|
|
|
|
$options->set('isHtml5ParserEnabled', true);
|
|
|
|
$options->set('isRemoteEnabled', true);
|
|
|
|
$options->set('defaultFont', 'Arial');
|
|
|
|
$dompdf = new Dompdf($options);
|
|
|
|
|
|
|
|
// Load HTML dari view
|
|
|
|
$html = view('dashboard.Master_Data.Manajemen_Peti.Peti.label_pdf', compact('peti', 'qrcode'))->render();
|
|
|
|
$dompdf->loadHtml($html);
|
|
|
|
|
|
|
|
// Render PDF (portrait A4)
|
|
|
|
$dompdf->setPaper('A4', 'portrait');
|
|
|
|
$dompdf->render();
|
|
|
|
$output = $dompdf->output();
|
|
|
|
|
|
|
|
// Download file PDF dengan nama yang sesuai
|
|
|
|
return response()->stream(
|
|
|
|
function () use ($output) {
|
|
|
|
echo $output;
|
|
|
|
},
|
|
|
|
200,
|
|
|
|
[
|
|
|
|
'Content-Type' => 'application/pdf',
|
|
|
|
'Content-Disposition' => 'inline; filename="label_Peti.pdf"',
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
return redirect()->back()->with('error', 'Terjadi kesalahan saat mencetak PDF.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// public function AllPdf(Request $request)
|
|
|
|
// {
|
|
|
|
// $peti_ids = $request->input('peti_ids');
|
|
|
|
// $selectedIds = explode(',', $peti_ids);
|
|
|
|
|
|
|
|
// // Mengambil data dari database berdasarkan ID yang dipilih
|
|
|
|
// $peti = Peti::whereIn('id', $selectedIds)->get();
|
|
|
|
|
|
|
|
// // $peti = Peti::all();
|
|
|
|
// // Inisialisasi Dompdf
|
|
|
|
// $options = new Options();
|
|
|
|
// $options->set('isHtml5ParserEnabled', true);
|
|
|
|
// $options->set('isRemoteEnabled', true);
|
|
|
|
// $options->set('defaultFont', 'Arial');
|
|
|
|
// $dompdf = new Dompdf($options);
|
|
|
|
|
|
|
|
// // Load HTML dari view
|
|
|
|
// $html = view('dashboard.Master_Data.Manajemen_Peti.Peti.all_print', compact('peti'))->render();
|
|
|
|
// $dompdf->loadHtml($html);
|
|
|
|
|
|
|
|
// // Render PDF (portrait A4)
|
|
|
|
// $dompdf->setPaper('A4', 'portrait');
|
|
|
|
// $dompdf->render();
|
|
|
|
// $output = $dompdf->output();
|
|
|
|
|
|
|
|
// // Download file PDF dengan nama yang sesuai
|
|
|
|
// return response()->stream(
|
|
|
|
// function () use ($output) {
|
|
|
|
// echo $output;
|
|
|
|
// },
|
|
|
|
// 200,
|
|
|
|
// [
|
|
|
|
// 'Content-Type' => 'application/pdf',
|
|
|
|
// 'Content-Disposition' => 'inline; filename="label_Peti.pdf"',
|
|
|
|
// ]
|
|
|
|
// );
|
|
|
|
// }
|
|
|
|
public function AllPdf(Request $request)
|
|
|
|
{
|
|
|
|
$peti_ids = $request->input('peti_ids');
|
|
|
|
$selectedIds = explode(',', $peti_ids);
|
|
|
|
|
|
|
|
// Mengambil data dari database berdasarkan ID yang dipilih
|
|
|
|
$peti = Peti::whereIn('id', $selectedIds)->get();
|
|
|
|
|
|
|
|
// Inisialisasi Dompdf dengan opsi
|
|
|
|
$options = new Options();
|
|
|
|
$options->set('isHtml5ParserEnabled', true);
|
|
|
|
$options->set('isRemoteEnabled', true);
|
|
|
|
$options->set('defaultFont', 'Arial');
|
|
|
|
|
|
|
|
// Mengatur ukuran kertas sesuai dengan printer Zebra JT230
|
|
|
|
$options->set('isPhpEnabled', true); // Diperlukan agar perubahan ukuran kertas berfungsi
|
|
|
|
$options->set('isHtml5ParserEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
$options->set('isPhpEnabled', true);
|
|
|
|
|
|
|
|
$dompdf = new Dompdf($options);
|
|
|
|
|
|
|
|
// Load HTML dari view
|
|
|
|
$html = view('dashboard.Master_Data.Manajemen_Peti.Peti.all_print', compact('peti'))->render();
|
|
|
|
$dompdf->loadHtml($html);
|
|
|
|
|
|
|
|
// Render PDF (portrait A4)
|
|
|
|
$dompdf->setPaper([0, 0, 198.5, 396], 'portrait'); // Ukuran kertas lebar 7cm dan tinggi 14cm
|
|
|
|
$dompdf->render();
|
|
|
|
$output = $dompdf->output();
|
|
|
|
|
|
|
|
// Download file PDF dengan nama yang sesuai
|
|
|
|
return response()->stream(
|
|
|
|
function () use ($output) {
|
|
|
|
echo $output;
|
|
|
|
},
|
|
|
|
200,
|
|
|
|
[
|
|
|
|
'Content-Type' => 'application/pdf',
|
|
|
|
'Content-Disposition' => 'inline; filename="label_Peti.pdf"',
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|