Brief production
Projet : {{ $brief->project?->name ?? '—' }}
Brief : {{ $brief->title }}
| Nom | Fournisseur | Description | Délai | Prix HT | Date | Statut | Actions |
|---|---|---|---|---|---|---|---|
| {{ $offer->name ?: '—' }} | {{ $offer->supplier?->name ?? '—' }} | {{ $offer->description ?: '—' }} | {{ $offer->formattedDeliveryDays() }} |
{{ number_format($offer->price, 3, ',', ' ') }} DT
@if(!empty($offer->pricing_tiers))
@foreach($offer->pricing_tiers as $tier)
@endif
{{ number_format((float) ($tier['quantity'] ?? 0), 0, ',', ' ') }} pcs → {{ number_format((float) ($tier['price'] ?? 0), 3, ',', ' ') }} DT
@endforeach
|
{{ $offer->created_at?->format('d/m/Y H:i') }} |
@if($offer->is_selected)
Retenue
@if($brief->production_quantity || $brief->selling_price)
@else
En attente
@endif
@if($brief->production_quantity) {{ number_format((int) $brief->production_quantity, 0, ',', ' ') }} pcs @endif @if($brief->production_quantity && $brief->selling_price) · @endif @if($brief->selling_price) {{ number_format((float) $brief->selling_price, 3, ',', ' ') }} DT vente @endif @endif |
@if($canSelectOffer && ! $offer->is_selected)
@endif
@if($canManageOffers)
@endif
|
|
Aucune offre pour ce brief. @if($canManageOffers) @endif |
|||||||