@extends('layout.default') @section('title', $__t('Inventory')) @section('content')

@yield('title')


@include('components.productpicker', array( 'products' => $products, 'barcodes' => $barcodes, 'nextInputSelector' => '#new_amount' )) @include('components.productamountpicker', array( 'value' => 1, 'label' => 'New stock amount', 'additionalHtmlElements' => '
', 'additionalHtmlContextHelp' => '
' . $__t('Tare weight handling enabled - please weigh the whole container, the amount to be posted will be automatically calculcated') . '
' )) @if(boolval($userSettings['show_purchased_date_on_purchase'])) @include('components.datetimepicker2', array( 'id' => 'purchased_date', 'label' => 'Purchased date', 'format' => 'YYYY-MM-DD', 'hint' => $__t('This will apply to added products'), 'initWithNow' => true, 'limitEndToNow' => false, 'limitStartToNow' => false, 'invalidFeedback' => $__t('A purchased date is required'), 'nextInputSelector' => '#best_before_date', 'additionalCssClasses' => 'date-only-datetimepicker2', 'activateNumberPad' => GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_FIELD_NUMBER_PAD )) @endif @php $additionalGroupCssClasses = ''; if (!GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING) { $additionalGroupCssClasses = 'd-none'; } @endphp @include('components.datetimepicker', array( 'id' => 'best_before_date', 'label' => 'Due date', 'hint' => $__t('This will apply to added products'), 'format' => 'YYYY-MM-DD', 'initWithNow' => false, 'limitEndToNow' => false, 'limitStartToNow' => false, 'invalidFeedback' => $__t('A due date is required'), 'nextInputSelector' => '#best_before_date', 'additionalGroupCssClasses' => 'date-only-datetimepicker', 'shortcutValue' => '2999-12-31', 'shortcutLabel' => 'Never overdue', 'earlierThanInfoLimit' => date('Y-m-d'), 'earlierThanInfoText' => $__t('The given date is earlier than today, are you sure?'), 'additionalGroupCssClasses' => $additionalGroupCssClasses, 'activateNumberPad' => GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_FIELD_NUMBER_PAD )) @php $additionalGroupCssClasses = ''; @endphp @if(GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING) @include('components.numberpicker', array( 'id' => 'price', 'label' => 'Price', 'min' => '0.' . str_repeat('0', $userSettings['stock_decimal_places_prices_input']), 'decimals' => $userSettings['stock_decimal_places_prices_input'], 'value' => '', 'contextInfoId' => 'price-hint', 'hint' => $__t('This will apply to added products'), 'isRequired' => false, 'additionalCssClasses' => 'locale-number-input locale-number-currency' )) @include('components.shoppinglocationpicker', array( 'label' => 'Store', 'shoppinglocations' => $shoppinglocations )) @else @endif @if(GROCY_FEATURE_FLAG_STOCK_LOCATION_TRACKING) @include('components.locationpicker', array( 'locations' => $locations, 'hint' => $__t('This will apply to added products') )) @endif @if(GROCY_FEATURE_FLAG_LABEL_PRINTER)
@endif
@include('components.userfieldsform', array( 'userfields' => $userfields, 'entity' => 'stock' ))
@include('components.productcard')
@stop