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

Inspection : edit

Page for edit Inspection

Inspection No : {{ $workOrderInspection->no }}
Inspection At : {{ $workOrderInspection->formatted_created_at }}
Send From : {{ $workOrderInspection->sj->schedule->wo->divisi_destination }}
Send To : {{ $workOrderInspection->send_to_divisi }}
Reason : @switch($workOrderInspection->reason) @case('REJECT') REJECT @break @case('SAMPLING') SAMPLING @break @default @endswitch
Status : @switch($workOrderInspection->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
Receive Waste
@csrf @method('PUT')
Material Code Material Name Material UoM Qty Inspection Qty Receive
{{ $workOrderInspection->material_code }} {{ $workOrderInspection->material->name }} {{ $workOrderInspection->material->uom_code }} {{ $workOrderInspection->qty }} @error('qty_received')
{{ $message }}
@enderror

Are you sure want to receive this material ?

Once you receive the material, you cannot edit this waste again and will update your inspection stock

@endsection @section('js') @endsection