@extends('layouts.app') @section('content')

Invoice PO Supplier : create

Page for create Invoice PO Supplier

@switch($poSupplier->invoice_status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
PO Supplier No : {{ $poSupplier->no }}
PO Supplier Date : {{ $poSupplier->formatted_date }}
Supplier Code : {{ $poSupplier->supplier_code }}
Delivery Date : {{ $poSupplier->formatted_delivery_date }}
ETA Date : {{ $poSupplier->formatted_eta_date }}
Notes : {{ $poSupplier->notes }}
PO PIC : {{ $poSupplier->createdBy->full_contact }}
PO Approved by : {{ $poSupplier->approvedBy->full_contact }}
PO Approved at : {{ $poSupplier->formatted_approved_at }}
@foreach ($poSupplier->details as $detail) @endforeach
Material Fullname Material Code Material Code Alias Material Type Material UoM Material UoM Alias Qty Order Currency Code Price per Unit Amount
{{ $detail->material->formatted_material }} {{ $detail->material_code }} {{ $detail->material_code_alias }} {{ $detail->material->material_type_code }} {{ $detail->material->uom_code }} {{ $detail->material_uom_alias }} {{ $detail->qty }} {{ $detail->currency_code }} {{ $detail->formatted_price_per_unit }} {{ $detail->formatted_amount }}

Selected Invoice

Invoice you already to merge with this PO
@foreach ($poSupplier->invoices as $poSupplierInvoice) @endforeach
Invoice No Invoice Date PIC Action
{{ $poSupplierInvoice->no }} {{ $poSupplierInvoice->formatted_date }} {{ $poSupplierInvoice->createdBy->full_contact }}
  • @csrf @method('DELETE')

Are you sure want to complete this ? .

Once you complete you can continue to fill invoice

@csrf @method('PUT')
@endsection @section('js') @endsection