{{ __('inventory::modules.reports.turnover.description') }}
{{ __('inventory::modules.reports.purchase_orders.stats.total_amount') }}
{{ currency_format($stats['total_amount'], restaurant()->currency_id) }}
{{ trans('inventory::modules.purchaseOrder.total_orders') }}: {{ $stats['order_count'] }}
{{ __('inventory::modules.reports.purchase_orders.stats.paid_amount') }}
{{ currency_format($stats['paid_amount'], restaurant()->currency_id) }}
{{ __('inventory::modules.reports.purchase_orders.stats.due_amount') }}
{{ currency_format($stats['due_amount'], restaurant()->currency_id) }}
{{ __('inventory::modules.reports.purchase_orders.stats.progress') }}
{{ $stats['average_progress'] }}%
| {{ __('inventory::modules.reports.purchase_orders.table.po_number') }} | {{ __('inventory::modules.reports.purchase_orders.table.supplier') }} | {{ __('inventory::modules.reports.purchase_orders.table.order_date') }} | {{ __('inventory::modules.reports.purchase_orders.table.status') }} | {{ __('inventory::modules.reports.purchase_orders.table.total') }} | {{ __('inventory::modules.reports.purchase_orders.table.paid') }} | {{ __('inventory::modules.reports.purchase_orders.table.due') }} | {{ __('inventory::modules.reports.purchase_orders.table.progress') }} |
|---|---|---|---|---|---|---|---|
| {{ $order->po_number }} | {{ $order->supplier?->name }} | {{ $order->order_date?->translatedFormat('M d, Y') }} | {{ $orderStatuses[$order->status] ?? ucfirst($order->status) }} | {{ currency_format($order->total_amount, restaurant()->currency_id) }} | {{ currency_format($paidAmount, restaurant()->currency_id) }} | {{ currency_format($dueAmount, restaurant()->currency_id) }} |
|
| {{ __('inventory::modules.reports.purchase_orders.empty') }} | |||||||