@extends('layouts/fullLayoutMaster') @section('title', 'Q-' . $our_quotation->quotation_number . ' C-' . $our_quotation->customerRfq->customer->name . ' RFQ-' . $our_quotation->customerRfq->customer_rfq_number) @section('page-style') @endsection @section('content')
@if( $customer_type == 'Foreign' )

NEBA AVIA

Moscow, Bolshaya Ochakovskaya Street, 47

www.Nebaavia.ru

Info@Nebaavia.ru

+79150881288

@else

United Arab Emirates, Dubai, Saheel 2 Tower,

Office 508, P.O.Box: 1303 Dubai

info@sepia-tech.com

www.sepia-tech.com

@endif
QUOTATION: #{{ $our_quotation->quotation_number }}
Date: {{ $our_quotation->date }}
Customer RFQ: {{ $our_quotation->customerRfq->customer_rfq_number }}
Validity: {{ $our_quotation->validity }}
Payment Terms: {{ $our_quotation->payment_terms }}
Delivery Terms: {{ $our_quotation->delivery_terms }}
Min Order: ${{ $our_quotation->min_order }}

Customer:
{{ $our_quotation->customerRfq->customer->name }}
{{ $our_quotation->customerRfq->customer->address }}
{{ $our_quotation->customerRfq->customer->phone }}
{{ $our_quotation->customerRfq->customer->email }}
@php $i = 0; $sub_total = 0; @endphp @foreach( $ourQuotationParts as $ourQuotationPart ) @php $sub_total += $ourQuotationPart->quantity * $ourQuotationPart->unit_price; @endphp @endforeach
# Part Number / Description Cond Qty Unit Price Total Price
{{ ++$i }} {{ $ourQuotationPart->inventory->part_number }} / {{ $ourQuotationPart->inventory->description }}
@if($ourQuotationPart->cert) Cert Source: {{ $ourQuotationPart->cert }}
@endif @if($ourQuotationPart->tag_date) Tag Date: {{ $ourQuotationPart->tag_date }}
@endif @if($ourQuotationPart->lead_time) Lead Time: {{ $ourQuotationPart->lead_time }}
@endif @if($ourQuotationPart->note) {{ $ourQuotationPart->note }} @endif
{{ $ourQuotationPart->condition }} {{ $ourQuotationPart->quantity }} ${{ number_format( $ourQuotationPart->unit_price, 2 ) }} ${{ number_format( $ourQuotationPart->quantity * $ourQuotationPart->unit_price, 2 ) }}
The goods covered by this Purchase Order are subject to final inspection and acceptance within a reasonable time after receipt by the Purchaser. If rejected upon inspection, the goods may be held or returned to Vendor at Vendor’s risk and expense, without prejudice to any other rights to which the Purchaser may be entitled under the circumstances.The goods covered by this Purchase Order shall be properly packed by the Vendor for shipment to the Purchaser at destination and unless otherwise specifically provided on the face of this Purchase Order, the price or prices of the goods therein specified includes all costs of packaging.

Subtotal:

${{ number_format( $sub_total, 2 ) }}

Freight Cost:

$0

Misc Charge:

$0

Total:

${{ number_format( $sub_total, 2 ) }}

@endsection @section('page-script') @if( request()->input('print') != "no" ) @endif @endsection