Files
autocrm/app/Filament/Tenant/Resources/EmployeeProfileResource.php
Vasyka 7077fff3b3 feat(i18n): convert 38 hardcoded static labels + safe blade wrap + 226 keys
- Convert all remaining static \$modelLabel/\$pluralModelLabel to getter
  methods with __() (AppointmentResource, WorkOrderResource, MasterResource,
  ServiceTemplateResource, LaborResource, and 33 others)
- Safe blade wrap v2 (37 files, 201 wraps): fixed the regex to not match
  `->`, `=>`, `!<` — previous aggressive pass broke @if directives
- Bulk-translate lowercase model-label keys (programări, fișe lucru,
  tehnicieni, șabloane servicii, norme-ore, etc.) — these were the RO
  strings appearing in page titles/breadcrumbs
- Add human RU/EN for mechanic-kpi (Mecanic/Lucrări/Norma ore/etc.)
  and calendar-board words

Tests 306 green. Blade compiles cleanly.

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

111 lines
4.1 KiB
PHP

<?php
namespace App\Filament\Tenant\Resources;
use App\Filament\Tenant\Resources\EmployeeProfileResource\Pages;
use App\Models\Tenant\EmployeeProfile;
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 EmployeeProfileResource extends Resource
{
protected static ?string $model = EmployeeProfile::class;
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-identification';
public static function getNavigationLabel(): string
{
return __('nav.label.Angajați');
}
public static function getNavigationGroup(): ?string
{
return __('nav.group.Finanțe');
}
protected static ?string $modelLabel = null;
public static function getModelLabel(): string
{
return __('angajat');
}
protected static ?string $pluralModelLabel = null;
public static function getPluralModelLabel(): string
{
return __('angajați');
}
protected static ?int $navigationSort = 52;
public static function form(Schema $schema): Schema
{
return $schema->components([
Schemas\Components\Section::make(__('Profil'))
->columns(2)
->schema([
Forms\Components\Select::make('user_id')
->label(__('Utilizator'))
->options(fn () => User::orderBy('name')->pluck('name', 'id'))
->searchable()
->required()
->unique(ignoreRecord: true),
Forms\Components\TextInput::make('position')->label(__('Funcție'))->maxLength(120),
Forms\Components\DatePicker::make('hire_date')->label(__('Angajat din')),
]),
Schemas\Components\Section::make(__('Salariu & comisioane'))
->columns(3)
->schema([
Forms\Components\TextInput::make('base_salary')->label(__('Salariu bază'))->numeric()->default(0),
Forms\Components\TextInput::make('works_pct')
->label(__('% manopere'))
->numeric()->default(0)
->suffix('%')
->helperText(__('% din venitul manoperelor finalizate.')),
Forms\Components\TextInput::make('parts_pct')
->label(__('% marja piese'))
->numeric()->default(0)
->suffix('%')
->helperText(__('% din marja (sell-buy) pieselor montate.')),
]),
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('user.name')->label(__('Nume'))->searchable()->sortable(),
Tables\Columns\TextColumn::make('position')->label(__('Funcție'))->placeholder('—'),
Tables\Columns\TextColumn::make('base_salary')->money('MDL')->alignRight(),
Tables\Columns\TextColumn::make('works_pct')->label(__('% Manopere'))
->formatStateUsing(fn ($s) => $s . '%')->alignRight(),
Tables\Columns\TextColumn::make('parts_pct')->label(__('% Piese'))
->formatStateUsing(fn ($s) => $s . '%')->alignRight(),
Tables\Columns\TextColumn::make('hire_date')->date('d.m.Y')->placeholder('—'),
])
->actions([
Actions\EditAction::make(),
Actions\DeleteAction::make(),
])
->defaultSort('user_id');
}
public static function getPages(): array
{
return [
'index' => Pages\ListEmployeeProfiles::route('/'),
'create' => Pages\CreateEmployeeProfile::route('/create'),
'edit' => Pages\EditEmployeeProfile::route('/{record}/edit'),
];
}
}