{{-- Verify a consignment against what the store said it sent. Form wraps .modal-content: a form opened inside .modal-body is implicitly closed by that div, which would leave the submit button outside it. --}}
| @lang('lang_v1.from_store') | {{ optional($return->store_business)->name }} | @lang('lang_v1.despatched_on') | {{ $return->sent_at ? @format_datetime($return->sent_at) : '--' }} |
|---|---|---|---|
| @lang('lang_v1.notes') | {{ $return->notes }} | ||
@lang('lang_v1.egr_receive_help')
| @lang('business.product') | @lang('lang_v1.lot_number') | @lang('product.exp_date') | @lang('lang_v1.manufacturer') | @lang('lang_v1.qty_sent') | @lang('lang_v1.qty_received') | @lang('lang_v1.discrepancy_note') |
|---|---|---|---|---|---|---|
| {{ $line->product_name }} @if($line->variation_name) ({{ $line->variation_name }}) @endif @if(in_array($sched, ['H','H1','X'])) @lang('lang_v1.schedule') {{ $sched }} @endif | {{ $line->lot_number ?: '--' }} | {{ $line->exp_date ? $line->exp_date->format('d-m-Y') : '--' }} | {{ $line->batch_manufacturer ?: ($line->manufacturer_name ?: '--') }} | {{ @num_format($line->quantity) }} | {{-- Defaults to the despatched quantity; the cap is the despatched figure, since a warehouse cannot receive more than a store sent. --}} |