@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content') {{--

Printing Date & Time: {{ $extra['current_date_time'] }}

--}}
@include('admin.partials.service_purchase_order_header', ['extra' => $extra]) {{--

{{ config('settings.company_name')}}

{{ config('settings.address_1')}}, {{ config('settings.address_2')}}, {{ config('settings.city')}}

{{ $data['branch']['name'] }}

Purchase Order No.

{{ $items->po_no }}

--}}

{{ $extra['voucher_type'] }}

Voucher No : {{($items->po_no)}} Vendor : {{ $items->vendor->name }}
Issuing Date : {{ $transaction->date_format($items->issuing_date) }} Project Name : {{$items->branch->name }}
Project Address : {{ $items->branch->location }}

@php $counter = 1; $total_rate = 0; $total_quantity = 0; $total_po_amount = 0; @endphp
Services
@foreach($items->service_purchase_order_items as $key=>$value) @php $counter++; $total_rate += $value->unit_price; $total_quantity +=$value->quantity; $total_po_amount += $value->gross_price; @endphp @endforeach
S. No. Item Name Description Quantity Unit Price Delivery Date Gross Price ({{$transaction->get_currency_code() }})
{{ $counter }} {{ $value->service->name }} {{ $value->description }} {{ $transaction->convert_money_format($value->quantity) }} {{ $transaction->convert_money_format($value->unit_price) }} {{ $transaction->date_format($value->delivery_date) }} {{ $transaction->convert_money_format( $value->gross_price ) }}
Gross Total {{$transaction->convert_money_format($total_quantity)}} {{ $transaction->convert_money_format($total_rate) }} {{ $transaction->convert_money_format($total_po_amount) }}
Discount {{$items->discount_po_amount}}
Net Total {{$total_po_amount - $items->discount_po_amount}}
PO Amount {{$transaction->systemSettingCurrency()}} : {{ $transaction->convert_money_format($total_po_amount - $items->discount_po_amount) }}
Remarks : {{ ucwords($items->remarks) }}
- - - - - - - - - - - - - - - - - - - - - - -
Authorized Signature
- - - - - - - - - - - - - - - - - - - - - -
Authorized Stamp
@stop