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),
+11 -1
View File
@@ -10,7 +10,17 @@ class LaborPart extends Model
{
use BelongsToTenant;
protected $fillable = ['company_id', 'labor_id', 'part_id', 'qty', 'unit'];
protected $fillable = ['company_id', 'labor_id', 'part_id', 'qty', 'unit', 'unit_id'];
public function unitModel(): BelongsTo
{
return $this->belongsTo(Unit::class, 'unit_id');
}
public function unitLabel(?string $locale = null): string
{
return Unit::labelFor($this->unit_id, $this->unit, $locale);
}
protected $casts = ['qty' => 'decimal:2'];
+12 -1
View File
@@ -44,12 +44,23 @@ class Part extends Model implements HasMedia
protected $fillable = [
'company_id', 'name', 'article', 'brand', 'category',
'qty', 'qty_reserved', 'unit', 'min_qty',
'qty', 'qty_reserved', 'unit', 'unit_id', 'min_qty',
'buy_price', 'sell_price', 'hidden_markup_pct',
'location', 'barcode', 'preferred_supplier_id',
'is_active', 'is_published', 'notes',
];
public function unitModel()
{
return $this->belongsTo(Unit::class, 'unit_id');
}
/** Localised UM label (Unit::label() or the legacy `unit` string). */
public function unitLabel(?string $locale = null): string
{
return Unit::labelFor($this->unit_id, $this->unit, $locale);
}
protected $casts = [
'qty' => 'decimal:2',
'qty_reserved' => 'decimal:3',
+11 -1
View File
@@ -12,9 +12,19 @@ class PurchaseItem extends Model
protected $fillable = [
'company_id', 'purchase_id', 'part_id',
'name', 'article', 'qty', 'qty_received', 'unit', 'buy_price', 'total', 'received',
'name', 'article', 'qty', 'qty_received', 'unit', 'unit_id', 'buy_price', 'total', 'received',
];
public function unitModel()
{
return $this->belongsTo(Unit::class, 'unit_id');
}
public function unitLabel(?string $locale = null): string
{
return Unit::labelFor($this->unit_id, $this->unit, $locale);
}
protected $casts = [
'qty' => 'decimal:2',
'qty_received' => 'decimal:2',
+56
View File
@@ -0,0 +1,56 @@
<?php
namespace App\Models\Tenant;
use App\Models\Concerns\BelongsToTenant;
use Illuminate\Database\Eloquent\Model;
class Unit extends Model
{
use BelongsToTenant;
protected $fillable = [
'company_id', 'code', 'name_ro', 'name_ru', 'name_en',
'is_active', 'sort_order',
];
protected $casts = [
'is_active' => 'bool',
'sort_order' => 'int',
];
/** Returns the localised name (name_ro / name_ru / name_en). Fallback: name_ro, then code. */
public function label(?string $locale = null): string
{
$locale = $locale ?: app()->getLocale();
$col = 'name_' . $locale;
return $this->{$col} ?: ($this->name_ro ?: $this->code);
}
/** Options array keyed by id for Filament Select. */
public static function forSelect(?string $locale = null): array
{
return static::query()
->where('is_active', true)
->orderBy('sort_order')
->orderBy('code')
->get()
->mapWithKeys(fn (Unit $u) => [$u->id => $u->label($locale)])
->all();
}
/** Look up label from either a Unit id or a legacy code string. */
public static function labelFor(?int $unitId, ?string $codeFallback = null, ?string $locale = null): string
{
if ($unitId) {
$u = static::find($unitId);
if ($u) return $u->label($locale);
}
if ($codeFallback) {
$u = static::where('code', $codeFallback)->first();
if ($u) return $u->label($locale);
return $codeFallback;
}
return '';
}
}
+11 -1
View File
@@ -22,11 +22,21 @@ class WorkOrderPart extends Model
protected $fillable = [
'company_id', 'work_order_id', 'part_id',
'name', 'article', 'brand',
'qty', 'unit', 'buy_price', 'sell_price',
'qty', 'unit', 'unit_id', 'buy_price', 'sell_price',
'discount_pct', 'total', 'status', 'notes',
'requires_approval', 'approved_at', 'approval_token', 'declined_at',
];
public function unitModel()
{
return $this->belongsTo(Unit::class, 'unit_id');
}
public function unitLabel(?string $locale = null): string
{
return Unit::labelFor($this->unit_id, $this->unit, $locale);
}
protected $casts = [
'qty' => 'decimal:2',
'buy_price' => 'decimal:2',