126 lines
8.1 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
@extends('layouts.admin')
@section('title', trans_choice('general.revenues', 2))
@section('new_button')
2020-10-14 17:07:59 +03:00
@can('create-sales-revenues')
2020-10-22 18:58:58 +03:00
<a href="{{ route('revenues.create') }}" class="btn btn-success btn-sm">{{ trans('general.add_new') }}</a>
<a href="{{ route('import.create', ['group' => 'sales', 'type' => 'revenues']) }}" class="btn btn-white btn-sm">{{ trans('import.import') }}</a>
2020-10-14 17:07:59 +03:00
@endcan
2020-10-22 18:58:58 +03:00
<a href="{{ route('revenues.export', request()->input()) }}" class="btn btn-white btn-sm">{{ trans('general.export') }}</a>
2018-06-11 03:47:32 +03:00
@endsection
2017-09-14 22:21:00 +03:00
@section('content')
2020-11-09 20:30:05 +03:00
@if ($revenues->count() || request()->get('search', false))
2019-12-12 19:15:20 +03:00
<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' => 'revenues.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">
2020-11-06 01:48:49 +03:00
<x-search-string model="App\Models\Banking\Transaction" />
2019-11-16 10:21:14 +03:00
</div>
2020-02-02 21:08:00 +03:00
{{ Form::bulkActionRowGroup('general.revenues', $bulk_actions, ['group' => 'sales', 'type' => 'revenues']) }}
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-2 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionAllGroup() }}</th>
2020-09-07 15:42:56 +03:00
<th class="col-xs-4 col-sm-4 col-md-3 col-lg-1 col-xl-1">@sortablelink('paid_at', trans('general.date'), ['filter' => 'active, visible'], ['class' => 'col-aka', 'rel' => 'nofollow'])</th>
2020-01-13 19:26:25 +03:00
<th class="col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 text-right">@sortablelink('amount', trans('general.amount'))</th>
2020-09-07 15:42:56 +03:00
<th class="col-md-2 col-lg-3 col-xl-3 d-none d-md-block text-left">@sortablelink('contact.name', trans_choice('general.customers', 1))</th>
2020-01-13 19:26:25 +03:00
<th class="col-lg-2 col-xl-2 d-none d-lg-block text-left">@sortablelink('category.name', trans_choice('general.categories', 1))</th>
2020-09-07 15:42:56 +03:00
<th class="col-lg-2 col-xl-2 d-none d-lg-block text-left">@sortablelink('account.name', trans_choice('general.accounts', 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($revenues as $item)
<tr class="row align-items-center border-top-1">
2019-12-16 17:03:53 +03:00
<td class="col-sm-2 col-md-2 col-lg-1 col-xl-1 d-none d-sm-block">{{ Form::bulkActionGroup($item->id, $item->contact->name) }}</td>
2019-12-12 19:15:20 +03:00
@if ($item->reconciled)
2020-03-13 14:18:17 +03:00
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-1"><a class="col-aka" href="#">@date($item->paid_at)</a></td>
2019-12-12 19:15:20 +03:00
@else
2020-01-23 18:13:32 +03:00
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-1"><a class="col-aka" href="{{ route('revenues.edit', $item->id) }}">@date($item->paid_at)</a></td>
2019-12-12 19:15:20 +03:00
@endif
2020-01-13 19:26:25 +03:00
<td class="col-xs-4 col-sm-4 col-md-3 col-lg-2 col-xl-2 text-right">@money($item->amount, $item->currency_code, true)</td>
2020-09-07 15:42:56 +03:00
<td class="col-md-2 col-lg-3 col-xl-3 d-none d-md-block text-left">
2020-02-10 16:13:14 +03:00
{{ $item->contact->name }}
@if($item->invoice)
@if ($item->invoice->status == 'paid')
2020-12-24 01:28:38 +03:00
<el-tooltip content="{{ $item->invoice->document_number }} / {{ trans('invoices.statuses.paid') }}"
2020-02-10 16:13:14 +03:00
effect="success"
:open-delay="100"
placement="top">
<span class="badge badge-dot pl-2 h-0">
2020-02-10 16:13:14 +03:00
<i class="bg-success"></i>
</span>
</el-tooltip>
2020-02-10 17:42:36 +03:00
@elseif ($item->invoice->status == 'partial')
2020-12-24 01:28:38 +03:00
<el-tooltip content="{{ $item->invoice->document_number }} / {{ trans('invoices.statuses.partial') }}"
2020-02-10 16:13:14 +03:00
effect="info"
:open-delay="100"
placement="top">
<span class="badge badge-dot pl-2 h-0">
2020-02-10 16:13:14 +03:00
<i class="bg-info"></i>
</span>
</el-tooltip>
@endif
@endif
</td>
2020-01-18 17:13:58 +03:00
<td class="col-lg-2 col-xl-2 d-none d-lg-block text-left">{{ $item->category->name }}</td>
2020-09-07 15:42:56 +03:00
<td class="col-lg-2 col-xl-2 d-none d-lg-block text-left">{{ $item->account->name }}</td>
2019-12-12 19:15:20 +03:00
<td class="col-xs-4 col-sm-2 col-md-2 col-lg-1 col-xl-1 text-center">
2020-01-18 17:24:13 +03:00
<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">
@if (!$item->reconciled)
<a class="dropdown-item" href="{{ route('revenues.edit', $item->id) }}">{{ trans('general.edit') }}</a>
<div class="dropdown-divider"></div>
@endif
@if (empty($item->document_id))
2020-10-14 17:07:59 +03:00
@can('create-sales-revenues')
2020-01-18 17:24:13 +03:00
<a class="dropdown-item" href="{{ route('revenues.duplicate', $item->id) }}">{{ trans('general.duplicate') }}</a>
<div class="dropdown-divider"></div>
2020-10-14 17:07:59 +03:00
@endcan
@endif
@if (!$item->reconciled)
2020-10-14 17:07:59 +03:00
@can('delete-sales-revenues')
{!! Form::deleteLink($item, 'revenues.destroy') !!}
2020-10-14 17:07:59 +03:00
@endcan
@endif
2019-12-12 19:15:20 +03:00
</div>
2020-01-18 17:24:13 +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' => $revenues])
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' => 'revenues', 'docs_path' => 'sales/revenues'])
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/revenues.js?v=' . version('short')) }}"></script>
2018-11-02 11:32:42 +03:00
@endpush