@extends('layout.default') @section('title', $__t('Purchase')) @push('pageScripts') @endpush @section('content')

@include('components.productpicker', array( 'products' => $products, 'barcodes' => $barcodes, 'nextInputSelector' => '#display_amount' )) @include('components.productamountpicker', array( 'value' => 1, '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', '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 @if(GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING) @include('components.datetimepicker', array( 'id' => 'best_before_date', 'label' => 'Due date', 'format' => 'YYYY-MM-DD', 'initWithNow' => false, 'limitEndToNow' => false, 'limitStartToNow' => false, 'invalidFeedback' => $__t('A due date is required'), 'nextInputSelector' => '#price', 'additionalCssClasses' => '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?'), 'activateNumberPad' => GROCY_FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_FIELD_NUMBER_PAD )) @endif @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', 'isRequired' => false, 'additionalGroupCssClasses' => 'mb-1', '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, 'isRequired' => false )) @endif @if(GROCY_FEATURE_FLAG_LABEL_PRINTER)
@endif
@include('components.userfieldsform', array( 'userfields' => $userfields, 'entity' => 'stock' ))
@include('components.productcard')
@stop