06696727dd
══════ Activity log (Spatie) ══════ - spatie/laravel-activitylog v5 instalat - Migration cu company_id pentru tenant scoping - Trait Auditable (App\Models\Concerns\Auditable): - LogOptions cu logFillable + logOnlyDirty + dontSubmitEmptyLogs - tapActivity auto-fill company_id + causer - Descrieri RO (creat/modificat/șters/restaurat) - Aplicat pe: Client, Vehicle, Lead, Deal, WorkOrder, Payment, Expense - ActivityResource (group Admin → Jurnal activitate) - Listă read-only, scope pe tenant, filtre by description/today ══════ Kanban Work Orders ══════ - Custom Filament page la /app/kanban (group Service) - 6 coloane (new → diagnosis → agreement → in_work → awaiting_parts → ready) - Drag-drop nativ HTML5 cu wire:click moveCard() - Cards arată: număr fișă, client, auto, plate, master, total - Link 'Deschide' direct la editare WO ══════ Payroll (Salarii) ══════ Schema: - employee_profiles: user_id, position, base_salary, works_pct, parts_pct - payroll_runs: period (YYYY-MM), base, works_revenue/pct, parts_margin/pct, bonus, fines, advance, total auto-calculat - payroll_adjustments: bonus/fine/advance per period PayrollCalculator service: - compute($userId, $period) — calculează auto: - Manopere finalizate de mecanic în luna respectivă (sum total) - Marja pieselor montate de el (sell-buy * qty) - Bonus + fines + advance from adjustments - Total = base + works% + parts% + bonus - fines - advance Resources Filament (group Finanțe): - EmployeeProfileResource: profil cu % comisioane - PayrollRunResource: salarii cu action 'Calculează luna curentă' (toți userii) + per-row 'Recalculează'; Sum summary pe total - PayrollAdjustmentResource: gestionare bonus/penalizări/avansuri ══════ Cleanup ══════ - Șterse toate /__debug, /__seed, /__try-login, /__force-login, /__whoami, /__coolify-check (security) - Routes/web.php conține doar / redirect, /manifest.json, /sw.js Total Filament tenant routes: 92.
95 lines
3.8 KiB
PHP
95 lines
3.8 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';
|
|
|
|
protected static ?string $navigationLabel = 'Angajați';
|
|
|
|
protected static string|\UnitEnum|null $navigationGroup = 'Finanțe';
|
|
|
|
protected static ?string $modelLabel = 'angajat';
|
|
|
|
protected static ?string $pluralModelLabel = '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'),
|
|
];
|
|
}
|
|
}
|