mirror of
https://github.com/grocy/grocy.git
synced 2026-04-04 20:06:16 +02:00
93 lines
4.4 KiB
PHP
93 lines
4.4 KiB
PHP
@extends('layout.default')
|
|
|
|
@section('title', $__t('Transfer'))
|
|
@section('activeNav', 'transfer')
|
|
@section('viewJsName', 'transfer')
|
|
|
|
@section('content')
|
|
<script>
|
|
Grocy.QuantityUnits = {!! json_encode($quantityUnits) !!};
|
|
Grocy.QuantityUnitConversionsResolved = {!! json_encode($quantityUnitConversionsResolved) !!};
|
|
</script>
|
|
|
|
<div class="row">
|
|
<div class="col-12 col-md-6 col-xl-4 pb-3">
|
|
<h2 class="title">@yield('title')</h2>
|
|
|
|
<hr class="my-2">
|
|
|
|
<form id="transfer-form" novalidate>
|
|
|
|
@include('components.productpicker', [
|
|
'productsQuery' => 'query%5B%5D=active%3D1&only_in_stock=1&order=name%3Acollate%20nocase',
|
|
'nextInputSelector' => '#location_id_from',
|
|
'disallowAddProductWorkflows' => true,
|
|
])
|
|
|
|
<div class="form-group">
|
|
<label for="location_id_from">{{ $__t('From location') }}</label>
|
|
{{-- TODO: Select2: dynamic data: locations --}}
|
|
<select required class="custom-control custom-select location-combobox" id="location_id_from"
|
|
name="location_id_from">
|
|
<option></option>
|
|
@foreach ($locations as $location)
|
|
<option value="{{ $location->id }}" data-is-freezer="{{ $location->is_freezer }}">
|
|
{{ $location->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
<div class="invalid-feedback">{{ $__t('A location is required') }}</div>
|
|
</div>
|
|
|
|
@include('components.productamountpicker', [
|
|
'value' => 1,
|
|
'additionalHtmlContextHelp' =>
|
|
'<div id="tare-weight-handling-info"
|
|
class="text-info font-italic d-none">' .
|
|
$__t(
|
|
'Tare weight handling enabled - please weigh the whole container, the amount to be posted will be automatically calculcated'
|
|
) .
|
|
'</div>',
|
|
])
|
|
|
|
<div class="form-group">
|
|
<label for="location_id_to">{{ $__t('To location') }}</label>
|
|
{{-- TODO: Select2: dynamic data: locations --}}
|
|
<select required class="custom-control custom-select location-combobox" id="location_id_to"
|
|
name="location_id_to">
|
|
<option></option>
|
|
@foreach ($locations as $location)
|
|
<option value="{{ $location->id }}" data-is-freezer="{{ $location->is_freezer }}">
|
|
{{ $location->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
<div class="invalid-feedback">{{ $__t('A location is required') }}</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="custom-control custom-checkbox">
|
|
<input class="form-check-input custom-control-input" type="checkbox" id="use_specific_stock_entry"
|
|
name="use_specific_stock_entry" value="1">
|
|
<label class="form-check-label custom-control-label"
|
|
for="use_specific_stock_entry">{{ $__t('Use a specific stock item') }}
|
|
<i class="fas fa-question-circle text-muted" data-toggle="tooltip"
|
|
data-trigger="hover click"
|
|
title="{{ $__t('The first item in this list would be picked by the default rule which is "Opened first, then first due first, then first in first out"') }}"></i>
|
|
</label>
|
|
</div>
|
|
<select disabled class="custom-control custom-select mt-2" id="specific_stock_entry"
|
|
name="specific_stock_entry">
|
|
<option></option>
|
|
</select>
|
|
</div>
|
|
|
|
<button id="save-transfer-button" class="btn btn-success">{{ $__t('OK') }}</button>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
<div class="col-12 col-md-6 col-xl-4 hide-when-embedded">
|
|
@include('components.productcard')
|
|
</div>
|
|
</div>
|
|
@stop
|