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>
171 lines
8.8 KiB
PHP
171 lines
8.8 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Tenant\Resources\WorkOrderResource\RelationManagers;
|
|
|
|
use App\Models\Tenant\Part;
|
|
use App\Models\Tenant\PartReservation;
|
|
use App\Models\Tenant\WorkOrderPart;
|
|
use App\Services\Warehouse\WarehouseService;
|
|
use Filament\Actions;
|
|
use Filament\Forms;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Resources\RelationManagers\RelationManager;
|
|
use Filament\Schemas\Components\Utilities\Set;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
|
|
class PartsRelationManager extends RelationManager
|
|
{
|
|
protected static string $relationship = 'parts';
|
|
|
|
protected static ?string $title = null;
|
|
|
|
public static function getTitle(\Illuminate\Database\Eloquent\Model $ownerRecord, string $pageClass): string
|
|
{
|
|
return __('Piese');
|
|
}
|
|
|
|
public function form(Schema $schema): Schema
|
|
{
|
|
return $schema->components([
|
|
Forms\Components\Select::make('part_id')
|
|
->label(__('Din catalog (lasă gol pentru text liber)'))
|
|
->options(fn () => Part::where('is_active', true)
|
|
->get()
|
|
->mapWithKeys(fn ($p) => [$p->id => "{$p->name} " . ($p->article ? "[{$p->article}] " : '') . "(stoc: {$p->qty})"])
|
|
->toArray())
|
|
->searchable()
|
|
->live()
|
|
->afterStateUpdated(function ($state, Set $set) {
|
|
if ($state && $part = Part::find($state)) {
|
|
$set('name', $part->name);
|
|
$set('article', $part->article);
|
|
$set('brand', $part->brand);
|
|
if ($part->unit_id) { $set('unit_id', $part->unit_id); } else { $set('unit', $part->unit); }
|
|
$set('buy_price', $part->buy_price);
|
|
$set('sell_price', $part->sell_price);
|
|
}
|
|
})
|
|
->columnSpanFull(),
|
|
Forms\Components\TextInput::make('name')->label(__('Denumire'))->required()->columnSpanFull(),
|
|
Forms\Components\TextInput::make('article')->label(__('Cod articol'))->maxLength(64),
|
|
Forms\Components\TextInput::make('brand')->maxLength(64),
|
|
Forms\Components\TextInput::make('qty')->label(__('Cantitate'))->numeric()->default(1)->required(),
|
|
Forms\Components\Select::make('unit_id')->label(__('UM'))->options(\App\Models\Tenant\Unit::forSelect())->searchable()->default(fn () => \App\Models\Tenant\Unit::where('code','buc')->value('id'))->default('buc'),
|
|
Forms\Components\TextInput::make('buy_price')->label(__('Preț achiziție'))->numeric()->default(0),
|
|
Forms\Components\TextInput::make('sell_price')->label(__('Preț vânzare'))->numeric()->required(),
|
|
Forms\Components\TextInput::make('discount_pct')->label(__('Discount %'))->numeric()->default(0),
|
|
Forms\Components\Select::make('status')
|
|
->options(\App\Support\I18n::opts(WorkOrderPart::STATUSES))
|
|
->default('needed')
|
|
->required()
|
|
->helperText(__('La trecere pe „Montată" se scade automat din stoc.')),
|
|
Forms\Components\Textarea::make('notes')->label(__('Observații'))->columnSpanFull()->rows(2),
|
|
]);
|
|
}
|
|
|
|
public function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->recordTitleAttribute('name')
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('name')->label(__('Piesă'))->wrap(),
|
|
Tables\Columns\TextColumn::make('article')->label(__('Cod'))->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('brand')->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('qty')->label(__('Cant.'))->alignRight(),
|
|
Tables\Columns\TextColumn::make('sell_price')->label(__('Preț'))->money('MDL')->alignRight(),
|
|
Tables\Columns\TextColumn::make('total')->money('MDL')->alignRight(),
|
|
Tables\Columns\TextColumn::make('status')
|
|
->formatStateUsing(fn ($s) => __(WorkOrderPart::STATUSES[$s] ?? $s))
|
|
->badge()
|
|
->colors([
|
|
'gray' => ['needed'],
|
|
'warning' => ['ordered'],
|
|
'info' => ['delivered'],
|
|
'success' => ['installed'],
|
|
]),
|
|
])
|
|
->headerActions([
|
|
Actions\CreateAction::make()
|
|
->label(__('Adaugă piesă'))
|
|
->modalHeading(__('Adaugă piesă în fișă')),
|
|
])
|
|
->actions([
|
|
Actions\Action::make('smart_price')
|
|
->label(__('Preț inteligent'))
|
|
->icon('heroicon-m-sparkles')
|
|
->color('primary')
|
|
->visible(fn (WorkOrderPart $r) => (bool) $r->part_id)
|
|
->modalHeading(__('Preț contextual'))
|
|
->modalSubmitActionLabel('Aplică prețul')
|
|
->modalContent(function (WorkOrderPart $r) {
|
|
$wo = $r->workOrder;
|
|
$part = $r->part;
|
|
$quote = app(\App\Services\Pricing\PricingEngine::class)->quote(
|
|
$part, $wo?->vehicle, $wo?->client, $wo?->urgency ?? 'normal'
|
|
);
|
|
return view('filament.tenant.smart-price', ['quote' => $quote, 'item' => $r]);
|
|
})
|
|
->action(function (WorkOrderPart $r) {
|
|
$wo = $r->workOrder;
|
|
$quote = app(\App\Services\Pricing\PricingEngine::class)->quote(
|
|
$r->part, $wo?->vehicle, $wo?->client, $wo?->urgency ?? 'normal'
|
|
);
|
|
$r->sell_price = $quote['final'];
|
|
$r->save();
|
|
Notification::make()
|
|
->title('Preț actualizat: ' . number_format($quote['final'], 2) . ' MDL')
|
|
->success()->send();
|
|
}),
|
|
Actions\Action::make('issue_now')
|
|
->label(__('Eliberează'))
|
|
->icon('heroicon-m-arrow-up-on-square')
|
|
->color('warning')
|
|
->visible(fn (WorkOrderPart $r) => $r->part_id
|
|
&& PartReservation::where('work_order_part_id', $r->id)
|
|
->where('status', PartReservation::STATUS_ACTIVE)
|
|
->exists())
|
|
->requiresConfirmation()
|
|
->modalDescription('Confirmă că mecanicul ia fizic piesa din depozit. Stocul scade acum, fără să aștepți închiderea fișei.')
|
|
->action(function (WorkOrderPart $r) {
|
|
$n = app(WarehouseService::class)->issueNow($r);
|
|
Notification::make()
|
|
->title("Eliberat: {$n} rezervări consumate")
|
|
->success()->send();
|
|
}),
|
|
Actions\Action::make('return_part')
|
|
->label(__('Restituire'))
|
|
->icon('heroicon-m-arrow-uturn-left')
|
|
->color('gray')
|
|
->visible(fn (WorkOrderPart $r) => $r->part_id
|
|
&& PartReservation::where('work_order_part_id', $r->id)
|
|
->where('status', PartReservation::STATUS_CONSUMED)
|
|
->exists())
|
|
->schema([
|
|
Forms\Components\TextInput::make('qty')
|
|
->label(__('Cantitate restituită'))
|
|
->numeric()
|
|
->required()
|
|
->minValue(0.001)
|
|
->default(fn (WorkOrderPart $r) => (float) $r->qty),
|
|
Forms\Components\Textarea::make('notes')->rows(2)->label(__('Observații')),
|
|
])
|
|
->action(function (WorkOrderPart $r, array $data) {
|
|
$batch = app(WarehouseService::class)->returnPart(
|
|
$r, (float) $data['qty'], $data['notes'] ?? null
|
|
);
|
|
Notification::make()
|
|
->title($batch ? __('Piesa returnată în stoc') : __('Nimic de restituit'))
|
|
->{$batch ? 'success' : 'warning'}()
|
|
->send();
|
|
}),
|
|
Actions\EditAction::make(),
|
|
Actions\DeleteAction::make(),
|
|
])
|
|
->emptyStateHeading(__('Nicio piesă montată.'))
|
|
->emptyStateDescription(__('Adaugă piesele necesare din catalog. Stocul se rezervă automat, iar la marcarea „Montată" scade FIFO.'))
|
|
->emptyStateIcon('heroicon-o-cube');
|
|
}
|
|
}
|