Stage 7+14 — Mechanic Board + Scan Center
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>
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
<x-filament-panels::page>
|
||||
@php
|
||||
$cols = $this->getColumns();
|
||||
$counts = $this->getCounts();
|
||||
@endphp
|
||||
|
||||
<style>
|
||||
.mb-stats { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
|
||||
.mb-stat {
|
||||
background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
|
||||
padding: 12px 18px; min-width: 140px;
|
||||
}
|
||||
.dark .mb-stat { background: #1f2937; border-color: #374151; }
|
||||
.mb-stat .lbl { font-size: 11px; text-transform: uppercase; color: #6b7280; letter-spacing: .03em; }
|
||||
.mb-stat .val { font-size: 28px; font-weight: 700; color: #111827; }
|
||||
.dark .mb-stat .val { color: #f9fafb; }
|
||||
|
||||
.mb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
|
||||
.mb-col {
|
||||
background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px;
|
||||
padding: 12px; min-height: 200px;
|
||||
}
|
||||
.dark .mb-col { background: #1f2937; border-color: #374151; }
|
||||
.mb-col-head {
|
||||
font-size: 12px; font-weight: 600; text-transform: uppercase;
|
||||
letter-spacing: .04em; padding-bottom: 10px; margin-bottom: 10px;
|
||||
border-bottom: 2px solid; display: flex; justify-content: space-between;
|
||||
}
|
||||
.mb-card {
|
||||
background: #fff; border-radius: 10px; padding: 12px 14px;
|
||||
margin-bottom: 8px; cursor: pointer; transition: transform .1s, box-shadow .1s;
|
||||
border: 1px solid #e5e7eb; text-decoration: none; color: inherit; display: block;
|
||||
}
|
||||
.dark .mb-card { background: #111827; border-color: #374151; }
|
||||
.mb-card:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
|
||||
.mb-card .num { font-size: 13px; font-weight: 700; color: #3b82f6; }
|
||||
.mb-card .plate { font-size: 13px; color: #4b5563; }
|
||||
.dark .mb-card .plate { color: #d1d5db; }
|
||||
.mb-card .client { font-size: 12px; color: #6b7280; margin-top: 2px; }
|
||||
.mb-card .complaint {
|
||||
font-size: 12px; color: #374151; margin-top: 8px;
|
||||
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
|
||||
}
|
||||
.dark .mb-card .complaint { color: #e5e7eb; }
|
||||
.mb-empty { color: #9ca3af; text-align: center; padding: 20px 8px; font-size: 12px; }
|
||||
</style>
|
||||
|
||||
<div class="mb-stats">
|
||||
<div class="mb-stat">
|
||||
<div class="lbl">Active acum</div>
|
||||
<div class="val">{{ $counts['active'] }}</div>
|
||||
</div>
|
||||
<div class="mb-stat">
|
||||
<div class="lbl">Închise azi</div>
|
||||
<div class="val">{{ $counts['closed_today'] }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-grid">
|
||||
@foreach ($cols as $col)
|
||||
<div class="mb-col">
|
||||
<div class="mb-col-head" style="border-color: {{ $col['color'] }}; color: {{ $col['color'] }};">
|
||||
<span>{{ $col['label'] }}</span>
|
||||
<span>{{ $col['items']->count() }}</span>
|
||||
</div>
|
||||
@forelse ($col['items'] as $wo)
|
||||
<a class="mb-card" href="{{ route('filament.tenant.resources.work-orders.edit', $wo) }}">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
<span class="num">#{{ $wo->number }}</span>
|
||||
<span class="plate">{{ $wo->vehicle?->plate ?? '—' }}</span>
|
||||
</div>
|
||||
<div class="client">{{ $wo->client?->name ?? 'fără client' }} · {{ $wo->vehicle?->make }} {{ $wo->vehicle?->model }}</div>
|
||||
@if ($wo->complaint)
|
||||
<div class="complaint">{{ $wo->complaint }}</div>
|
||||
@endif
|
||||
</a>
|
||||
@empty
|
||||
<div class="mb-empty">—</div>
|
||||
@endforelse
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</x-filament-panels::page>
|
||||
@@ -0,0 +1,111 @@
|
||||
<x-filament-panels::page>
|
||||
<style>
|
||||
.sc-wrap { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
|
||||
.sc-cam {
|
||||
background: #111; border-radius: 12px; overflow: hidden;
|
||||
aspect-ratio: 4 / 3; position: relative;
|
||||
}
|
||||
.sc-cam video, .sc-cam canvas, .sc-cam #reader { width: 100% !important; height: 100% !important; object-fit: cover; }
|
||||
.sc-cam .placeholder {
|
||||
position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
|
||||
color: #94a3b8; font-size: 14px; padding: 24px; text-align: center;
|
||||
}
|
||||
.sc-controls { display: flex; gap: 8px; flex-wrap: wrap; }
|
||||
.sc-btn {
|
||||
padding: 10px 18px; border-radius: 8px; border: 0;
|
||||
background: #3b82f6; color: #fff; font-weight: 500; cursor: pointer;
|
||||
}
|
||||
.sc-btn.gray { background: #64748b; }
|
||||
.sc-btn:disabled { opacity: .5; cursor: not-allowed; }
|
||||
|
||||
.sc-manual {
|
||||
margin-top: 8px; padding: 12px;
|
||||
background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px;
|
||||
}
|
||||
.dark .sc-manual { background: #1f2937; border-color: #374151; }
|
||||
.sc-manual input {
|
||||
width: 100%; padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 8px;
|
||||
font-family: monospace; font-size: 14px;
|
||||
}
|
||||
.dark .sc-manual input { background: #111827; border-color: #374151; color: #f9fafb; }
|
||||
|
||||
.sc-status { padding: 8px 12px; background: #ecfeff; border-left: 3px solid #06b6d4; font-size: 13px; }
|
||||
.dark .sc-status { background: #083344; color: #cffafe; }
|
||||
.sc-status.err { background: #fef2f2; border-left-color: #ef4444; color: #7f1d1d; }
|
||||
</style>
|
||||
|
||||
<div class="sc-wrap" x-data="scanner()" x-init="init()">
|
||||
<div class="sc-cam">
|
||||
<div id="reader"></div>
|
||||
<div class="placeholder" x-show="!running && !error" x-cloak>
|
||||
Apasă „Pornește" pentru a deschide camera.
|
||||
</div>
|
||||
<div class="placeholder" x-show="error" x-text="error" x-cloak></div>
|
||||
</div>
|
||||
|
||||
<div class="sc-controls">
|
||||
<button class="sc-btn" type="button" @click="start" x-show="!running">📷 Pornește scanner</button>
|
||||
<button class="sc-btn gray" type="button" @click="stop" x-show="running">⏹ Oprește</button>
|
||||
</div>
|
||||
|
||||
<div x-show="lastDecoded" class="sc-status" x-cloak>
|
||||
Ultimul cod citit: <strong x-text="lastDecoded"></strong>
|
||||
</div>
|
||||
|
||||
<div class="sc-manual">
|
||||
<form wire:submit="submitManual" style="display:flex;gap:8px;align-items:stretch;">
|
||||
<input type="text" wire:model="manual" placeholder="Sau introdu manual (cod articol / barcode)…" />
|
||||
<button type="submit" class="sc-btn">Caută</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://unpkg.com/html5-qrcode@2.3.8/html5-qrcode.min.js"></script>
|
||||
<script>
|
||||
function scanner() {
|
||||
return {
|
||||
running: false,
|
||||
error: '',
|
||||
lastDecoded: '',
|
||||
scanner: null,
|
||||
|
||||
init() {
|
||||
// Nothing on init — wait for user gesture (camera permission).
|
||||
},
|
||||
|
||||
async start() {
|
||||
this.error = '';
|
||||
try {
|
||||
this.scanner = new Html5Qrcode('reader');
|
||||
const cams = await Html5Qrcode.getCameras();
|
||||
if (!cams.length) { this.error = 'Nicio cameră detectată.'; return; }
|
||||
const camId = cams.find(c => /back|rear|environment/i.test(c.label))?.id || cams[0].id;
|
||||
await this.scanner.start(
|
||||
camId,
|
||||
{ fps: 10, qrbox: { width: 250, height: 250 } },
|
||||
(text) => this.onDecoded(text),
|
||||
() => {}
|
||||
);
|
||||
this.running = true;
|
||||
} catch (e) {
|
||||
this.error = 'Nu pot porni camera: ' + (e.message || e);
|
||||
}
|
||||
},
|
||||
|
||||
async stop() {
|
||||
if (this.scanner) {
|
||||
try { await this.scanner.stop(); await this.scanner.clear(); } catch (e) {}
|
||||
}
|
||||
this.running = false;
|
||||
},
|
||||
|
||||
onDecoded(text) {
|
||||
if (text === this.lastDecoded) return; // debounce duplicate
|
||||
this.lastDecoded = text;
|
||||
this.stop();
|
||||
$wire.dispatch('scanner-decoded', { text });
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</x-filament-panels::page>
|
||||
@@ -0,0 +1,12 @@
|
||||
<div class="space-y-3">
|
||||
<div class="flex justify-center bg-white rounded-lg p-4 border border-gray-200 dark:border-gray-700">
|
||||
<div style="max-width: 240px;">{!! $svg !!}</div>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<div class="text-sm font-semibold">{{ $part->name }}</div>
|
||||
@if ($part->article)
|
||||
<div class="text-xs text-gray-500 dark:text-gray-400 font-mono">{{ $part->article }}</div>
|
||||
@endif
|
||||
<div class="text-xs text-gray-400 mt-1">Payload: <code>{{ $payload }}</code></div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user