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

Invoice PO General : create

Page for create Invoice PO General

@switch($poGeneral->invoice->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
PO General No : {{ $poGeneral->no }}
PO General Date : {{ $poGeneral->formatted_date }}
Supplier Code : {{ $poGeneral->supplier_code }}
Delivery Date : {{ $poGeneral->formatted_delivery_date }}
ETA Date : {{ $poGeneral->formatted_eta_date }}
Notes : {{ $poGeneral->notes }}
PO PIC : {{ $poGeneral->createdBy->full_contact }}
PO Approved by : {{ $poGeneral->approvedBy->full_contact }}
PO Approved at : {{ $poGeneral->formatted_approved_at }}
@foreach ($poGeneral->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
@error('no')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
@error('discount')
{{ $message }}
@enderror
@error('dp')
{{ $message }}
@enderror
@error('tax')
{{ $message }}
@enderror
@endsection @section('js') @endsection