Files
autocrm/app/Filament/Tenant/Resources/PayrollAdjustmentResource.php
T
Vasyka e969bb9c7d i18n: wrap all formatStateUsing(fn(\$s)=>X::CONST[\$s]??\$s) with __() (21 files)
Previous sed pass only matched \$state; missed \$s and other arg-name
variants. This time the regex is arg-name-agnostic and touches 21
files across Filament resources & relation managers.

Also wraps two special cases: UserResource role-labels lookup and
LaborResource pricing_mode ternary ('Fix' | 'Pe oră').

+27 human translations for the enum values that were still identity
fallback: WorkOrderWork.STATUSES (De făcut), Purchase.STATUSES,
OnlineOrder.STATUSES, Call.DIRECTIONS/STATUSES, BodyshopJob.TYPES/
STATUSES, TireSet.SEASONS, MessageTemplate.CHANNELS,
DamagePoint.SEVERITIES, ServiceTemplateItem.KINDS.

All 306 tests pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-07-16 07:41:35 +00:00

126 lines
4.5 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 = null;
public static function getModelLabel(): string
{
return __('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(\App\Support\I18n::opts(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(\App\Support\I18n::opts(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'),
];
}
}