f7fc69077b
- Convert static $modelLabel/$pluralModelLabel/$title to getter methods - Wrap ->label()/->placeholder()/->helperText()/->description()/->title()/->body() args - Wrap Section::make()/Fieldset::make()/Notification::make()->title() args - Fix RelationManagers::getTitle() signature to match parent (Model, string) - Fix Pages::getTitle() to instance method (BasePage::getTitle is non-static) - Extend lang/ru.json + lang/en.json with 700+ common terms; identity fallback for the rest - Remove duplicate getters in 5 resources that had manual getModelLabel already All 306 tests pass. Missing translations fall back to the RO key so the UI never breaks. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
162 lines
6.7 KiB
PHP
162 lines
6.7 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(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(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'),
|
|
];
|
|
}
|
|
}
|