Files
autocrm/app/Filament/Tenant/Resources/PayrollAdjustmentResource.php
T
Vasyka f7fc69077b feat(i18n): wrap 1103 hardcoded UI strings across Filament with __()
- Convert static $modelLabel/$pluralModelLabel/$title to getter methods
- Wrap ->label()/->placeholder()/->helperText()/->description()/->title()/->body() args
- Wrap Section::make()/Fieldset::make()/Notification::make()->title() args
- Fix RelationManagers::getTitle() signature to match parent (Model, string)
- Fix Pages::getTitle() to instance method (BasePage::getTitle is non-static)
- Extend lang/ru.json + lang/en.json with 700+ common terms; identity fallback for the rest
- Remove duplicate getters in 5 resources that had manual getModelLabel already

All 306 tests pass. Missing translations fall back to the RO key so the UI never breaks.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-07-15 05:04:24 +00:00

121 lines
4.3 KiB
PHP

<?php
namespace App\Filament\Tenant\Resources;
use App\Filament\Tenant\Resources\PayrollAdjustmentResource\Pages;
use App\Models\Tenant\PayrollAdjustment;
use App\Models\Tenant\User;
use Filament\Actions;
use Filament\Forms;
use Filament\Resources\Resource;
use Filament\Schemas;
use Filament\Schemas\Schema;
use Filament\Tables;
use Filament\Tables\Table;
class PayrollAdjustmentResource extends Resource
{
protected static ?string $model = PayrollAdjustment::class;
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-adjustments-horizontal';
public static function getNavigationLabel(): string
{
return __('nav.label.Bonusuri & avansuri');
}
public static function getNavigationGroup(): ?string
{
return __('nav.group.Finanțe');
}
protected static ?string $modelLabel = 'ajustare';
protected static ?string $pluralModelLabel = null;
public static function getPluralModelLabel(): string
{
return __('bonusuri/avansuri');
}
protected static ?int $navigationSort = 54;
public static function canViewAny(): bool
{
return auth()->user()?->canDo(\App\Auth\Permissions::SALARIES_VIEW_ALL) ?? false;
}
public static function canCreate(): bool
{
return auth()->user()?->canDo(\App\Auth\Permissions::SALARIES_CALCULATE) ?? false;
}
public static function form(Schema $schema): Schema
{
return $schema->components([
Schemas\Components\Section::make(__('Detalii'))
->columns(2)
->schema([
Forms\Components\Select::make('user_id')
->label(__('Utilizator'))
->options(fn () => User::orderBy('name')->pluck('name', 'id'))
->searchable()
->required(),
Forms\Components\Select::make('type')
->options(PayrollAdjustment::TYPES)
->default('bonus')
->required(),
Forms\Components\TextInput::make('amount')->label(__('Sumă'))->numeric()->required(),
Forms\Components\TextInput::make('period')
->label(__('Perioadă (YYYY-MM)'))
->placeholder(now()->format('Y-m'))
->regex('/^\d{4}-\d{2}$/')
->required(),
Forms\Components\DatePicker::make('date')->default(today())->required(),
Forms\Components\TextInput::make('reason')->label(__('Motiv'))->maxLength(160),
]),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('date')->date('d.m.Y')->sortable(),
Tables\Columns\TextColumn::make('user.name')->label(__('Utilizator'))->searchable(),
Tables\Columns\TextColumn::make('type')
->formatStateUsing(fn ($s) => PayrollAdjustment::TYPES[$s] ?? $s)
->badge()
->colors([
'success' => ['bonus'],
'danger' => ['fine'],
'warning' => ['advance'],
]),
Tables\Columns\TextColumn::make('period'),
Tables\Columns\TextColumn::make('amount')->money('MDL')->alignRight(),
Tables\Columns\TextColumn::make('reason')->limit(40),
Tables\Columns\IconColumn::make('applied')->boolean()->label(__('Aplicat')),
])
->filters([
Tables\Filters\SelectFilter::make('type')->options(PayrollAdjustment::TYPES),
Tables\Filters\SelectFilter::make('user_id')
->label(__('Utilizator'))
->options(fn () => User::pluck('name', 'id')),
])
->actions([
Actions\EditAction::make(),
Actions\DeleteAction::make(),
])
->defaultSort('date', 'desc');
}
public static function getPages(): array
{
return [
'index' => Pages\ListPayrollAdjustments::route('/'),
'create' => Pages\CreatePayrollAdjustment::route('/create'),
'edit' => Pages\EditPayrollAdjustment::route('/{record}/edit'),
];
}
}