137 lines
No EOL
11 KiB
PHP
Executable file
137 lines
No EOL
11 KiB
PHP
Executable file
<div class="card mb-2">
|
|
<h6 class="card-header bg-primary text-white py-2" data-toggle="collapse" data-target="#collapseBookingOrganisation" aria-expanded="false" aria-controls="collapseBookingOrganisation">
|
|
<strong style="line-height: 1.6em">Organisation</strong>
|
|
</h6>
|
|
<div class="collapse" id="collapseBookingOrganisation">
|
|
<div class="card-body px-0">
|
|
@if($booking->new_drafts )
|
|
|
|
@php($i = 1)
|
|
<div class="text-right mb-2 pr-2">
|
|
<button type="submit" name="action" value="addItemUp" class="btn btn-sm btn-primary"><i class="fa fa-plus"></i> Neue Leistung hinzufügen <i class="fa fa-arrow-up"></i></button><br>
|
|
<button type="button" name="" class="btn btn-sm btn-info mt-2" data-toggle="modal" data-target="#modals-change-travel-dates"><i class="fa fa-sync"></i> Datum der Reise ändern </button>
|
|
</div>
|
|
<div class="table-responsive mb-4" style="overflow: visible">
|
|
<table class="table mb-0" id="table_dragula_tbody" style="min-width: 1080px">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th style="width: 1em"></th>
|
|
<th style="width: 1em">#</th>
|
|
<th>Leistung</th>
|
|
<th style="width: 9em">Datum von</th>
|
|
<th style="width: 9em">Datum bis</th>
|
|
<th style="width: 15em">Teilnehmer/EP</th>
|
|
<th style="width: 15em">Kinder/EP</th>
|
|
<th style="width: 8em">#</th>
|
|
</tr>
|
|
</thead>
|
|
@foreach($booking->booking_draft_items as $booking_draft_item)
|
|
<tbody class="draft_item_tbody">
|
|
<tr @if($booking_draft_item->draft_type) style="background-color: {{ $booking_draft_item->draft_type->color }}" @endif>
|
|
<td>
|
|
<span class="handle ion ion-ios-move d-inline-block bg-primary text-white p-1"></span>
|
|
</td>
|
|
<td><span class="item_pos_number">{{ $i++ }}</span></td>
|
|
<td>
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$booking_draft_item->id}}][draft_type_id]" id="draft_item_{{$booking_draft_item->id }}_draft_type_id" data-live-search="true" required>
|
|
<option value="" disabled>Vorlagen-Typ*</option>
|
|
{!! HTMLHelper::getDraftTypes($booking_draft_item->draft_type_id) !!}
|
|
</select>
|
|
</td>
|
|
<td>
|
|
{{ Form::text('draft_item['.$booking_draft_item->id.'][start_date]', $booking_draft_item->start_date, array('placeholder'=>__('Start Datum'), 'class'=>'form-control datepicker-base', 'id'=>'draft_item_'.$booking_draft_item->id.'_start_dat')) }}
|
|
</td>
|
|
<td>
|
|
{{ Form::text('draft_item['.$booking_draft_item->id.'][end_date]', $booking_draft_item->end_date, array('placeholder'=>__('End Datum'), 'class'=>'form-control datepicker-base', 'id'=>'draft_item_'.$booking_draft_item->id.'_end_date')) }}
|
|
</td>
|
|
@if(in_array($booking_draft_item->draft_type_id, [24, 26, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42]))
|
|
<td>
|
|
<div class="input-group">
|
|
<select class="custom-select" name="draft_item[{{$booking_draft_item->id}}][adult]" id="draft_item_{{$booking_draft_item->id }}_adult">
|
|
<option value="">0</option>
|
|
{!! HTMLHelper::getRangeOptions($booking_draft_item->adult, 10, '') !!}
|
|
</select>
|
|
{{ Form::text('draft_item['.$booking_draft_item->id.'][price_adult]', $booking_draft_item->price_adult, array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$booking_draft_item->id.'_price_adult', 'maxlength'=>10)) }}
|
|
<span class="input-group-append">
|
|
<span class="input-group-text">€</span>
|
|
</span>
|
|
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="input-group">
|
|
<select class="custom-select" name="draft_item[{{$booking_draft_item->id}}][children]" id="draft_item_{{$booking_draft_item->id}}_children">
|
|
<option value="">0</option>
|
|
{!! HTMLHelper::getRangeOptions($booking_draft_item->children, 10, '') !!}
|
|
</select>
|
|
{{ Form::text('draft_item['.$booking_draft_item->id.'][price_children]', $booking_draft_item->price_children, array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$booking_draft_item->id.'_price_children')) }}
|
|
<span class="input-group-append">
|
|
<span class="input-group-text">€</span>
|
|
</span>
|
|
</div>
|
|
</td>
|
|
@else
|
|
<td>-</td>
|
|
<td>-</td>
|
|
@endif
|
|
<td>
|
|
<button type="button" name="" value="up_{{$booking_draft_item->id}}" class="btn btn-xs btn-primary py-0 move-up-btn"><i class="fa fa-arrow-up"></i> </button>
|
|
<button type="button" name="" value="down_{{$booking_draft_item->id}}" class="btn btn-xs btn-primary mr-2 move-down-btn"><i class="fa fa-arrow-down"></i> </button>
|
|
<a class="text-danger" href="{{ route('booking_draft_item_delete', [$booking_draft_item->id]) }}" onclick="return confirm('{{__('Wirklich löschen?')}}');"><i class="fa fa-trash-alt"></i></a>
|
|
</td>
|
|
</tr>
|
|
<tr @if($booking_draft_item->draft_type) style="background-color: {{ $booking_draft_item->draft_type->color }}" @endif class="border-none">
|
|
|
|
@if(in_array($booking_draft_item->draft_type_id, [36, 37]))
|
|
<td colspan="3">
|
|
<select class="custom-select" name="draft_item[{{$booking_draft_item->id}}][days_duration]" id="draft_item_{{$booking_draft_item->id }}_days_duration">
|
|
<option value="">0 Tage</option>
|
|
{!! HTMLHelper::getRangeOptions($booking_draft_item->days_duration, 40, ' Tage') !!}
|
|
</select>
|
|
</td>
|
|
<td colspan="4">
|
|
@elseif(in_array($booking_draft_item->draft_type_id, [38, 39,40]))
|
|
<td colspan="3">
|
|
<div class="input-group">
|
|
@if(in_array($booking_draft_item->draft_type_id, [38]))
|
|
<select class="custom-select" name="draft_item[{{$booking_draft_item->id}}][days_duration]" id="draft_item_{{$booking_draft_item->id }}_days_duration">
|
|
<option value="">0 Tage</option>
|
|
{!! HTMLHelper::getRangeOptions($booking_draft_item->days_duration, 40, ' T.') !!}
|
|
</select>
|
|
@endif
|
|
{{ Form::text('draft_item['.$booking_draft_item->id.'][price]', $booking_draft_item->price, array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$booking_draft_item->id.'_price',)) }}
|
|
<span class="input-group-append">
|
|
<span class="input-group-text">€</span>
|
|
</span>
|
|
</div>
|
|
</td>
|
|
<td colspan="4">
|
|
@else
|
|
<td colspan="7">
|
|
@endif
|
|
{{ Form::textarea('draft_item['.$booking_draft_item->id.'][service]', $booking_draft_item->service, array('placeholder'=>__('Leistungen'), 'class'=>'form-control autoExpand', 'id'=>'draft_item_'.$booking_draft_item->id.'_service', 'rows'=>'1', 'data-min-rows'=>'1')) }}
|
|
</td>
|
|
<td>
|
|
<label class="custom-control custom-checkbox mt-2" style="margin-right: 20px;">
|
|
{!! Form::checkbox('draft_item['.$booking_draft_item->id.'][in_pdf]', 1, $booking_draft_item->in_pdf, ['class'=>'custom-control-input']) !!}
|
|
<span class="custom-control-label">{{__('in PDF')}}</span>
|
|
</label>
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
@endforeach
|
|
</table>
|
|
</div>
|
|
|
|
<div class="float-right pr-2">
|
|
<button type="submit" name="action" value="addItemDown" class="btn btn-sm btn-primary"><i class="fa fa-plus"></i> Neue Leistung hinzufügen <i class="fa fa-arrow-down"></i></button>
|
|
</div>
|
|
<div class="text-left mt-3 pl-2">
|
|
<button type="submit" name="action" value="saveAll" class="btn btn-sm btn-secondary">{{ __('save changes') }}</button>
|
|
<a href="{{route('bookings')}}" class="btn btn-sm btn-default">{{ __('zur Übersicht') }}</a>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div> |