@extends('layouts.app') @section('title', 'Inventory Settings') @section('breadcrumb') @endsection @section('content') @include('settings._tabs', ['active' => 'inventory']) @if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
Inventory Behaviour
When OFF (recommended): any transaction that would make an inventory item stock balance negative is blocked. When ON: negative stock is allowed (backorder scenario).
When ON: First In First Out (FIFO) is the default valuation method. When OFF: Weighted Average Cost (WAC) is used. Can be overridden per item.
Current: {{ $settings['use_fifo_valuation']==='1' ? 'FIFO' : 'Weighted Average' }}
Manufacturing Module
When ON: Manufacturing appears in the top menu and sidebar with Bill of Materials and Production Orders. When OFF: the Manufacturing menu is hidden.
Optional Modules & Tracking
When OFF: warehouse selection is hidden from all transaction forms and reports.
When OFF: serial number fields and reports are hidden.
When OFF: lot/batch fields and expiry date tracking are hidden.
Active Inventory Configuration
Negative Inventory: {{ $settings['allow_negative_inventory']==='1' ? 'Allowed' : 'Blocked (recommended)' }}
Multi-Warehouse: {{ $settings['use_multi_warehouse']==='1' ? 'Enabled' : 'Disabled' }}
Manufacturing: {{ $settings['use_manufacturing']==='1' ? 'Enabled' : 'Disabled' }}
Serial Tracking: {{ $settings['use_serial_number']==='1' ? 'Enabled' : 'Disabled' }}
Lot Tracking: {{ $settings['use_lot_number']==='1' ? 'Enabled' : 'Disabled' }}
Valuation: {{ $settings['use_fifo_valuation']==='1' ? 'FIFO' : 'Weighted Average' }}
Cancel
@endsection @push('scripts') @endpush