95aeecb932
- LowStockTable: rename getHeading → getTableHeading (correct Filament API) - Global I18n::opts() helper wraps Model::CONST values in __() so Select dropdowns show translated status/type/season/etc. labels - Sed-transform ->options(X::CONST), ->options(array_combine(X::A,X::A)), and formatStateUsing(fn($s)=>X::CONST[$s]??$s) → wrap with __() (58 options + 10 combines + 7 formatStateUsing across 28 files) - CalendarBoard: all 7 day names now via __() (was missing 4) - calendar-board.blade: fix untranslated 'săptămâna curentă', 'capacitate', 'rata confirmare', 'mediu', 'plin', 'Pod / Zi' / 'Mecanic / Zi' - +40 RU/EN translations (Client & Auto, Maistru / Mecanic, Programat, Sosit, Finalizat, Anulat, Neprezentat, days of week, calendar KPIs) All 306 tests pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
143 lines
5.9 KiB
PHP
143 lines
5.9 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Tenant\Resources;
|
|
|
|
use App\Filament\Tenant\Resources\AppointmentResource\Pages;
|
|
use App\Models\Tenant\Appointment;
|
|
use App\Models\Tenant\Client;
|
|
use App\Models\Tenant\Post;
|
|
use App\Models\Tenant\User;
|
|
use App\Models\Tenant\Vehicle;
|
|
use Filament\Forms;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Actions;
|
|
use Filament\Schemas;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
|
|
class AppointmentResource extends Resource
|
|
{
|
|
protected static ?string $model = Appointment::class;
|
|
|
|
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-calendar-days';
|
|
|
|
public static function getNavigationLabel(): string
|
|
{
|
|
return __('nav.label.Calendar');
|
|
}
|
|
|
|
public static function getNavigationGroup(): ?string
|
|
{
|
|
return __('nav.group.CRM');
|
|
}
|
|
|
|
protected static ?string $modelLabel = null;
|
|
|
|
public static function getModelLabel(): string
|
|
{
|
|
return __('programare');
|
|
}
|
|
|
|
protected static ?string $pluralModelLabel = null;
|
|
|
|
public static function getPluralModelLabel(): string
|
|
{
|
|
return __('programări');
|
|
}
|
|
|
|
protected static ?int $navigationSort = 7;
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return $schema->components([
|
|
Schemas\Components\Section::make(__('Când & unde'))
|
|
->columns(3)
|
|
->schema([
|
|
Forms\Components\DatePicker::make('date')->label(__('Data'))->default(today())->required(),
|
|
Forms\Components\TimePicker::make('time_start')->label(__('De la'))->required()->seconds(false),
|
|
Forms\Components\TimePicker::make('time_end')->label(__('Până la'))->required()->seconds(false),
|
|
Forms\Components\Select::make('post_id')
|
|
->label(__('Pod'))
|
|
->options(fn () => Post::where('is_active', true)->orderBy('sort_order')->pluck('name', 'id'))
|
|
->searchable(),
|
|
Forms\Components\Select::make('master_id')
|
|
->label(__('Maistru / Mecanic'))
|
|
->options(fn () => User::pluck('name', 'id'))
|
|
->searchable(),
|
|
Forms\Components\Select::make('status')
|
|
->options(\App\Support\I18n::opts(Appointment::STATUSES))
|
|
->default('scheduled')
|
|
->required(),
|
|
]),
|
|
Schemas\Components\Section::make(__('Client & Auto'))
|
|
->columns(2)
|
|
->schema([
|
|
Forms\Components\Select::make('client_id')
|
|
->label(__('Client'))
|
|
->options(fn () => Client::pluck('name', 'id'))
|
|
->searchable()
|
|
->live(),
|
|
Forms\Components\Select::make('vehicle_id')
|
|
->label(__('Auto'))
|
|
->options(fn (Schemas\Components\Utilities\Get $get) => $get('client_id')
|
|
? Vehicle::where('client_id', $get('client_id'))->pluck('plate', 'id')
|
|
: [])
|
|
->searchable(),
|
|
]),
|
|
Forms\Components\TextInput::make('title')->label(__('Subiect'))->required()->maxLength(160),
|
|
Forms\Components\Textarea::make('notes')->label(__('Notițe'))->columnSpanFull()->rows(2),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('date')->label(__('Data'))->date('d.m.Y')->sortable(),
|
|
Tables\Columns\TextColumn::make('time_start')->label(__('De la'))->time('H:i'),
|
|
Tables\Columns\TextColumn::make('time_end')->label(__('Până la'))->time('H:i'),
|
|
Tables\Columns\TextColumn::make('post.name')->label(__('Pod'))->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('title')->label(__('Subiect'))->searchable()->limit(40),
|
|
Tables\Columns\TextColumn::make('client.name')->label(__('Client'))->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('vehicle.plate')->label(__('Auto'))->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('master.name')->label(__('Maistru'))->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('status')
|
|
->formatStateUsing(fn ($state) => __(Appointment::STATUSES[$state] ?? $state))
|
|
->badge()
|
|
->colors([
|
|
'gray' => ['scheduled'],
|
|
'warning' => ['arrived'],
|
|
'success' => ['done'],
|
|
'danger' => ['cancelled', 'no_show'],
|
|
]),
|
|
])
|
|
->filters([
|
|
Tables\Filters\Filter::make('today')
|
|
->label(__('Astăzi'))
|
|
->query(fn ($q) => $q->whereDate('date', today())),
|
|
Tables\Filters\Filter::make('upcoming')
|
|
->label(__('Viitoare'))
|
|
->query(fn ($q) => $q->where('date', '>=', today())),
|
|
Tables\Filters\SelectFilter::make('status')->options(\App\Support\I18n::opts(Appointment::STATUSES)),
|
|
Tables\Filters\SelectFilter::make('post_id')
|
|
->label(__('Pod'))
|
|
->options(fn () => Post::pluck('name', 'id')),
|
|
])
|
|
->actions([
|
|
Actions\EditAction::make(),
|
|
Actions\DeleteAction::make(),
|
|
])
|
|
->defaultSort('date', 'desc');
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListAppointments::route('/'),
|
|
'create' => Pages\CreateAppointment::route('/create'),
|
|
'edit' => Pages\EditAppointment::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|