2c66547967
Closes the remaining ~4% from CONFORMITY-12-15.md. All four modules at or near 100% conformance after this commit. == M13 — work_photos table == Per-line attachment via polymorphic morphTo: a photo can attach to a WorkOrderWork, WorkOrderPart, or directly to a WorkOrder. Fields: work_order_id (always set, for the WO-level photo gallery) subject_type + subject_id (the morphTo target) uploaded_by_id (FK users) path (storage relative) type (defect | before | after | general) caption text taken_at timestamp WorkPhoto model with subject() + workOrder() + uploadedBy() relations, url() helper, BelongsToTenant for isolation. The TYPES constant matches the TZ §13 Photo-to-Work attachment requirement so the UI can drive a dropdown from a single source. == M13 — e-signature + barcode scan on parts issue == warehouse_events gains signature_b64 (longText) and scan_payload (varchar 255). Both nullable — every existing issue/return event stays valid. WarehouseService::issueNow($wop, signatureB64 = null, scanPayload = null) now persists those fields on the resulting WarehouseEvent. Callers upgrade transparently: existing call sites without the named params write null, preserving previous behavior. This unblocks two TZ §13 requirements at once: - "e-signature on issue" (mechanic confirms receipt via canvas signature pad on the warehouse-issue modal) - "scan barcode at issue" (warehouse worker scans the label, the QR payload is logged for traceability) == M13 — MechanicBoard mobile-first 390px == CSS media query @media (max-width: 600px) applies: - mb-stats gap reduced from 12px to 8px, mb-stat width 130px - mb-grid changes from auto-fit columns to single-column stack - mb-col padding 10px (was 12px) - mb-card padding 14px (was 12px) — bigger touch target - card buttons enforce min-height 36px and padding 8px 12px to meet iOS HIG 44px tap-target rule - card-num font 15px, plate 14px — larger for one-handed reading - modal-content becomes 95% width on small screens (was fixed 400px) == M14 — Scanner receipt mode == Scanner page (/app/scan) now reads ?purchase=N from query string. When set, scans no longer redirect to the part edit page — they search the purchase items for a matching article and increment qty_received by 1. UI changes: - Green ribbon above the camera: "Mod recepție — P-2026-0042" with count of pending lines + last 5 scans (article, qty_received/total, timestamp HH:MM:SS) - Link to open the parent Purchase in Filament for manual review - Toast confirms each scan: "+1 W71221 — 3/10" - Unknown article (not in this purchase) warns rather than redirecting - qty_received clamped to qty so over-scans are prevented Page methods getActivePurchase() / getPendingItems() are public so the blade can render the ribbon without an extra Livewire round-trip. == Tests == PolishFinaleTest (8): - work_photo persists with WorkOrderPart as the morphTo subject - same photo model morphs to WorkOrderWork (verifies the polymorphism) - WarehouseEvent fillable accepts signature_b64 + scan_payload columns + round-trips through save/reload - issueNow signature inspects param names + default value via ReflectionMethod (validates the public contract without depending on the full reservation flow) - Scanner in receipt mode increments qty_received on the matching item - Receipt mode warns + no-ops on unknown article (other items untouched) - Receipt mode caps at qty (3 scans for qty=2 still leaves qty_received=2) - getPendingItems() excludes lines where qty_received == qty Suite: 277 passed (777 assertions). Was 269. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
133 lines
6.2 KiB
PHP
133 lines
6.2 KiB
PHP
<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>
|
|
|
|
@if ($purchase = $this->getActivePurchase())
|
|
@php $pending = $this->getPendingItems(); @endphp
|
|
<div style="background:#ecfdf5;border-left:3px solid #10b981;padding:12px 14px;margin-bottom:12px;border-radius:6px;font-size:13px;">
|
|
<div style="font-weight:600;color:#065f46;margin-bottom:4px;">📦 Mod recepție — {{ $purchase->number }}</div>
|
|
<div style="color:#047857;">Scanează codurile pieselor pentru a marca ca recepționate. <strong>{{ count($pending) }}</strong> linii neîncasate.</div>
|
|
@if (! empty($receivedToasts))
|
|
<div style="margin-top:8px;font-size:12px;color:#065f46;">
|
|
<strong>Recepție acum:</strong>
|
|
@foreach (array_reverse(array_slice($receivedToasts, -5)) as $t)
|
|
<div>· {{ $t['at'] }} — {{ $t['article'] }}: {{ rtrim(rtrim(number_format($t['qty_received'], 2), '0'), '.') }}/{{ rtrim(rtrim(number_format($t['qty_total'], 2), '0'), '.') }}</div>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
<div style="margin-top:8px;">
|
|
<a href="{{ route('filament.tenant.resources.purchases.edit', ['record' => $purchase->id]) }}" style="font-size:12px;color:#0369a1;">↗ Deschide comanda în Filament</a>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="sc-wrap" x-data="scanner()" x-init="init()">
|
|
{{-- wire:ignore: html5-qrcode injects the camera DOM here; keep
|
|
Livewire's morph away so an update doesn't tear down the stream. --}}
|
|
<div class="sc-cam" wire:ignore>
|
|
<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>
|