bug fixes, senderID polishing, support fees, paperless partial

This commit is contained in:
Kwesi Banson
2024-07-02 09:25:00 +00:00
parent 318fddbff0
commit edb78d1bfc
116 changed files with 1488 additions and 368 deletions

View File

@@ -239,7 +239,7 @@
<div class="">
<p><b>IP Addresses</b> <a href="" class="btn btn-primary btn-xs pull-right" id="addIpBtn" ><i class="fa fa-plus-square"></i> Add IP</a></p>
<table class="table table-striped">
<table class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th scope="col active">Service</th>
@@ -261,7 +261,7 @@
<hr>
<div class="">
<p><b> Notes</b> <a class="btn btn-warning btn-xs pull-right" id="createNotesBtn"><i class="fa fa-plus-circle"></i> Add Notes</a></p>
<table class="table table-striped">
<table class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th scope="col active">Services</th>
@@ -278,6 +278,34 @@
@endforeach
</table>
</div>
<div class="">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<div class=" {{ $errors->has('rate_type') ? 'has-error' : ''}}">
<label class="" for="rateTypeSel">Rate Types</label>
{!! Form::select('rate_type', $rate_types, old('rate_type'), ['class' => 'form-control' , 'id' => 'rateTypeSel']) !!}
{!! $errors->first('rate_type', '<p class="help-block">:message</p>') !!}
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<div class="{{ $errors->has('buying_rate_flat') ? 'has-error' : ''}}" id="flatRateFileDiv">
<label class="" for="buyingRateFlat">Buying Rate</label>
{!! Form::text('buying_rate', old('buying_rate'), ['class' => 'form-control' , 'id' => 'buyingRateFlat']) !!}
{!! $errors->first('buying_rate', '<p class="help-block">:message</p>') !!}
</div>
<div class="hidden {{ $errors->has('sliding_rate_file') ? 'has-error' : ''}}" id="slidingRateFileDiv">
<label class="" for="slidingRateFile">Sliding Rate File</label>
{!! Form::file('sliding_rate_file', null, ['class' => 'form-control' , 'id' => 'slidingRateFile', 'placeholder' => 'Select file to upload']) !!}
{!! $errors->first('buying_rate_flat', '<p class="help-block">:message</p>') !!}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="ln_solid"></div>