@lang('messages.date'): {{ @format_date($sell->transaction_date ?? '') }}
# | {{ __('sale.product') }} | @if( session()->get('business.enable_lot_number') == 1){{ __('lang_v1.lot_n_expiry') }} | @endif{{ __('sale.qty') }} | {{ __('sale.unit_price') }} | {{ __('sale.discount') }} | {{ __('sale.subtotal') }} |
---|---|---|---|---|---|---|
{{$product->name}} (Exchange) | {{$sells_line->quantity}} | {{@num_format($sells_line->purchase_price_inc_tax)}} | {{@num_format($discount)}} | {{@num_format($price)}} | ||
{{ $sell_line->product->name }}
@if( $sell_line->product->type == 'variable')
- {{ $sell_line->variations->product_variation->name or ''}}
- {{ $sell_line->variations->name or ''}},
@endif
{{ $sell_line->variations->sub_sku or ''}}
@php
$brand = $sell_line->product->brand;
@endphp
@if(!empty($brand->name))
, {{$brand->name}}
@endif
@if(!empty($sell_line->sell_line_note))
{{$sell_line->sell_line_note}} @endif @if($sell_line->is_return == 1) (Return)@endif |
@if( session()->get('business.enable_lot_number') == 1)
{{ $sell_line->lot_details->lot_number or '--' }} @if( session()->get('business.enable_product_expiry') == 1 && !empty($sell_line->lot_details->exp_date)) ({{@format_date($sell_line->lot_details->exp_date)}}) @endif | @endif{{ $sell_line->quantity }} | {{ $sell_line->unit_price }} | {{ $sell_line->get_discount_amount() }} @if($sell_line->line_discount_type == 'percentage') ({{$sell_line->line_discount_amount}}%) @endif | {{ $price }} | |
{{ $modifier->product->name }} - {{ $modifier->variations->name or ''}}, {{ $modifier->variations->sub_sku or ''}} | @if( session()->get('business.enable_lot_number') == 1)@endif | {{ $modifier->quantity }} | {{ $modifier->unit_price }} | {{ $modifier->quantity * $modifier->unit_price_inc_tax }} |
# | Credit Date | {{ __('purchase.ref_no') }} | {{ __('sale.amount') }} | {{ __('sale.payment_mode') }} |
---|---|---|---|---|
{{ $loop->iteration }} | {{ $payment_line->credit_date ? @format_date($payment_line->credit_date) : '' }} | {{ $payment_line->payment_ref_no }} | {{ $payment_line->method !== 'credit' ? $payment_line->amount : $payment_line->credit_amount}} |
{{ ucfirst($payment_line->method) }}
@if($payment_line->is_return == 1)
( {{ __('lang_v1.change_return') }} ) @endif |
{{ __('sale.total') }}: | {{ $total_before_tax }} | |
---|---|---|
{{ __('sale.order_tax') }}: | {{ $sell->tax_amount }} | |
{{ __('sale.discount') }}: | ({{ $discounts }}) | |
{{ __('Loyalty') }}: | ({{ $sell->loyalty_amount ?? 0.00}}) | |
{{ __('Exchange Point') }}: | ({{ $sell->return_point ?? 0.00}}) | |
{{ __('Gift Voucher') }}: | ({{ $sell->gift_voucher_amount ?? 0.00 }}) | |
{{ __('sale.total_payable') }}: | {{ $sell->final_total }} | |
{{ __('sale.total_paid') }}: | {{ $total_paid }} | |
{{ __('sale.total_remaining') }}: | {{ $sell->final_total - $total_paid }} |
@if($sell->additional_notes) {{ $sell->additional_notes }} @else -- @endif
@if($sell->staff_note) {{ $sell->staff_note }} @else -- @endif