@extends('layouts.master') @section('title') Pickup Confirmation Form @endsection @section('css') @endsection @section('content')
Pickup Confirmation Form
@csrf
Customer
{{ $pickup['PickUpHeader']['AcCustomerID'] }} - {{ $pickup['PickUpHeader']['AcCustomerName'] }}
Payment Details
@if($pickup['PickUpHeader']['PaymentStatus'] == 'Partially Paid') Partially Paid @elseif($pickup['PickUpHeader']['PaymentStatus'] == 'Unpaid') Unpaid @else Full Paid @endif
Total Amount : {{ $pickup['PickUpHeader']['DocumentFinalAmount'] }}
Total Received : {{ $pickup['PickUpHeader']['TotalPaymentReceived'] }}
Balance : {{ $pickup['PickUpHeader']['DocumentFinalAmount'] - $pickup['PickUpHeader']['TotalPaymentReceived'] }}
Sales Order Details
Sales Order No : {{ $pickup['PickUpHeader']['AcCusSalesOrderMID'] }}
Document Date : {{ $pickup['PickUpHeader']['DocumentDate'] }}
Salesman : {{ $pickup['PickUpHeader']['AcSalesmanID'] }} - {{ $pickup['PickUpHeader']['AcSalesmanName'] }}
Collection Date : {{ Carbon\Carbon::now()->format('Y-m-d') }}
Remark
@if($RemainingQuantity > 0) @php($count_item = 0) @foreach($pickup['PickUpDetails'] as $stock) @if($stock['RemainingQuantity'] > 0) @endif @endforeach
# Description Collect Serial No. Quantity
{{ $count_item }}
{{ $stock['AcStockID']}} - {{ $pickup_stock[$stock['AcStockID']] }}
@if($stock['RemainingQuantity'] == 1) @else @for ($i = 0; $i < $stock['RemainingQuantity']; $i++) @endfor @endif
@else
All items have been collected!
@endif
@if($pickupModal->status != 1) @endif @if($pickupModal->status == 1) @if (!empty($qrcode)) @endif @endif
{{-- Modal QR --}} {{-- End Modal QR --}}
@endsection @section('script') @endsection