Free Shipping, Business Levels correction, Products Buying, Fonts
This commit is contained in:
parent
3f2fbd6d5b
commit
0341c9c189
197 changed files with 9161 additions and 329 deletions
|
|
@ -9,8 +9,8 @@
|
|||
<div class="card mb-2">
|
||||
<div class="card-body">
|
||||
<h4>Rechnungen / Gutschriften Einstellungen</h4>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-sm-12">
|
||||
{{--<div class="form-row">
|
||||
{{-- <div class="form-group col-sm-12">
|
||||
<label class="form-label">{{ __('nächste Rechnungsnummer') }}*</label>
|
||||
{{ Form::text('settings[invoice-number][val]', \App\Models\Setting::getContentBySlug('invoice-number'), array('class'=>'form-control', 'disabled')) }}
|
||||
{{ Form::hidden('settings[invoice-number][type]', 'int') }}
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
{{ Form::text('settings[credit-number][val]', \App\Models\Setting::getContentBySlug('credit-number'), array('class'=>'form-control')) }}
|
||||
{{ Form::hidden('settings[credit-number][type]', 'int') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>--}}
|
||||
<div class="form-row">
|
||||
<div class="form-group col-sm-12">
|
||||
<label class="form-label">{{ __('Tag des Monats für die Fixierung/Auswertungen der Business Marketing Plans') }}*</label>
|
||||
|
|
@ -33,6 +33,54 @@
|
|||
<button type="submit" name="action" value="save_prepayment" class="btn btn-primary btn-sm mb-2"><i class="ion ion-ios-save"></i> speichern</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card mb-2">
|
||||
<div class="card-body">
|
||||
<h4>Auszeitparty</h4>
|
||||
<div class="form-row">
|
||||
<div class="col-sm-12">
|
||||
<h5>Bonus Gutschein</h5>
|
||||
</div>
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label">{{ __('Gutschein Wert in €') }}*</label>
|
||||
{{ Form::text('settings[hp-bonus-value][val]', \App\Models\Setting::getContentBySlug('hp-bonus-value'), array('class'=>'form-control')) }}
|
||||
{{ Form::hidden('settings[hp-bonus-value][type]', 'int') }}
|
||||
</div>
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label">{{ __('Zielumsatz in €') }}*</label>
|
||||
{{ Form::text('settings[hp-bonus-start][val]', \App\Models\Setting::getContentBySlug('hp-bonus-start'), array('class'=>'form-control')) }}
|
||||
{{ Form::hidden('settings[hp-bonus-start][type]', 'int') }}
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="form-row">
|
||||
<div class="col-sm-12">
|
||||
<h5>Bonus Stufen</h5>
|
||||
</div>
|
||||
<div class="form-group col-sm-12">
|
||||
<label class="form-label">{{ __('Anzahl der Bonus Stufen ') }}*</label>
|
||||
{{ Form::text('settings[hp-bonus-steps][val]', \App\Models\Setting::getContentBySlug('hp-bonus-steps'), array('class'=>'form-control')) }}
|
||||
{{ Form::hidden('settings[hp-bonus-steps][type]', 'int') }}
|
||||
</div>
|
||||
@if($hpBonusSteps = \App\Models\Setting::getContentBySlug('hp-bonus-steps'))
|
||||
@for ($i=1; $i<=$hpBonusSteps; $i++)
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label">{{ $i }}.{{ __('Stufe Wert in €') }}*</label>
|
||||
{{ Form::text('settings[hp-bonus-step-value-'.$i.'][val]', \App\Models\Setting::getContentBySlug('hp-bonus-step-value-'.$i), array('class'=>'form-control')) }}
|
||||
{{ Form::hidden('settings[hp-bonus-step-value-'.$i.'][type]', 'int') }}
|
||||
</div>
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label">{{ $i }}.{{ __('Stufe min. Umsatz in €') }}*</label>
|
||||
{{ Form::text('settings[hp-bonus-step-start-'.$i.'][val]', \App\Models\Setting::getContentBySlug('hp-bonus-step-start-'.$i), array('class'=>'form-control')) }}
|
||||
{{ Form::hidden('settings[hp-bonus-step-start-'.$i.'][type]', 'int') }}
|
||||
</div>
|
||||
@endfor
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<button type="submit" name="action" value="save_prepayment" class="btn btn-primary btn-sm mb-2"><i class="ion ion-ios-save"></i> speichern</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{!! Form::close() !!}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue