Archivio assistenza TecnoRepair
Elenco filtrabile delle schede legacy importate da MDB e collegate al fornitore operativo, tipicamente NETHOME.
Import comando: {{ $this->importCommandHint }}
Totali: {{ $counters['all'] ?? 0 }}
Aperti: {{ $counters['open'] ?? 0 }}
In attesa: {{ $counters['waiting'] ?? 0 }}
Chiusi: {{ $counters['closed'] ?? 0 }}
@forelse($this->rows as $scheda) @empty @endforelse
Scheda Cliente Prodotto Seriali Stato Fornitore Azioni
{{ $scheda->display_title }}
Ingresso {{ optional($scheda->date_received)->format('d/m/Y') ?: '-' }}
{{ $scheda->customer_name ?: '-' }}
{{ $scheda->customer_phone ?: ($scheda->customer_email ?: 'recapito non presente') }}
{{ $scheda->product_model ?: '-' }}
{{ $scheda->product_code ?: 'codice non presente' }}
{{ $scheda->serial_label }} {{ $scheda->status_label ?: 'Stato non indicato' }} @if($scheda->fornitore)
{{ $scheda->fornitore->ragione_sociale ?: ('Fornitore #' . $scheda->fornitore->id) }}
@if($scheda->fornitore->is_tecnorepair_primary)
Centro primario
@endif @else - @endif
Nessuna scheda legacy importata. Usa il comando indicato sopra per caricare l'archivio TecnoRepair.
@php($selected = $this->selectedScheda) @if(! $selected)
Seleziona una riga dall'elenco per aprire la scheda tecnica legacy con cliente, seriali, allegati e note operative.
@else
{{ $selected->display_title }}
Importata da {{ $selected->imported_from_path ?: 'sorgente sconosciuta' }}
{{ $selected->status_label ?: 'Stato non indicato' }}
Cliente
{{ $selected->customer_name ?: '-' }}
{{ $selected->customer_phone ?: '-' }}
{{ $selected->customer_phone_alt ?: '-' }}
{{ $selected->customer_email ?: '-' }}
Prodotto
{{ $selected->product_model ?: '-' }}
Codice {{ $selected->product_code ?: '-' }}
Seriali {{ $selected->serial_label }}
Difetto segnalato
{{ $selected->defect_reported ?: 'Non valorizzato' }}
Riparazione / comunicazioni
{{ $selected->repair_description ?: 'Nessuna descrizione riparazione' }}
@if($selected->communications)
{{ $selected->communications }}
@endif
Fornitore e allegati
@if($selected->fornitore) @php($fornitoreUrl = $this->getFornitoreUrl((int) $selected->fornitore->id)) @if($fornitoreUrl) {{ $selected->fornitore->ragione_sociale ?: ('Fornitore #' . $selected->fornitore->id) }} @else {{ $selected->fornitore->ragione_sociale ?: ('Fornitore #' . $selected->fornitore->id) }} @endif @else Nessun fornitore collegato @endif
@forelse($selected->allegati as $allegato)
{{ $allegato->file_name ?: 'Allegato legacy' }}
{{ $allegato->file_path ?: 'Percorso non disponibile' }}
@empty
Nessun allegato legacy indicizzato.
@endforelse
@endif