Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Has been cancelled
Laravel Larastan / larastan (pull_request) Has been cancelled
Laravel Pint / pint (pull_request) Has been cancelled
102 lines
3.0 KiB
PHP
102 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\ProductionOrderResource\Pages;
|
|
|
|
use App\Filament\Resources\ProductionOrderResource;
|
|
use App\Models\Plant;
|
|
use App\Models\ProductionOrder;
|
|
use Filament\Actions;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditProductionOrder extends EditRecord
|
|
{
|
|
protected static string $resource = ProductionOrderResource::class;
|
|
|
|
public function printProductionOrder()
|
|
{
|
|
$pOrder = trim($this->form->getState()['production_order'] ?? '') ?? null;
|
|
|
|
$plantId = trim($this->form->getState()['plant_id'] ?? '') ?? null;
|
|
|
|
if (empty($plantId)) {
|
|
Notification::make()
|
|
->title('Plant name cannot be empty!')
|
|
->danger()
|
|
->send();
|
|
|
|
return;
|
|
} elseif (empty($pOrder)) {
|
|
Notification::make()
|
|
->title('Production order cannot be empty!')
|
|
->danger()
|
|
->send();
|
|
|
|
return;
|
|
}
|
|
|
|
$pOrderExists = ProductionOrder::where('plant_id', $plantId)->where('production_order', $pOrder)->first();
|
|
|
|
if (! $pOrderExists) {
|
|
Notification::make()
|
|
->title("Production Order '{$pOrder}' does not exist to get print!")
|
|
->danger()
|
|
->send();
|
|
|
|
return;
|
|
} else {
|
|
return redirect()->route('production-orders.print', ['production_order' => $pOrder]);
|
|
}
|
|
}
|
|
|
|
public function printPanel()
|
|
{
|
|
$plantId = $this->form->getState()['plant_id'] ?? null;
|
|
$plantId = filled($plantId) ? (int) $plantId : null;
|
|
|
|
$pOrder = $this->form->getState()['production_order'] ?? null;
|
|
$pOrder = filled($pOrder) ? trim($pOrder) : null;
|
|
|
|
$plantCode = Plant::where('id', $plantId)->value('code');
|
|
|
|
if (empty($plantId)) {
|
|
Notification::make()
|
|
->title('Plant name cannot be empty!')
|
|
->danger()
|
|
->send();
|
|
|
|
return;
|
|
} elseif (empty($pOrder)) {
|
|
Notification::make()
|
|
->title('Production order cannot be empty!')
|
|
->danger()
|
|
->send();
|
|
return;
|
|
}
|
|
|
|
$pOrderExists = ProductionOrder::where('plant_id', $plantId)->where('production_order', $pOrder)->first();
|
|
|
|
if (! $pOrderExists) {
|
|
Notification::make()
|
|
->title("Production Order '{$pOrder}' does not exist to get print!")
|
|
->danger()
|
|
->send();
|
|
|
|
return;
|
|
} else {
|
|
return redirect()->route('production-orders.printpanel', ['production_order' => $pOrder, 'plant_code' => $plantCode]);
|
|
}
|
|
|
|
}
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\ViewAction::make(),
|
|
Actions\DeleteAction::make(),
|
|
Actions\ForceDeleteAction::make(),
|
|
Actions\RestoreAction::make(),
|
|
];
|
|
}
|
|
}
|