Move invoice blades around. Added invoices in credit view
Some checks failed
Create Docker Image / Build Docker Image (x86_64) (push) Failing after 28s
Create Docker Image / Final Docker Image Manifest (push) Has been skipped

This commit is contained in:
2024-07-06 19:28:14 +10:00
parent f458bb19c5
commit 844d509834
10 changed files with 93 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
<!-- $o = Account::class -->
<!-- $list = Collection[Invoice::class] -->
<!-- Show outstanding invoices -->
<table class="table table-bordered w-100" id="invoices_due_{{ $o->id }}">
<table class="table table-bordered w-100" id="invoices_due_{{$type}}">
<thead>
<tr>
<th>Account</th>
@@ -12,8 +12,8 @@
</thead>
<tbody>
@foreach ($list as $oo)
<tr @if ($oo->due_at->isPast()) class="table-danger" @endif>
@foreach($list as $oo)
<tr @if($oo->due_at->isPast()) class="table-danger" @endif>
<td>{{ $oo->account->name }}</td>
<td><a href="{{ url('u/invoice',$oo->id) }}">{{ $oo->lid }}</a></td>
<td>{{ $oo->due_at->format('Y-m-d') }}</td>
@@ -32,9 +32,9 @@
@js(datatables,bootstrap4|rowgroup)
<script type="text/javascript">
@if ($list->count())
@if($list->count())
$(document).ready(function() {
$('#invoices_due_{{ $o->id }}').DataTable({
$('#invoices_due_{{$type}}').DataTable({
// If we have more than 1 account id, order by account
order: [[0,'asc'],[2,'asc'],[1,'desc']],
rowGroup: {