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

Invoice PO General : edit

Page for edit Invoice PO General

@switch($invoicePoGeneral->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
PO Supplier No : {{ $invoicePoGeneral->po->no }}
PO Supplier Date : {{ $invoicePoGeneral->po->formatted_date }}
Supplier Code : {{ $invoicePoGeneral->po->supplier_code }}
Delivery Date : {{ $invoicePoGeneral->po->formatted_delivery_date }}
ETA Date : {{ $invoicePoGeneral->po->formatted_eta_date }}
Notes : {{ $invoicePoGeneral->po->notes }}
PO PIC : {{ $invoicePoGeneral->po->createdBy->full_contact }}
PO Approved by : {{ $invoicePoGeneral->po->approvedBy->full_contact }}
PO Approved at : {{ $invoicePoGeneral->po->formatted_approved_at }}
@foreach ($invoicePoGeneral->po->details as $detail) @endforeach
Material Fullname Material Code Material Code Alias Material Type Material UoM Material UoM Alias Qty Order
{{ $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 }}
@csrf @method('PUT')
@error('no')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
@error('discount')
{{ $message }}
@enderror
@error('dp')
{{ $message }}
@enderror
@error('tax')
{{ $message }}
@enderror
@endsection @section('js') @endsection