0e3f9e8bca
AI model selector:
- AiAssistantService::MODEL_DEFAULTS and MODEL_OPTIONS const tables (3 picks per
provider: Claude Opus 4.7 / Sonnet 4.6 / Haiku 4.5, OpenAI 4o / 4o-mini,
Gemini 1.5 Pro / Flash). Default upgraded from Sonnet 4.5 → Sonnet 4.6.
- modelFor(provider, company?) resolves tenant override > global default.
- All 8 hardcoded model strings replaced with modelFor() across callClaude
(chat with tool-use), callOpenAI, callGemini (chat), postClaude/postOpenAI/
postGemini (single-shot), and OcrInvoiceService.
- Settings page adds 3 model selectors per provider with persistence at
settings.ai.models.{claude,gpt,gemini}.
i18n nav labels:
- TireSet / Bodyshop / Subcontractor / SubcontractJob / PricingCoefficient /
ShopCustomer resources: getNavigationLabel / getNavigationGroup /
getModelLabel / getPluralModelLabel return __()-wrapped strings.
- 20 keys added to lang/ru.json and lang/en.json.
Tests (4 new): default model, tenant override wins, unknown provider falls
back to claude default, options dictionary contains each default key.
Full suite: 134 passed.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
106 lines
3.9 KiB
PHP
106 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Tenant\Resources;
|
|
|
|
use App\Filament\Tenant\Resources\SubcontractorResource\Pages;
|
|
use App\Models\Tenant\Subcontractor;
|
|
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 SubcontractorResource extends Resource
|
|
{
|
|
protected static ?string $model = Subcontractor::class;
|
|
|
|
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-user-group';
|
|
|
|
protected static ?string $navigationLabel = 'Subcontractori';
|
|
|
|
protected static string|\UnitEnum|null $navigationGroup = 'Subcontractare';
|
|
|
|
protected static ?string $modelLabel = 'subcontractor';
|
|
|
|
protected static ?string $pluralModelLabel = 'subcontractori';
|
|
|
|
protected static ?int $navigationSort = 70;
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return $schema->components([
|
|
Schemas\Components\Section::make()->columns(2)->schema([
|
|
Forms\Components\TextInput::make('name')->label('Nume')->required()->maxLength(160),
|
|
Forms\Components\Select::make('specialty')
|
|
->label('Specialitate')
|
|
->options(array_combine(Subcontractor::SPECIALTIES, Subcontractor::SPECIALTIES))
|
|
->searchable(),
|
|
Forms\Components\TextInput::make('phone')->label('Telefon')->tel()->maxLength(40),
|
|
Forms\Components\TextInput::make('email')->email()->maxLength(120),
|
|
Forms\Components\Select::make('rating')
|
|
->label('Rating')
|
|
->options([1 => '★', 2 => '★★', 3 => '★★★', 4 => '★★★★', 5 => '★★★★★'])
|
|
->default(3),
|
|
Forms\Components\Toggle::make('is_active')->label('Activ')->default(true),
|
|
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('name')->searchable()->sortable(),
|
|
Tables\Columns\TextColumn::make('specialty')->badge()->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('phone')->copyable()->placeholder('—'),
|
|
Tables\Columns\TextColumn::make('rating')->formatStateUsing(fn ($s) => str_repeat('★', (int) $s)),
|
|
Tables\Columns\TextColumn::make('jobs_count')->counts('jobs')->label('Lucrări')->alignRight(),
|
|
Tables\Columns\IconColumn::make('is_active')->boolean(),
|
|
])
|
|
->filters([
|
|
Tables\Filters\TernaryFilter::make('is_active')->label('Activi'),
|
|
])
|
|
->actions([
|
|
Actions\EditAction::make(),
|
|
Actions\DeleteAction::make(),
|
|
])
|
|
->emptyStateHeading('Niciun subcontractor')
|
|
->emptyStateDescription('Adaugă atelierele terțe la care trimiți lucrări (turbo, cutii, vopsitorie, PDR) și urmărește costul + marja.')
|
|
->emptyStateIcon('heroicon-o-user-group')
|
|
->defaultSort('name');
|
|
}
|
|
|
|
|
|
public static function getNavigationLabel(): string
|
|
{
|
|
return __('Subcontractori');
|
|
}
|
|
|
|
public static function getNavigationGroup(): ?string
|
|
{
|
|
return __('Subcontractare');
|
|
}
|
|
|
|
public static function getModelLabel(): string
|
|
{
|
|
return __('subcontractor');
|
|
}
|
|
|
|
public static function getPluralModelLabel(): string
|
|
{
|
|
return __('subcontractori');
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListSubcontractors::route('/'),
|
|
'create' => Pages\CreateSubcontractor::route('/create'),
|
|
'edit' => Pages\EditSubcontractor::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|