e48ef1b755
Mechanic Workflow (Stage 7): - /app/mechanic Filament page filtered to master_id = auth user - Kanban 4 columns (in_work / awaiting_parts / ready / recent), each card shows WO#, plate, client, complaint summary, photo presence - 2 KPI tiles (active now / closed today) - Mobile-responsive grid (auto-fit, minmax 260px) WarehouseService: - issueNow(WorkOrderPart) — consume reservations immediately scoped to one line, without closing the WO (mechanic physically takes part now) - returnPart(WorkOrderPart, qty?, notes?) — refund to stock as new batch at original buy_price, writes `return` event, capped at consumed total WO PartsRelationManager: - "Eliberează" action — visible when active reservation exists - "Restituire" action — visible when consumed reservation exists, with qty modal + notes Scan Center (Stage 14): - PartResource "QR" action — per-part SVG QR with payload PART:<article|id> - BulkAction "Tipărește etichete QR" → /parts/labels?ids=N,M (HTML A4 sheet, 3-col grid, print CSS hides toolbar) - /app/scan Filament page using html5-qrcode 2.3.8 (CDN), auto-picks back camera, decodes → Livewire dispatches scanner-decoded → resolveAndRedirect - Lookup matches PART:N prefix, parts.article, parts.barcode, or numeric id - Manual input fallback for browsers without camera Tests (6 new): - WarehouseIssueReturnTest (3): issueNow consumes immediately; returnPart creates positive batch + return event; over-return is capped - ScannerLookupTest (3): PART: prefix lookup, raw barcode lookup, unknown miss Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
86 lines
2.6 KiB
PHP
86 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Tenant\Pages;
|
|
|
|
use App\Models\Tenant\WorkOrder;
|
|
use Filament\Pages\Page;
|
|
|
|
/**
|
|
* Mobile-first dashboard for a single mechanic — shows ONLY work orders
|
|
* assigned to the currently logged-in user (master_id = auth()->id()).
|
|
* Kanban-style grouped by status.
|
|
*/
|
|
class MechanicBoard extends Page
|
|
{
|
|
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-wrench';
|
|
|
|
protected static ?string $navigationLabel = 'Atelierul meu';
|
|
|
|
protected static string|\UnitEnum|null $navigationGroup = 'Service';
|
|
|
|
protected static ?int $navigationSort = 25;
|
|
|
|
protected static ?string $title = 'Atelierul meu';
|
|
|
|
protected string $view = 'filament.tenant.pages.mechanic-board';
|
|
|
|
public function getColumns(): array
|
|
{
|
|
$userId = auth()->id();
|
|
if (! $userId) return [];
|
|
|
|
$all = WorkOrder::with(['client', 'vehicle'])
|
|
->where('master_id', $userId)
|
|
->whereIn('status', ['in_work', 'awaiting_parts', 'ready', 'done', 'approved', 'diagnosis'])
|
|
->orderBy('opened_at', 'desc')
|
|
->get();
|
|
|
|
return [
|
|
[
|
|
'key' => 'in_work',
|
|
'label' => 'În lucru',
|
|
'color' => '#f59e0b',
|
|
'items' => $all->where('status', 'in_work')->values(),
|
|
],
|
|
[
|
|
'key' => 'awaiting_parts',
|
|
'label' => 'Așteaptă piese',
|
|
'color' => '#8b5cf6',
|
|
'items' => $all->whereIn('status', ['awaiting_parts'])->values(),
|
|
],
|
|
[
|
|
'key' => 'ready',
|
|
'label' => 'Gata',
|
|
'color' => '#10b981',
|
|
'items' => $all->where('status', 'ready')->values(),
|
|
],
|
|
[
|
|
'key' => 'recent',
|
|
'label' => 'Recente / restul',
|
|
'color' => '#64748b',
|
|
'items' => $all->whereIn('status', ['done', 'approved', 'diagnosis'])
|
|
->take(20)
|
|
->values(),
|
|
],
|
|
];
|
|
}
|
|
|
|
public function getCounts(): array
|
|
{
|
|
$userId = auth()->id();
|
|
return [
|
|
'active' => $userId
|
|
? WorkOrder::where('master_id', $userId)
|
|
->whereIn('status', ['in_work', 'awaiting_parts', 'ready'])
|
|
->count()
|
|
: 0,
|
|
'closed_today' => $userId
|
|
? WorkOrder::where('master_id', $userId)
|
|
->where('status', 'done')
|
|
->whereDate('closed_at', today())
|
|
->count()
|
|
: 0,
|
|
];
|
|
}
|
|
}
|