{{ __('Spune-i sistemului ce reprezintă fiecare coloană din fișier. Vom salva configurația pentru imporțările viitoare.') }}
| {{ $col }} | @endforeach
|---|
| {{ $row[$col] ?? '' }} | @endforeach
| {{ __('Articol') }} | {{ __('Denumire') }} | {{ __('Brand') }} | {{ __('Cant.') }} | {{ __('Preț') }} | {{ __('Status') }} |
|---|---|---|---|---|---|
| {{ $row['article'] }} | {{ $row['name'] }} | {{ $row['brand'] }} | {{ rtrim(rtrim(number_format($row['qty'], 2), '0'), '.') }} | {{ number_format($row['price'], 2) }} | {{ ['found' => '✅ Găsit', 'new' => '⚠️ Nou', 'no_article' => '❓ Nu găsit'][$row['status']] ?? $row['status'] }} |
{{ __(':n poziții importate în Purchase nouă', ['n' => $previewSummary['total']]) }}