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>
126 lines
4.5 KiB
PHP
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'),
|
|
];
|
|
}
|
|
}
|