Added hosting report and enabled updating hosting details

This commit is contained in:
Deon George
2022-04-02 20:26:59 +11:00
parent edc06e51fb
commit 9659621ba0
11 changed files with 275 additions and 19 deletions

View File

@@ -80,7 +80,7 @@
],
});
$('#invoices_due tbody').on('click','tr', function () {
$('tbody').on('click','tr', function () {
$(this).toggleClass('selected');
});
});

View File

@@ -19,7 +19,7 @@
<div class="col-12">
<div class="card card-dark">
<div class="card-body">
<table class="table table-hover" id="service_domain">
<table class="table table-hover" id="service_email">
<thead>
<tr>
<th>Service ID</tH>
@@ -71,7 +71,7 @@
</style>
<script type="text/javascript">
$(document).ready(function() {
$('#service_domain').DataTable({
$('#service_email').DataTable({
order: [[4,'asc'],[1,'asc'],[2,'desc']],
rowGroup: {
dataSrc: 4,
@@ -84,7 +84,7 @@
],
});
$('#invoices_due tbody').on('click','tr', function () {
$('tbody').on('click','tr', function () {
$(this).toggleClass('selected');
});
});

View File

@@ -0,0 +1,88 @@
@extends('adminlte::layouts.app')
@section('htmlheader_title')
Email Hosting
@endsection
@section('page_title')
Email Hosting
@endsection
@section('contentheader_title')
Email Hosting
@endsection
@section('contentheader_description')
Email Hosting currently managed.
@endsection
@section('main-content')
<div class="row">
<div class="col-12">
<div class="card card-dark">
<div class="card-body">
<table class="table table-hover" id="service_host">
<thead>
<tr>
<th>Service ID</tH>
<th>Account</th>
<th>Product</th>
<th>Domain</th>
<th>Expires</th>
<th>Supplier</th>
<th>Next Billed</th>
<th>Price</th>
<th>Term</th>
</tr>
</thead>
<tbody>
@foreach ($o as $oo)
<tr @if ($oo->service_expire->isPast()) class="table-danger" @endif>
<td><a href="{{ url('u/service',[$oo->service_id]) }}">{{ $oo->service->sid }}</td>
<td>{{ $oo->service->account->name }}</td>
<td>{{ $oo->service->product->name }}</td>
<td>{{ $oo->service_name }}</td>
<td>{{ $oo->service_expire->format('Y-m-d') }}</td>
<td>{{ ($x=$oo->service->product->supplier) ? $x->name : 'Unknown' }}</td>
<td>@if ($oo->service->isBilled()) <span class="@if($oo->service->suspend_billing)strike @endif">{{ $oo->service->invoice_next->format('Y-m-d') }}</span> @else - @endif</td>
<td>@if (! $oo->service->external_billing)${{ number_format($oo->service->next_invoice_items(TRUE)->sum('total'),2) }}@else - @endif</td>
<td>{{ $oo->service->billing_interval_string }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@section('page-scripts')
@css(datatables,bootstrap4|rowgroup)
@js(datatables,bootstrap4|rowgroup)
<style>
.strike {
text-decoration: line-through;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('#service_host').DataTable({
order: [[5,'asc'],[1,'asc'],[2,'desc']],
rowGroup: {
dataSrc: 5,
},
columnDefs: [
{
targets: [5],
visible: false,
}
],
});
$('tbody').on('click','tr', function () {
$(this).toggleClass('selected');
});
});
</script>
@append