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>
65 lines
2.6 KiB
PHP
65 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Tenant\Resources\BodyshopJobResource\RelationManagers;
|
|
|
|
use App\Models\Tenant\DamagePoint;
|
|
use Filament\Actions;
|
|
use Filament\Forms;
|
|
use Filament\Resources\RelationManagers\RelationManager;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
|
|
class DamagePointsRelationManager extends RelationManager
|
|
{
|
|
protected static string $relationship = 'damagePoints';
|
|
|
|
protected static ?string $title = null;
|
|
|
|
public static function getTitle(\Illuminate\Database\Eloquent\Model $ownerRecord, string $pageClass): string
|
|
{
|
|
return __('Hartă daune');
|
|
}
|
|
|
|
public function form(Schema $schema): Schema
|
|
{
|
|
return $schema->components([
|
|
Forms\Components\Select::make('zone')
|
|
->label(__('Zonă'))
|
|
->options(\App\Support\I18n::opts(array_combine(DamagePoint::ZONES, DamagePoint::ZONES)))
|
|
->searchable()
|
|
->required(),
|
|
Forms\Components\Select::make('kind')
|
|
->label(__('Tip daună'))
|
|
->options(\App\Support\I18n::opts(array_combine(DamagePoint::KINDS, DamagePoint::KINDS)))
|
|
->required(),
|
|
Forms\Components\Select::make('severity')
|
|
->label(__('Gravitate'))
|
|
->options(\App\Support\I18n::opts(DamagePoint::SEVERITIES))
|
|
->default('minor')
|
|
->required(),
|
|
Forms\Components\Textarea::make('notes')->label(__('Observații'))->rows(2)->columnSpanFull(),
|
|
]);
|
|
}
|
|
|
|
public function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->recordTitleAttribute('zone')
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('zone')->label(__('Zonă'))->badge()->color('gray'),
|
|
Tables\Columns\TextColumn::make('kind')->label(__('Tip')),
|
|
Tables\Columns\TextColumn::make('severity')
|
|
->label(__('Gravitate'))
|
|
->formatStateUsing(fn ($s) => DamagePoint::SEVERITIES[$s] ?? $s)
|
|
->badge()
|
|
->colors(['gray' => ['minor'], 'warning' => ['medium'], 'danger' => ['severe']]),
|
|
Tables\Columns\TextColumn::make('notes')->limit(40)->placeholder('—'),
|
|
])
|
|
->headerActions([Actions\CreateAction::make()])
|
|
->actions([Actions\EditAction::make(), Actions\DeleteAction::make()])
|
|
->emptyStateHeading(__('Nicio daună marcată'))
|
|
->emptyStateDescription(__('Adaugă punctele de daună pe zone (capotă, ușă, aripă) cu tip și gravitate — formează harta de daune a mașinii.'));
|
|
}
|
|
}
|