7077fff3b3
- Convert all remaining static \$modelLabel/\$pluralModelLabel to getter methods with __() (AppointmentResource, WorkOrderResource, MasterResource, ServiceTemplateResource, LaborResource, and 33 others) - Safe blade wrap v2 (37 files, 201 wraps): fixed the regex to not match `->`, `=>`, `!<` — previous aggressive pass broke @if directives - Bulk-translate lowercase model-label keys (programări, fișe lucru, tehnicieni, șabloane servicii, norme-ore, etc.) — these were the RO strings appearing in page titles/breadcrumbs - Add human RU/EN for mechanic-kpi (Mecanic/Lucrări/Norma ore/etc.) and calendar-board words Tests 306 green. Blade compiles cleanly. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
93 lines
3.2 KiB
PHP
93 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Tenant\Resources;
|
|
|
|
use App\Filament\Tenant\Resources\WarehouseResource\Pages;
|
|
use App\Models\Tenant\Warehouse;
|
|
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 WarehouseResource extends Resource
|
|
{
|
|
protected static ?string $model = Warehouse::class;
|
|
|
|
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-building-storefront';
|
|
|
|
public static function getNavigationLabel(): string
|
|
{
|
|
return __('nav.label.Depozite');
|
|
}
|
|
|
|
public static function getNavigationGroup(): ?string
|
|
{
|
|
return __('nav.group.Depozit');
|
|
}
|
|
|
|
protected static ?string $modelLabel = null;
|
|
|
|
public static function getModelLabel(): string
|
|
{
|
|
return __('depozit');
|
|
}
|
|
|
|
protected static ?string $pluralModelLabel = null;
|
|
|
|
public static function getPluralModelLabel(): string
|
|
{
|
|
return __('depozite');
|
|
}
|
|
|
|
protected static ?int $navigationSort = 38;
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return $schema->components([
|
|
Schemas\Components\Section::make()->columns(2)->schema([
|
|
Forms\Components\TextInput::make('code')->label(__('Cod'))->required()->maxLength(32),
|
|
Forms\Components\TextInput::make('name')->label(__('Denumire'))->required()->maxLength(120),
|
|
Forms\Components\TextInput::make('address')->label(__('Adresă'))->columnSpanFull()->maxLength(200),
|
|
Forms\Components\Toggle::make('is_default')->label(__('Depozit implicit')),
|
|
Forms\Components\Toggle::make('is_active')->label(__('Activ'))->default(true),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('code')->searchable()->sortable(),
|
|
Tables\Columns\TextColumn::make('name')->searchable()->sortable(),
|
|
Tables\Columns\TextColumn::make('address')->placeholder('—')->toggleable(),
|
|
Tables\Columns\IconColumn::make('is_default')->label(__('Implicit'))->boolean(),
|
|
Tables\Columns\IconColumn::make('is_active')->label(__('Activ'))->boolean(),
|
|
Tables\Columns\TextColumn::make('batches_count')
|
|
->counts('batches')
|
|
->label(__('Loturi'))
|
|
->alignRight(),
|
|
])
|
|
->actions([
|
|
Actions\EditAction::make(),
|
|
Actions\DeleteAction::make(),
|
|
])
|
|
->emptyStateHeading(__('Niciun depozit'))
|
|
->emptyStateDescription(__('Un depozit implicit a fost creat la migrare. Adaugă altele dacă ai locații fizice separate (sucursală, hală, mobil).'))
|
|
->emptyStateIcon('heroicon-o-building-storefront')
|
|
->defaultSort('code');
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListWarehouses::route('/'),
|
|
'create' => Pages\CreateWarehouse::route('/create'),
|
|
'edit' => Pages\EditWarehouse::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|