@extends('layouts.main') @section('pageTitle', '臨停計費內容設定-月租群組計費') @section('content')
@inject('thidLevel','App\Presenters\ThirdLevelPresenter') {!! $thidLevel->createVehicleTab('billingContent', $data->vehicle_id) !!}
@csrf @method('PUT')
@error('common_fee_type') {{ $message }} @enderror
※ 輸入 0 為無最大收費上限 @error('workday_max_price') {{ $message }} @enderror
※ 輸入 0 為無最大收費上限 @error('holiday_max_price') {{ $message }} @enderror

1. 設定月租群組收費之前,請在下方的月租等級設定。
2. 完成月租等級設定後,在計費內容設定臨停車輛的收費方式,設定收費後儲存修改。
3. 在臨停車輛收費方式欄位,選擇完成設定的收費方式。
4. 下方會列出月租群組設定,請設定每個月租群組的平、假日,起始、結束時段,卡別與跨時段狀態。
5. 非月租時段以臨停車收費,只以超過的時段做計費,跨時段不做時間的累計。
6. 此計費無基本單位,請涵蓋全部時段。
7. 時段卡別:臨停車、月租車。
8. 跨時段狀態:跨時段、不跨時段。
9. 最大金額預設為 0,代表無上限,需要設定請輸入大於 0 的數字。
@inject('checkSegmentService', 'App\Services\CheckSegmentService') @if (!$checkSegmentService->legality('rentGroup', $data->vehicle_id))
※ 時段設定不正確
@endif @inject('feeRentGroupPresenter','App\Presenters\FeeRentGroupPresenter') {!! $feeRentGroupPresenter->createMonthlyLevelTab($data->vehicle_id) !!} @can('billingContent.update') @endcan @can('segmentRentGroup.create') 新增月租時段 @endcan @can('monthlyLevel.index') 月租等級設定 @endcan
@endsection @section('js') @include('billingSetting.billingContent.feeCommonSection') @endsection