@if ($overviewBond['bond'])
{{ $overviewBond['bond']->bond_number }}
{{ $overviewBond['bond']->supplier->name }}
{{ $overviewBond['bond']->supplier->phone_1 }}
{{ $overviewBond['bond']->date }}
{{ $overviewBond['bond']->expected_delivery_date }}
{{ $overviewBond['bond']->branch->name }}
{{ $overviewBond['bond']->branch->address }}
{{ $overviewBond['bond']->branch->phone }}
{{ $overviewBond['bond']->delivery_term?->name }}
{{ $overviewBond['bond']->payment_term?->name }}
{{ $overviewBond['bond']->order_type }}
{{ $overviewBond['bond']->status_as_text }}
{{ $overviewBond['bond']->exchange_price }}
{{ $overviewBond['bond']->extra_discount_amount }}
| @lang('warehouses/purchase-orders/show.unit_code') | @lang('warehouses/purchase-orders/show.material_description') | @lang('warehouses/purchase-orders/show.tax_percentage') | @lang('warehouses/purchase-orders/show.unit') | @lang('warehouses/purchase-orders/show.quantity') | @lang('warehouses/purchase-orders/show.cost') | @lang('warehouses/purchase-orders/show.total') | @lang('warehouses/purchase-orders/show.discount') | @lang('warehouses/purchase-orders/show.total_after_discount') | @lang('warehouses/purchase-orders/show.bonus') | @lang('warehouses/purchase-orders/show.monthly_sales_rate') | @lang('warehouses/purchase-orders/show.available_quantity_in_warehouse') | @lang('warehouses/purchase-orders/show.notes') |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->barcode->number }} | {{ $item->barcode->ar_name }} | {{ $item->barcode->item->tax->value ?? '' }} | {{ $item->barcode->unit->name }} | {{ $item->quantity }} | {{ $item->cost }} | {{ $item->quantity * $item->cost + (optional($item->barcode->item->tax)->value ? ($item->quantity * $item->cost * $item->barcode->item->tax->value) / 100 : 0) }} | {{ $item->discount_amount }} | {{ $item->quantity * $item->cost + (optional($item->barcode->item->tax)->value ? ($item->quantity * $item->cost * $item->barcode->item->tax->value) / 100 : 0) - $item->discount_amount }} | {{ $item->bonus }} | {{ $item->notice }} |
@lang('warehouses/purchase-orders/show.notes') :
{{ $overviewBond['bond']->notice }}