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

Adjustment : edit

Page for edit Adjustment

@switch($adjustment->status) @case(false) Not complete @break @case(true) Complete @break @default @endswitch
@csrf @method('PUT')
@error('no')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
@error('remarks')
{{ $message }}
@enderror

Select Material

Materials you want to adjustment

@foreach ($stocks as $stock) @endforeach
Material Code Material Name Material Desc UoM Divisi Code Balance Action
{{ $stock->material_code }} {{ $stock->material->name }} {{ $stock->material->desc }} {{ $stock->material->uom_code }} {{ $stock->divisi_code }} {{ $stock->balance }}
@csrf

Materials to Adjustment

Select materials you want to adjustment

@foreach ($adjustment->details as $detail) @endforeach
Material Code Material Name Material Desc Divisi Code Qty Initial Qty Adjustment Qty Actual Action
{{ $detail->material_code }} {{ $detail->material->name }} {{ $detail->material->desc }} {{ $detail->divisi_code }} {{ $detail->qty_initial }} {{ $detail->qty_adjustment }} {{ $detail->qty_actual }}
  • Are you sure want to delete this ?

    @csrf @method('DELETE')

Are you sure want to delete this ? .

Once you delete you cannot recover this PO!

@csrf @method('DELETE')
@if (count($adjustment->details) > 0)

Are you sure want to complete this ? .

Once you complete all stock material you choose will update and you cannot undo this

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