Files
Vasyka e969bb9c7d i18n: wrap all formatStateUsing(fn(\$s)=>X::CONST[\$s]??\$s) with __() (21 files)
Previous sed pass only matched \$state; missed \$s and other arg-name
variants. This time the regex is arg-name-agnostic and touches 21
files across Filament resources & relation managers.

Also wraps two special cases: UserResource role-labels lookup and
LaborResource pricing_mode ternary ('Fix' | 'Pe oră').

+27 human translations for the enum values that were still identity
fallback: WorkOrderWork.STATUSES (De făcut), Purchase.STATUSES,
OnlineOrder.STATUSES, Call.DIRECTIONS/STATUSES, BodyshopJob.TYPES/
STATUSES, TireSet.SEASONS, MessageTemplate.CHANNELS,
DamagePoint.SEVERITIES, ServiceTemplateItem.KINDS.

All 306 tests pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-07-16 07:41:35 +00:00

162 lines
6.8 KiB
PHP

<?php
namespace App\Filament\Tenant\Resources;
use App\Filament\Tenant\Resources\PurchaseResource\Pages;
use App\Filament\Tenant\Resources\PurchaseResource\RelationManagers;
use App\Models\Tenant\Purchase;
use App\Models\Tenant\Supplier;
use App\Models\Tenant\Warehouse;
use Filament\Actions;
use Filament\Forms;
use Filament\Notifications\Notification;
use Filament\Resources\Resource;
use Filament\Schemas;
use Filament\Schemas\Schema;
use Filament\Tables;
use Filament\Tables\Table;
class PurchaseResource extends Resource
{
protected static ?string $model = Purchase::class;
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-shopping-cart';
public static function getNavigationLabel(): string
{
return __('nav.label.Achiziții');
}
public static function getNavigationGroup(): ?string
{
return __('nav.group.Depozit');
}
protected static ?string $modelLabel = null;
public static function getModelLabel(): string
{
return __('achiziție');
}
protected static ?string $pluralModelLabel = null;
public static function getPluralModelLabel(): string
{
return __('achiziții');
}
protected static ?int $navigationSort = 43;
public static function form(Schema $schema): Schema
{
return $schema->components([
Schemas\Components\Section::make(__('Antet'))
->columns(3)
->schema([
Forms\Components\TextInput::make('number')->label(__('Nr.'))->disabled()->dehydrated(false)->placeholder(__('Generat automat')),
Forms\Components\Select::make('supplier_id')
->label(__('Furnizor'))
->options(fn () => Supplier::where('is_active', true)->pluck('name', 'id'))
->searchable()
->required(),
Forms\Components\Select::make('warehouse_id')
->label(__('Depozit țintă'))
->options(fn () => Warehouse::where('is_active', true)->pluck('name', 'id'))
->default(fn () => Warehouse::where('is_default', true)->value('id'))
->required(),
Forms\Components\Select::make('status')
->options(\App\Support\I18n::opts(Purchase::STATUSES))
->default('draft')
->required(),
Forms\Components\DatePicker::make('order_date')->label(__('Data comandă'))->default(today())->required(),
Forms\Components\DatePicker::make('expected_at')->label(__('Așteptată')),
Forms\Components\DatePicker::make('received_at')->label(__('Recepționată')),
Forms\Components\DatePicker::make('paid_at')->label(__('Plătită'))->columnSpanFull(),
]),
Forms\Components\Textarea::make('notes')->label(__('Observații'))->columnSpanFull()->rows(2),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('number')->label(__('Nr.'))->searchable()->sortable(),
Tables\Columns\TextColumn::make('supplier.name')->label(__('Furnizor'))->searchable(),
Tables\Columns\TextColumn::make('order_date')->label(__('Comandată'))->date('d.m.Y'),
Tables\Columns\TextColumn::make('expected_at')->label(__('Așteptată'))->date('d.m.Y')->placeholder('—'),
Tables\Columns\TextColumn::make('received_at')->label(__('Recepționată'))->date('d.m.Y')->placeholder('—'),
Tables\Columns\TextColumn::make('status')
->formatStateUsing(fn ($s) => __(Purchase::STATUSES[$s] ?? $s))
->badge()
->colors([
'gray' => ['draft'],
'warning' => ['ordered'],
'info' => ['partial'],
'success' => ['received'],
'danger' => ['cancelled'],
]),
Tables\Columns\TextColumn::make('received_progress')
->label(__('Progres'))
->state(function (Purchase $r) {
$items = $r->items;
$ord = (float) $items->sum('qty');
$rec = (float) $items->sum('qty_received');
return $ord > 0 ? sprintf('%d%%', (int) round($rec / $ord * 100)) : '—';
})
->alignRight(),
Tables\Columns\TextColumn::make('total')->money('MDL')->alignRight(),
])
->filters([
Tables\Filters\SelectFilter::make('status')->options(\App\Support\I18n::opts(Purchase::STATUSES)),
Tables\Filters\SelectFilter::make('supplier_id')
->label(__('Furnizor'))
->options(fn () => Supplier::pluck('name', 'id')),
])
->actions([
Actions\Action::make('receive_all')
->label(__('Recepție totală'))
->icon('heroicon-m-check-circle')
->color('success')
->visible(fn (Purchase $r) => ! in_array($r->status, ['received', 'cancelled', 'draft'], true))
->requiresConfirmation()
->modalDescription(__('Se vor crea batch-uri pentru toate restanțele rămase în depozitul țintă.'))
->action(function (Purchase $r) {
try {
$r->receiveAllRemaining();
Notification::make()
->title(__('Recepție completă — batch-uri create'))
->success()
->send();
} catch (\Throwable $e) {
Notification::make()
->title(__('Eroare'))
->body($e->getMessage())
->danger()
->send();
}
}),
Actions\EditAction::make(),
Actions\DeleteAction::make(),
])
->defaultSort('order_date', 'desc');
}
public static function getRelations(): array
{
return [
RelationManagers\ItemsRelationManager::class,
];
}
public static function getPages(): array
{
return [
'index' => Pages\ListPurchases::route('/'),
'create' => Pages\CreatePurchase::route('/create'),
'edit' => Pages\EditPurchase::route('/{record}/edit'),
];
}
}