feat(units): add Unit-of-measure nomenclator (per-tenant, 3 langs)

- Migration: create `units` table + nullable unit_id FK on
  parts / wo_parts / purchase_items / labor_parts. Seeds ~11 standard
  units (buc/set/l/ml/kg/g/m/cm/m²/oră/pack) for every existing
  tenant and backfills unit_id by matching the legacy string `unit`
  column. Keeps `unit` string as fallback so old code paths keep
  rendering.
- Unit model: label(locale), forSelect(locale), labelFor(id, code)
  helpers. All 4 owner models get unitModel() relation + unitLabel()
  accessor.
- UnitResource under Depozit group with Filament UI: code, sort,
  is_active + separate name_ro/name_ru/name_en fields.
- Filament forms/tables updated: Part / PurchaseItem / LaborPart /
  WorkOrderPart now use Select('unit_id')->options(Unit::forSelect())
  for input and TextColumn->getStateUsing(unitLabel()) for display.
  Selecting a part auto-fills unit_id when the source has one.
- +10 translations for the new resource + defaults; nav.label
  'Unități de măsură' added to all 3 lang files.

All 306 tests pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-16 20:52:06 +00:00
parent cb8673c8a6
commit 00fb4a304a
19 changed files with 408 additions and 15 deletions
@@ -36,11 +36,11 @@ class DefaultPartsRelationManager extends RelationManager
->live()
->afterStateUpdated(function ($state, Set $set) {
if ($state && $p = Part::find($state)) {
$set('unit', $p->unit);
if ($p->unit_id) { $set('unit_id', $p->unit_id); } else { $set('unit', $p->unit); }
}
}),
Forms\Components\TextInput::make('qty')->label(__('Cantitate'))->numeric()->default(1)->required(),
Forms\Components\TextInput::make('unit')->label(__('UM'))->default('buc')->maxLength(16),
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')),
]);
}
@@ -52,7 +52,7 @@ class DefaultPartsRelationManager extends RelationManager
Tables\Columns\TextColumn::make('part.name')->label(__('Piesă'))->wrap(),
Tables\Columns\TextColumn::make('part.article')->label(__('Cod'))->placeholder('—'),
Tables\Columns\TextColumn::make('qty')->label(__('Cant.'))->alignRight(),
Tables\Columns\TextColumn::make('unit')->label(__('UM')),
Tables\Columns\TextColumn::make('unit_id')->label(__('UM'))->getStateUsing(fn ($record) => $record->unitLabel()),
])
->headerActions([
Actions\CreateAction::make()
@@ -93,7 +93,7 @@ class PartResource extends Resource
->columns(4)
->schema([
Forms\Components\TextInput::make('qty')->label(__('Cantitate'))->numeric()->default(0)->required(),
Forms\Components\TextInput::make('unit')->label(__('UM'))->default('buc')->maxLength(16),
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')),
Forms\Components\TextInput::make('min_qty')->label(__('Minim'))->numeric()->default(0),
Forms\Components\Toggle::make('is_active')->label(__('Activ'))->default(true),
Forms\Components\Toggle::make('is_published')
@@ -159,7 +159,7 @@ class PartResource extends Resource
->alignRight()
->color(fn ($state) => (float) $state > 0 ? 'info' : null)
->toggleable(),
Tables\Columns\TextColumn::make('unit')->label(__('UM')),
Tables\Columns\TextColumn::make('unit_id')->label(__('UM'))->getStateUsing(fn ($record) => $record->unitLabel()),
Tables\Columns\TextColumn::make('location')->label(__('Loc.'))->placeholder('—'),
Tables\Columns\TextColumn::make('sell_price')->label(__('Preț vz.'))->money('MDL')->alignRight(),
Tables\Columns\IconColumn::make('is_published')->label(__('Magazin'))->boolean()->toggleable(),
@@ -40,7 +40,7 @@ class ItemsRelationManager extends RelationManager
if ($state && $part = Part::find($state)) {
$set('name', $part->name);
$set('article', $part->article);
$set('unit', $part->unit);
if ($part->unit_id) { $set('unit_id', $part->unit_id); } else { $set('unit', $part->unit); }
$set('buy_price', $part->buy_price);
}
})
@@ -48,7 +48,7 @@ class ItemsRelationManager extends RelationManager
Forms\Components\TextInput::make('name')->label(__('Denumire'))->required()->columnSpanFull(),
Forms\Components\TextInput::make('article')->label(__('Cod articol')),
Forms\Components\TextInput::make('qty')->label(__('Cantitate'))->numeric()->default(1)->required(),
Forms\Components\TextInput::make('unit')->label(__('UM'))->default('buc'),
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')),
Forms\Components\TextInput::make('buy_price')->label(__('Preț achiziție'))->numeric()->required(),
]);
}
@@ -66,7 +66,7 @@ class ItemsRelationManager extends RelationManager
->alignRight()
->color(fn ($state, $record) => $record->isFullyReceived() ? 'success' : ((float) $state > 0 ? 'warning' : 'gray'))
->formatStateUsing(fn ($state, $record) => sprintf('%.2f / %.2f', (float) $state, (float) $record->qty)),
Tables\Columns\TextColumn::make('unit')->label(__('UM')),
Tables\Columns\TextColumn::make('unit_id')->label(__('UM'))->getStateUsing(fn ($record) => $record->unitLabel()),
Tables\Columns\TextColumn::make('buy_price')->money('MDL')->alignRight(),
Tables\Columns\TextColumn::make('total')->money('MDL')->alignRight(),
])
@@ -84,7 +84,7 @@ class ItemsRelationManager extends RelationManager
->schema([
Forms\Components\Placeholder::make('outstanding')
->label(__('Restanță'))
->content(fn (PurchaseItem $r) => sprintf('%.2f %s', $r->outstanding(), $r->unit ?? 'buc')),
->content(fn (PurchaseItem $r) => sprintf('%.2f %s', $r->outstanding(), $r->unitLabel() ?: 'buc')),
Forms\Components\TextInput::make('qty')
->label(__('Cantitate recepționată'))
->numeric()
@@ -0,0 +1,104 @@
<?php
namespace App\Filament\Tenant\Resources;
use App\Filament\Tenant\Resources\UnitResource\Pages;
use App\Models\Tenant\Unit;
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 UnitResource extends Resource
{
protected static ?string $model = Unit::class;
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-scale';
public static function getNavigationLabel(): string
{
return __('nav.label.Unități de măsură');
}
public static function getNavigationGroup(): ?string
{
return __('nav.group.Depozit');
}
protected static ?int $navigationSort = 48;
public static function getModelLabel(): string
{
return __('unitate de măsură');
}
public static function getPluralModelLabel(): string
{
return __('unități de măsură');
}
public static function form(Schema $schema): Schema
{
return $schema->components([
Schemas\Components\Section::make(__('Cod & sortare'))
->columns(3)
->schema([
Forms\Components\TextInput::make('code')
->label(__('Cod'))
->required()
->maxLength(16)
->helperText(__('Codul intern (buc, l, kg, ...) — stocat în DB.')),
Forms\Components\TextInput::make('sort_order')
->label(__('Ordine'))
->numeric()
->default(100),
Forms\Components\Toggle::make('is_active')
->label(__('Activ'))
->default(true),
]),
Schemas\Components\Section::make(__('Nume în cele 3 limbi'))
->columns(3)
->schema([
Forms\Components\TextInput::make('name_ro')->label('Română (RO)')->required()->maxLength(40),
Forms\Components\TextInput::make('name_ru')->label('Русский (RU)')->required()->maxLength(40),
Forms\Components\TextInput::make('name_en')->label('English (EN)')->required()->maxLength(40),
]),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('sort_order')->label(__('Ordine'))->sortable(),
Tables\Columns\TextColumn::make('code')->searchable()->sortable(),
Tables\Columns\TextColumn::make('name_ro')->label('RO')->searchable(),
Tables\Columns\TextColumn::make('name_ru')->label('RU')->searchable(),
Tables\Columns\TextColumn::make('name_en')->label('EN')->searchable(),
Tables\Columns\IconColumn::make('is_active')->label(__('Activ'))->boolean(),
])
->defaultSort('sort_order')
->filters([
Tables\Filters\TernaryFilter::make('is_active')->label(__('Active')),
])
->actions([
Actions\EditAction::make(),
Actions\DeleteAction::make(),
])
->emptyStateHeading(__('Niciun UM înregistrat'))
->emptyStateDescription(__('Migrarea inițială a creat setul standard. Adaugă altele dacă ai nevoie (ex: rulou, doză, cutie).'))
->emptyStateIcon('heroicon-o-scale');
}
public static function getPages(): array
{
return [
'index' => Pages\ListUnits::route('/'),
'create' => Pages\CreateUnit::route('/create'),
'edit' => Pages\EditUnit::route('/{record}/edit'),
];
}
}
@@ -0,0 +1,11 @@
<?php
namespace App\Filament\Tenant\Resources\UnitResource\Pages;
use App\Filament\Tenant\Resources\UnitResource;
use Filament\Resources\Pages\CreateRecord;
class CreateUnit extends CreateRecord
{
protected static string $resource = UnitResource::class;
}
@@ -0,0 +1,17 @@
<?php
namespace App\Filament\Tenant\Resources\UnitResource\Pages;
use App\Filament\Tenant\Resources\UnitResource;
use Filament\Actions;
use Filament\Resources\Pages\EditRecord;
class EditUnit extends EditRecord
{
protected static string $resource = UnitResource::class;
protected function getHeaderActions(): array
{
return [Actions\DeleteAction::make()];
}
}
@@ -0,0 +1,17 @@
<?php
namespace App\Filament\Tenant\Resources\UnitResource\Pages;
use App\Filament\Tenant\Resources\UnitResource;
use Filament\Actions;
use Filament\Resources\Pages\ListRecords;
class ListUnits extends ListRecords
{
protected static string $resource = UnitResource::class;
protected function getHeaderActions(): array
{
return [Actions\CreateAction::make()->label(__('Adaugă UM'))];
}
}
@@ -42,7 +42,7 @@ class PartsRelationManager extends RelationManager
$set('name', $part->name);
$set('article', $part->article);
$set('brand', $part->brand);
$set('unit', $part->unit);
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);
}
@@ -52,7 +52,7 @@ class PartsRelationManager extends RelationManager
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\TextInput::make('unit')->label(__('UM'))->maxLength(16)->default('buc'),
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),