Files
autocrm/app/Filament/Tenant/Pages/Scanner.php
T
Vasyka 2c66547967 feat: polish finale — work_photos + e-signature + mobile + scan receipt
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>
2026-06-06 07:24:15 +00:00

154 lines
4.6 KiB
PHP

<?php
namespace App\Filament\Tenant\Pages;
use App\Models\Tenant\Part;
use App\Models\Tenant\Purchase;
use App\Models\Tenant\PurchaseItem;
use Filament\Notifications\Notification;
use Filament\Pages\Page;
use Livewire\Attributes\On;
/**
* Mobile scanner: opens camera in the browser, decodes QR/barcode, looks up
* Part by:
* - `PART:<article|id>` payload (our own QR labels)
* - exact barcode match on parts.barcode
* - exact article match on parts.article
* On match → redirect to Part edit page.
*/
class Scanner extends Page
{
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-qr-code';
protected static ?string $navigationLabel = 'Scaner';
protected static string|\UnitEnum|null $navigationGroup = 'Depozit';
protected static ?int $navigationSort = 39;
protected static ?string $title = 'Scaner cod QR / Bare';
protected string $view = 'filament.tenant.pages.scanner';
public string $manual = '';
public ?int $purchaseId = null;
public array $receivedToasts = [];
public function mount(): void
{
// Optional ?purchase=N → receipt mode: scans mark items received
$purchase = request()->query('purchase');
if ($purchase && ctype_digit((string) $purchase)) {
$this->purchaseId = (int) $purchase;
}
}
public function getActivePurchase(): ?Purchase
{
return $this->purchaseId ? Purchase::find($this->purchaseId) : null;
}
public function getPendingItems(): array
{
if (! $this->purchaseId) return [];
return PurchaseItem::where('purchase_id', $this->purchaseId)
->whereColumn('qty_received', '<', 'qty')
->orderBy('article')
->get(['id', 'article', 'name', 'qty', 'qty_received'])
->toArray();
}
#[On('scanner-decoded')]
public function decoded(string $text): void
{
$this->process(trim($text));
}
public function submitManual(): void
{
if (trim($this->manual) === '') return;
$this->process(trim($this->manual));
$this->manual = '';
}
protected function process(string $code): void
{
// Receipt mode: increment qty_received on matching purchase item
if ($this->purchaseId) {
$this->markReceivedByScan($code);
return;
}
$this->resolveAndRedirect($code);
}
protected function markReceivedByScan(string $code): void
{
$clean = str_starts_with($code, 'PART:') ? substr($code, 5) : $code;
$item = PurchaseItem::where('purchase_id', $this->purchaseId)
->whereColumn('qty_received', '<', 'qty')
->where(function ($q) use ($clean, $code) {
$q->where('article', $clean)->orWhere('article', $code);
})
->first();
if (! $item) {
Notification::make()
->title('Articol nu se potrivește comenzii')
->body('Codul ' . $code . ' nu apare în liniile neîncasate ale acestei comenzi.')
->warning()->send();
return;
}
$item->qty_received = min((float) $item->qty, (float) $item->qty_received + 1);
$item->save();
$this->receivedToasts[] = [
'article' => $item->article,
'name' => $item->name,
'qty_received' => (float) $item->qty_received,
'qty_total' => (float) $item->qty,
'at' => now()->format('H:i:s'),
];
Notification::make()
->title("+1 {$item->article}{$item->qty_received}/{$item->qty}")
->success()->send();
}
protected function resolveAndRedirect(string $code): void
{
$clean = $code;
if (str_starts_with($clean, 'PART:')) {
$clean = substr($clean, 5);
}
$part = Part::where(function ($q) use ($clean, $code) {
$q->where('article', $clean)
->orWhere('barcode', $clean)
->orWhere('barcode', $code);
if (ctype_digit($clean)) $q->orWhere('id', (int) $clean);
})
->first();
if (! $part) {
Notification::make()
->title('Cod necunoscut')
->body('Nu am găsit nicio piesă pentru: ' . $code)
->warning()
->send();
return;
}
Notification::make()
->title('Piesă găsită: ' . $part->name)
->success()
->send();
$this->redirect(
route('filament.tenant.resources.parts.edit', ['record' => $part->id])
);
}
}