@extends('layouts.app') @section('title', ($isNew?'New ':'Edit ').'Stock Adjustment') @section('crumbs', 'Stock Adjustments · '.($isNew?'New':'Edit').'') @section('content')

{{ $isNew?'New':'Edit' }} stock count adjustment

{{ $docNo }}
@csrf @if(!$isNew)@method('PUT')@endif
@include('docs._lines', ['id'=>'adjLines', 'rows'=>$record->lines ?? [], 'cols'=>[ ['f'=>'item_id','l'=>'Item *','t'=>'select','o'=>$items->pluck('display_name','id')->all(),'req'=>1], ['f'=>'counted_qty','l'=>'Counted qty *','t'=>'number','req'=>1,'w'=>'150px'], ['f'=>'remarks','l'=>'Remarks','t'=>'text'], ]])

System quantities are captured automatically at save; differences post to the ledger on approval.

Cancel
@endsection