107 lines
7.1 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
@extends('layouts.admin')
@section('title', trans_choice('general.invoices', 2))
@section('new_button')
2019-12-31 15:49:09 +03:00
@permission('create-sales-invoices')
2019-11-16 10:21:14 +03:00
<span><a href="{{ route('invoices.create') }}" class="btn btn-primary btn-sm btn-success header-button-top"><span class="fa fa-plus"></span> &nbsp;{{ trans('general.add_new') }}</a></span>
2020-02-03 12:31:25 +03:00
<span><a href="{{ route('import.create', ['group' => 'sales', 'type' => 'invoices']) }}" class="btn btn-white btn-sm header-button-top"><span class="fa fa-upload"></span> &nbsp;{{ trans('import.import') }}</a></span>
2019-11-16 10:21:14 +03:00
@endpermission
<span><a href="{{ route('invoices.export', request()->input()) }}" class="btn btn-white btn-sm header-button-top"><span class="fa fa-download"></span> &nbsp;{{ trans('general.export') }}</a></span>
2018-06-11 03:47:32 +03:00
@endsection
2017-09-14 22:21:00 +03:00
@section('content')
2019-12-12 19:15:20 +03:00
@if ($invoices->count())
<div class="card">
2020-02-02 21:08:00 +03:00
<div class="card-header border-bottom-0" :class="[{'bg-gradient-primary': bulk_action.show}]">
2019-12-12 19:15:20 +03:00
{!! Form::open([
'method' => 'GET',
2020-02-02 21:08:00 +03:00
'route' => 'invoices.index',
'role' => 'form',
2019-12-12 19:15:20 +03:00
'class' => 'mb-0'
]) !!}
2020-02-02 21:08:00 +03:00
<div class="align-items-center" v-if="!bulk_action.show">
<akaunting-search
:placeholder="'{{ trans('general.search_placeholder') }}'"
:options="{{ json_encode([]) }}"
></akaunting-search>
2019-11-16 10:21:14 +03:00
</div>
2020-02-02 21:08:00 +03:00
{{ Form::bulkActionRowGroup('general.invoices', $bulk_actions, ['group' => 'sales', 'type' => 'invoices']) }}
2019-12-12 19:15:20 +03:00
{!! Form::close() !!}
</div>
2019-11-16 10:21:14 +03:00
2019-12-12 19:15:20 +03:00
<div class="table-responsive">
<table class="table table-flush table-hover">
<thead class="thead-light">
<tr class="row table-head-line">
2019-12-16 17:03:53 +03:00
<th class="col-sm-2 col-md-1 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionAllGroup() }}</th>
<th class="col-md-2 col-lg-2 col-xl-1 d-none d-md-block">@sortablelink('invoice_number', trans_choice('general.numbers', 1), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow'])</th>
2020-01-18 16:43:04 +03:00
<th class="col-xs-4 col-sm-4 col-md-4 col-lg-2 col-xl-3 text-left">@sortablelink('contact_name', trans_choice('general.customers', 1))</th>
2019-12-12 19:15:20 +03:00
<th class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1 text-right">@sortablelink('amount', trans('general.amount'))</th>
2020-01-23 18:13:32 +03:00
<th class="col-lg-2 col-xl-2 d-none d-lg-block text-left">@sortablelink('invoiced_at', trans('invoices.invoice_date'))</th>
<th class="col-lg-2 col-xl-2 d-none d-lg-block text-left">@sortablelink('due_at', trans('invoices.due_date'))</th>
2020-01-13 19:26:25 +03:00
<th class="col-lg-1 col-xl-1 d-none d-lg-block text-center">@sortablelink('status', trans_choice('general.statuses', 1))</th>
2019-12-12 19:15:20 +03:00
<th class="col-xs-4 col-sm-2 col-md-2 col-lg-1 col-xl-1 text-center"><a>{{ trans('general.actions') }}</a></th>
</tr>
</thead>
2019-11-16 10:21:14 +03:00
2019-12-12 19:15:20 +03:00
<tbody>
@foreach($invoices as $item)
@php $paid = $item->paid; @endphp
<tr class="row align-items-center border-top-1">
2019-12-16 17:03:53 +03:00
<td class="col-sm-2 col-md-1 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionGroup($item->id, $item->invoice_number) }}</td>
2020-01-22 19:03:34 +03:00
<td class="col-md-2 col-lg-2 col-xl-1 d-none d-md-block"><a class="col-aka" href="{{ route('invoices.show' , $item->id) }}">{{ $item->invoice_number }}</a></td>
2020-01-18 16:43:04 +03:00
<td class="col-xs-4 col-sm-4 col-md-4 col-lg-2 col-xl-3 text-left">{{ $item->contact_name }}</td>
2019-12-12 19:15:20 +03:00
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1 text-right">@money($item->amount, $item->currency_code, true)</td>
2020-01-23 18:13:32 +03:00
<td class="col-lg-2 col-xl-2 d-none d-lg-block text-left">@date($item->invoiced_at)</td>
<td class="col-lg-2 col-xl-2 d-none d-lg-block text-left">@date($item->due_at)</td>
2020-01-13 19:26:25 +03:00
<td class="col-lg-1 col-xl-1 d-none d-lg-block text-center">
2020-01-11 16:57:32 +03:00
<span class="badge badge-pill badge-{{ $item->status_label }}">{{ trans('invoices.statuses.' . $item->status) }}</span>
2019-12-12 19:15:20 +03:00
</td>
<td class="col-xs-4 col-sm-2 col-md-2 col-lg-1 col-xl-1 text-center">
<div class="dropdown">
<a class="btn btn-neutral btn-sm text-light items-align-center py-2" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h text-muted"></i>
</a>
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
<a class="dropdown-item" href="{{ route('invoices.show', $item->id) }}">{{ trans('general.show') }}</a>
2019-11-16 10:21:14 +03:00
@if (!$item->reconciled)
2019-12-12 19:15:20 +03:00
<a class="dropdown-item" href="{{ route('invoices.edit', $item->id) }}">{{ trans('general.edit') }}</a>
2019-11-16 10:21:14 +03:00
@endif
2019-12-12 19:15:20 +03:00
<div class="dropdown-divider"></div>
2019-12-31 15:49:09 +03:00
@permission('create-sales-invoices')
2019-12-12 19:15:20 +03:00
<a class="dropdown-item" href="{{ route('invoices.duplicate', $item->id) }}">{{ trans('general.duplicate') }}</a>
<div class="dropdown-divider"></div>
@endpermission
2019-12-31 15:49:09 +03:00
@permission('delete-sales-invoices')
2019-12-12 19:15:20 +03:00
@if (!$item->reconciled)
2020-02-02 21:08:00 +03:00
{!! Form::deleteLink($item, 'invoices.destroy') !!}
2019-12-12 19:15:20 +03:00
@endif
@endpermission
</div>
2019-11-16 10:21:14 +03:00
</div>
2019-12-12 19:15:20 +03:00
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
2017-09-14 22:21:00 +03:00
2019-12-12 19:15:20 +03:00
<div class="card-footer table-action">
<div class="row">
2019-12-24 17:53:18 +03:00
@include('partials.admin.pagination', ['items' => $invoices])
2019-12-12 19:15:20 +03:00
</div>
2019-11-16 10:21:14 +03:00
</div>
</div>
2019-12-12 19:15:20 +03:00
@else
2019-12-31 15:49:09 +03:00
@include('partials.admin.empty_page', ['page' => 'invoices', 'docs_path' => 'sales/invoices'])
2019-12-12 19:15:20 +03:00
@endif
2017-09-14 22:21:00 +03:00
@endsection
2019-11-16 10:21:14 +03:00
@push('scripts_start')
2019-12-31 15:49:09 +03:00
<script src="{{ asset('public/js/sales/invoices.js?v=' . version('short')) }}"></script>
2018-11-02 11:32:42 +03:00
@endpush