60 lines
1.9 KiB
PHP
60 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\PrescriptionResource\Pages;
|
|
|
|
use App\Filament\Resources\PrescriptionResource;
|
|
use Filament\Actions\Action;
|
|
use Filament\Actions\DeleteAction;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
use Filament\Support\Enums\Width;
|
|
|
|
class EditPrescription extends EditRecord
|
|
{
|
|
protected static string $resource = PrescriptionResource::class;
|
|
|
|
protected Width|string|null $maxContentWidth = Width::SevenExtraLarge;
|
|
|
|
protected function mutateFormDataBeforeSave(array $data): array
|
|
{
|
|
$data['doctor'] = auth()->user()?->name;
|
|
$data['issue_datetime'] = now();
|
|
return $data;
|
|
}
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Action::make('printPrescription')
|
|
->label(__('prescriptions.actions.print_prescription'))
|
|
->icon('heroicon-o-printer')
|
|
->color('info')
|
|
->url(fn () => route('prescription.print', $this->getRecord()))
|
|
->openUrlInNewTab(),
|
|
|
|
Action::make('printAdmission')
|
|
->label(__('prescriptions.actions.print_admission'))
|
|
->icon('heroicon-o-printer')
|
|
->color('warning')
|
|
->visible(fn () => $this->getRecord()->patientRecord?->surgeryAppointment !== null)
|
|
->url(fn () => route('prescription.print.admission', $this->getRecord()))
|
|
->openUrlInNewTab(),
|
|
|
|
Action::make('printLab')
|
|
->label(__('prescriptions.actions.print_lab'))
|
|
->icon('heroicon-o-beaker')
|
|
->color('gray')
|
|
->url(fn () => route('prescription.print', ['prescription' => $this->getRecord(), 'type' => 'lab']))
|
|
->openUrlInNewTab(),
|
|
|
|
DeleteAction::make(),
|
|
];
|
|
}
|
|
|
|
protected function getFormActions(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|