@extends('layouts.app') @section('title', 'Reconcile Manual Sale - ' . $manualSale->manual_sale_number) @section('content')

Reconcile Manual Sale

Sale #: {{ $manualSale->manual_sale_number }}

Back

Reconciliation Progress

/ {{ $progress['total_items'] }} items matched

Sale Information

Date: {{ $manualSale->created_at->format('M d, Y h:i A') }}
Cashier: {{ $manualSale->user->name }}
Payment: {{ $manualSale->payment_method->value }}

Customer Information

@if ($manualSale->customer_name)
Name: {{ $manualSale->customer_name }}
@if ($manualSale->customer_phone)
Phone: {{ $manualSale->customer_phone }}
@endif @else

Walk-in Customer

@endif

Sale Totals

Subtotal: LKR {{ number_format($manualSale->subtotal, 2) }}
Tax: LKR {{ number_format($manualSale->tax, 2) }}
Total: LKR {{ number_format($manualSale->total, 2) }}

Items to Reconcile

@foreach ($manualSale->items as $item) @endforeach
Manual Entry Qty Price Barcode Scan Matched Product Status
{{ $item->product_name }}
@if ($item->entered_barcode)
Entered: {{ $item->entered_barcode }}
@endif
{{ number_format($item->quantity, 2) }} LKR {{ number_format($item->price, 2) }}
Matched
Not matched
Insufficient stock
Pending Matched

Ready to Complete?

All items must be matched before you can complete reconciliation.

@endsection