Stage 10 — Bodyshop / PDR / Detailing: damage map + insurance + photos

Completes the 18-stage roadmap (17/18 fully functional, 18 partial).

Schema:
- bodyshop_jobs (type body_repair/pdr/painting/detailing/ceramic/ppf/polishing,
  status workflow, insurance case fields, estimate/approved amounts)
- damage_points (zone, kind, severity) — the damage map

Models:
- BodyshopJob (HasMedia: photos_before/photos_after), auto number BS-YY-NNNN
- DamagePoint with ZONES/KINDS/SEVERITIES

Filament (new "Tinichigerie" nav group):
- BodyshopJobResource: type/status, collapsible insurance section (conditional
  fields), before/after photo upload, estimate/approved amounts
- DamagePointsRelationManager (zone + kind + colour-coded severity)
- Table with type badge, insurance flag, damage count; nav badge = open jobs

Tests (5 new):
- auto number; damage points relation; insurance fields persist;
  detailing types supported; tenant isolation

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-28 06:49:47 +00:00
parent e8078f157a
commit 5e255b7b40
9 changed files with 532 additions and 0 deletions
@@ -0,0 +1,11 @@
<?php
namespace App\Filament\Tenant\Resources\BodyshopJobResource\Pages;
use App\Filament\Tenant\Resources\BodyshopJobResource;
use Filament\Resources\Pages\CreateRecord;
class CreateBodyshopJob extends CreateRecord
{
protected static string $resource = BodyshopJobResource::class;
}
@@ -0,0 +1,17 @@
<?php
namespace App\Filament\Tenant\Resources\BodyshopJobResource\Pages;
use App\Filament\Tenant\Resources\BodyshopJobResource;
use Filament\Actions;
use Filament\Resources\Pages\EditRecord;
class EditBodyshopJob extends EditRecord
{
protected static string $resource = BodyshopJobResource::class;
protected function getHeaderActions(): array
{
return [Actions\DeleteAction::make()];
}
}
@@ -0,0 +1,17 @@
<?php
namespace App\Filament\Tenant\Resources\BodyshopJobResource\Pages;
use App\Filament\Tenant\Resources\BodyshopJobResource;
use Filament\Actions;
use Filament\Resources\Pages\ListRecords;
class ListBodyshopJobs extends ListRecords
{
protected static string $resource = BodyshopJobResource::class;
protected function getHeaderActions(): array
{
return [Actions\CreateAction::make()];
}
}