de2964c854
- WorksRelationManager Name column: getStateUsing(labor?->label()) so the row shows the labor's localized name (not the raw snapshot); fallback to stored snapshot when labor is missing. - 4 explicit empty states with helper description + icon on Works, Parts, SubcontractJobs, Payments — replaces Filament's auto-generated 'Не найдено X / Создать X для старта.' - 4 CreateAction titles / modal headings for all four relation managers. - Notification 'Piesa returnată în stoc' / 'Nimic de restituit' wrapped. - +11 translation keys. All 306 tests pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
78 lines
3.8 KiB
PHP
78 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Tenant\Resources\WorkOrderResource\RelationManagers;
|
|
|
|
use App\Models\Tenant\Subcontractor;
|
|
use App\Models\Tenant\SubcontractJob;
|
|
use Filament\Actions;
|
|
use Filament\Forms;
|
|
use Filament\Resources\RelationManagers\RelationManager;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
|
|
class SubcontractJobsRelationManager extends RelationManager
|
|
{
|
|
protected static string $relationship = 'subcontractJobs';
|
|
|
|
protected static ?string $title = null;
|
|
|
|
public static function getTitle(\Illuminate\Database\Eloquent\Model $ownerRecord, string $pageClass): string
|
|
{
|
|
return __('Lucrări la terți');
|
|
}
|
|
|
|
public function form(Schema $schema): Schema
|
|
{
|
|
return $schema->components([
|
|
Forms\Components\Select::make('subcontractor_id')
|
|
->label(__('Subcontractor'))
|
|
->options(fn () => Subcontractor::where('is_active', true)->pluck('name', 'id'))
|
|
->searchable()
|
|
->columnSpanFull(),
|
|
Forms\Components\Select::make('category')
|
|
->label(__('Categorie'))
|
|
->options(\App\Support\I18n::opts(array_combine(Subcontractor::SPECIALTIES, Subcontractor::SPECIALTIES)))
|
|
->searchable(),
|
|
Forms\Components\Select::make('status')->options(\App\Support\I18n::opts(SubcontractJob::STATUSES))->default('sent')->required(),
|
|
Forms\Components\Textarea::make('description')->label(__('Descriere'))->rows(2)->columnSpanFull(),
|
|
Forms\Components\TextInput::make('cost')->label(__('Cost (terț)'))->numeric()->default(0)->required(),
|
|
Forms\Components\TextInput::make('markup_pct')->label(__('Markup %'))->numeric()->default(0),
|
|
Forms\Components\TextInput::make('client_price')->label(__('Preț client'))->numeric()->default(0)
|
|
->helperText(__('Folosit dacă markup = 0.')),
|
|
Forms\Components\DatePicker::make('eta')->label(__('ETA')),
|
|
]);
|
|
}
|
|
|
|
public function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->recordTitleAttribute('number')
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('number')->label(__('Nr.')),
|
|
Tables\Columns\TextColumn::make('subcontractor.name')->label(__('Terț'))->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('category')->badge()->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('cost')->money('MDL')->alignRight(),
|
|
Tables\Columns\TextColumn::make('client_price')->label(__('Preț client'))->money('MDL')->alignRight(),
|
|
Tables\Columns\TextColumn::make('margin')
|
|
->label(__('Marjă'))
|
|
->state(fn (SubcontractJob $r) => $r->margin())
|
|
->money('MDL')->alignRight()
|
|
->color(fn ($s) => (float) $s > 0 ? 'success' : ((float) $s < 0 ? 'danger' : 'gray')),
|
|
Tables\Columns\TextColumn::make('status')
|
|
->formatStateUsing(fn ($s) => __(SubcontractJob::STATUSES[$s] ?? $s))
|
|
->badge()
|
|
->colors(['warning' => ['sent', 'in_progress'], 'success' => ['done', 'returned'], 'danger' => ['cancelled']]),
|
|
])
|
|
->headerActions([
|
|
Actions\CreateAction::make()
|
|
->label(__('Adaugă lucrare terți'))
|
|
->modalHeading(__('Adaugă lucrare la subcontractor')),
|
|
])
|
|
->actions([Actions\EditAction::make(), Actions\DeleteAction::make()])
|
|
->emptyStateHeading(__('Nicio lucrare la terți'))
|
|
->emptyStateDescription(__('Adaugă lucrări trimise la ateliere externe (turbo, cutii, vopsitorie). Costul + markup intră automat în totalul fișei.'))
|
|
->emptyStateIcon('heroicon-o-arrow-top-right-on-square');
|
|
}
|
|
}
|