08 2024
This commit is contained in:
parent
04d677d37a
commit
bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions
|
|
@ -22,10 +22,10 @@
|
|||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Datum</th>
|
||||
<th>Points</th>
|
||||
<th>{{__('tables.date')}}</th>
|
||||
<th>{{__('tables.points')}}</th>
|
||||
<th>Umsatz netto</th>
|
||||
<th>Status</th>
|
||||
<th>{{__('tables.status')}}</th>
|
||||
<th>Berater</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
@ -67,12 +67,24 @@
|
|||
{{ Form::select('status_points', \App\Models\UserSalesVolume::$statusPointsTypes , $userSalesVolume->status_points, array('class'=>'custom-select', 'id'=>'status_points')) }}
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-sm-4">
|
||||
<label for="total_net" class="form-label">{{__('Umsatz netto')}}</label>
|
||||
{{ Form::text('total_net', formatNumber($userSalesVolume->total_net), array('class'=>'form-control', 'id'=>'total_net')) }}
|
||||
</div>
|
||||
</div>
|
||||
@if($userSalesVolume->status === 4)
|
||||
<div class="form-row">
|
||||
<div class="form-group col-sm-4">
|
||||
<label for="status_turnover" class="form-label">{{__('Umsatz berechnen als')}}*</label>
|
||||
{{ Form::select('status_turnover', \App\Models\UserSalesVolume::getTransTurnoverTypes() , $userSalesVolume->status_turnover, array('class'=>'custom-select', 'id'=>'status_turnover')) }}
|
||||
</div>
|
||||
</div>
|
||||
<em>Bei einer Gutschrift kann der Umsatz als Beraterbestellung oder Shopbestellung (wird provisioniert) verrechnet werden</em>
|
||||
@endif
|
||||
<hr>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col-sm-12">
|
||||
<label for="info" class="form-label">{{__('Notiz/Grund')}}</label>
|
||||
|
|
@ -94,8 +106,8 @@
|
|||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">schließen</button>
|
||||
<button type="submit" class="btn btn-primary">{{__('übernehmen')}}</button>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">{{ __('close') }}</button>
|
||||
<button type="submit" class="btn btn-primary">{{__('take over')}}</button>
|
||||
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue