|
Seller | Buyer | |
{{ $company->name }} {{ $company->address }} {{ $company->email }} {{ $company->phone }} |
@if($order->order_type == 'stock-transfers')
{{ $order->warehouse->name }} @if($order->warehouse->addres) {{ $order->warehouse->address }} @endif @if($order->warehouse->phone) {{ $order->warehouse->phone }} @endif {{ $order->warehouse->email }} @else {{ $order->user->name }} @if($order->user->address || $order->user->city || $order->user->zipcode) {{ $order->user->address .'' . $order->user->city .''. $order->user->zipcode }} @endif @if($order->user->phone) {{ $order->user->phone }} @endif {{ $order->user->email }} @endif |
# | {{ $traslations['product'] }} | {{ $traslations['quantity'] }} | @if($order->warehouse->show_mrp_on_invoice){{ $traslations['mrp'] }} | @endif{{ $traslations['unit_price'] }} | {{ $traslations['total'] }} |
{{ $loop->iteration }} | {{ $item->product->name }} | {{ $item->quantity . ' ' . $item->unit->short_name }} | @if($order->warehouse->show_mrp_on_invoice){{ App\Classes\Common::formatAmountCurrency($company->currency, $item->mrp) }} | @endif{{ App\Classes\Common::formatAmountCurrency($company->currency, $item->single_unit_price) }} | {{ App\Classes\Common::formatAmountCurrency($company->currency, $item->subtotal) }} |
{{ $traslations['payment_status'] }} : {{ $paymentStatusText }}{{ $traslations['paid_amount'] }} : {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->paid_amount) }} {{ $traslations['due_amount'] }}: {{ App\Classes\Common::formatAmountCurrency($company->currency, $order->due_amount) }} {{ $traslations['payment_mode'] }}: @if($order->orderPayments) @foreach ($order->orderPayments as $currentOrderPayment) {{ App\Classes\Common::formatAmountCurrency($company->currency, $currentOrderPayment->amount) }} @if($currentOrderPayment->payment && $currentOrderPayment->payment->paymentMode && $currentOrderPayment->payment->paymentMode->name) ({{ $currentOrderPayment->payment->paymentMode->name }}) @endif @endforeach @else - @endif |
|
{{ $traslations['notes'] }}:
{{ $order->notes }}
{{ $traslations['terms_condition'] }}
{{ $warehouse->terms_condition }} |
Bank Details
{{ $warehouse->bank_details }} |