|
|
@@ -108,20 +108,46 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
{{--zengjun start--}}
|
|
|
- @can('运输管理-运费')
|
|
|
+{{-- @can('运输管理-运费')--}}
|
|
|
+ <div class="form-group row">
|
|
|
+ <label for="charge" class="col-2 col-form-label text-right ">运输收费(元)</label>
|
|
|
+ <div class="col-8">
|
|
|
+ <input type="text" class="form-control @error('charge') is-invalid @enderror"
|
|
|
+ name="charge" autocomplete="off" value="{{ old('charge') }}" >
|
|
|
+ @error('charge')
|
|
|
+ <span class="invalid-feedback" role="alert">
|
|
|
+ <strong>{{ $message }}</strong>
|
|
|
+ </span>
|
|
|
+ @enderror
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
<div class="form-group row">
|
|
|
- <label for="charge" class="col-2 col-form-label text-right ">收费(元)</label>
|
|
|
+ <label for="other_charge" class="col-2 col-form-label text-right text-muted">其他收费(元)</label>
|
|
|
<div class="col-8">
|
|
|
- <input type="text" class="form-control @error('charge') is-invalid @enderror"
|
|
|
- name="charge" autocomplete="off" value="{{ old('charge') }}" >
|
|
|
- @error('charge')
|
|
|
+ <input type="text" class="form-control @error('other_charge') is-invalid @enderror"
|
|
|
+ name="other_charge" autocomplete="off" value="@if(old('other_charge')){{ old('other_charge') }}@endif" >
|
|
|
+ @error('other_charge')
|
|
|
<span class="invalid-feedback" role="alert">
|
|
|
<strong>{{ $message }}</strong>
|
|
|
</span>
|
|
|
@enderror
|
|
|
</div>
|
|
|
</div>
|
|
|
- @endcan
|
|
|
+ <div class="form-group row">
|
|
|
+ <label for="other_charge_remark" class="col-2 col-form-label text-right text-muted">其他收费备注</label>
|
|
|
+ <div class="col-8">
|
|
|
+ <input type="text" class="form-control @error('other_charge') is-invalid @enderror"
|
|
|
+ name="other_charge_remark" autocomplete="off" value="@if(old('other_charge_remark')){{ old('other_charge_remark') }}@endif" >
|
|
|
+ @error('other_charge_remark')
|
|
|
+ <span class="invalid-feedback" role="alert">
|
|
|
+ <strong>{{ $message }}</strong>
|
|
|
+ </span>·
|
|
|
+ @enderror
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+{{-- @endcan--}}
|
|
|
{{--zengjun end--}}
|
|
|
<div class="form-group row">
|
|
|
<label for="collect_fee" class="col-2 col-form-label text-right text-muted">到付金额(元)</label>
|