2017-09-14 22:21:00 +03:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
|
|
|
@section('title', trans_choice('general.revenues', 2))
|
|
|
|
|
|
|
|
@section('new_button')
|
2018-06-11 03:47:32 +03:00
|
|
|
@permission('create-incomes-revenues')
|
2017-09-14 22:21:00 +03:00
|
|
|
<span class="new-button"><a href="{{ url('incomes/revenues/create') }}" class="btn btn-success btn-sm"><span class="fa fa-plus"></span> {{ trans('general.add_new') }}</a></span>
|
2018-06-11 03:47:32 +03:00
|
|
|
<span><a href="{{ url('common/import/incomes/revenues') }}" class="btn btn-default btn-sm"><span class="fa fa-download"></span> {{ trans('import.import') }}</a></span>
|
2017-09-14 22:21:00 +03:00
|
|
|
@endpermission
|
2018-06-11 03:47:32 +03:00
|
|
|
<span><a href="{{ route('revenues.export', request()->input()) }}" class="btn btn-default btn-sm"><span class="fa fa-upload"></span> {{ trans('general.export') }}</a></span>
|
|
|
|
@endsection
|
2017-09-14 22:21:00 +03:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<!-- Default box -->
|
|
|
|
<div class="box box-success">
|
2017-10-13 18:41:17 +03:00
|
|
|
<div class="box-header with-border">
|
2017-09-14 22:21:00 +03:00
|
|
|
{!! Form::open(['url' => 'incomes/revenues', 'role' => 'form', 'method' => 'GET']) !!}
|
2018-11-02 11:32:42 +03:00
|
|
|
<div id="items" class="pull-left box-filter">
|
2017-10-13 18:41:17 +03:00
|
|
|
<span class="title-filter hidden-xs">{{ trans('general.search') }}:</span>
|
2017-09-27 21:40:25 +03:00
|
|
|
{!! Form::text('search', request('search'), ['class' => 'form-control input-filter input-sm', 'placeholder' => trans('general.search_placeholder')]) !!}
|
2018-10-04 16:16:55 +03:00
|
|
|
{!! Form::dateRange('date', trans('general.date'), 'calendar', []) !!}
|
2018-11-02 11:32:42 +03:00
|
|
|
{!! Form::select('customers[]', $customers, request('customers'), ['id' => 'filter-customers', 'class' => 'form-control input-filter input-lg', 'multiple' => 'multiple']) !!}
|
|
|
|
{!! Form::select('categories[]', $categories, request('categories'), ['id' => 'filter-categories', 'class' => 'form-control input-filter input-lg', 'multiple' => 'multiple']) !!}
|
|
|
|
{!! Form::select('accounts[]', $accounts, request('accounts'), ['id' => 'filter-accounts', 'class' => 'form-control input-filter input-lg', 'multiple' => 'multiple']) !!}
|
2017-09-14 22:21:00 +03:00
|
|
|
{!! Form::button('<span class="fa fa-filter"></span> ' . trans('general.filter'), ['type' => 'submit', 'class' => 'btn btn-sm btn-default btn-filter']) !!}
|
|
|
|
</div>
|
|
|
|
<div class="pull-right">
|
2017-10-13 18:41:17 +03:00
|
|
|
<span class="title-filter hidden-xs">{{ trans('general.show') }}:</span>
|
2017-09-14 22:21:00 +03:00
|
|
|
{!! Form::select('limit', $limits, request('limit', setting('general.list_limit', '25')), ['class' => 'form-control input-filter input-sm', 'onchange' => 'this.form.submit()']) !!}
|
|
|
|
</div>
|
|
|
|
{!! Form::close() !!}
|
|
|
|
</div>
|
|
|
|
<!-- /.box-header -->
|
|
|
|
<div class="box-body">
|
|
|
|
<div class="table table-responsive">
|
2017-10-13 18:41:17 +03:00
|
|
|
<table class="table table-striped table-hover" id="tbl-revenues">
|
2017-09-14 22:21:00 +03:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2017-10-13 18:41:17 +03:00
|
|
|
<th class="col-md-2">@sortablelink('paid_at', trans('general.date'))</th>
|
2018-03-30 17:46:50 +03:00
|
|
|
<th class="col-md-2 text-right amount-space">@sortablelink('amount', trans('general.amount'))</th>
|
2017-10-13 18:41:17 +03:00
|
|
|
<th class="col-md-3 hidden-xs">@sortablelink('customer.name', trans_choice('general.customers', 1))</th>
|
|
|
|
<th class="col-md-2 hidden-xs">@sortablelink('category.name', trans_choice('general.categories', 1))</th>
|
|
|
|
<th class="col-md-2 hidden-xs">@sortablelink('account.name', trans_choice('general.accounts', 1))</th>
|
|
|
|
<th class="col-md-1 text-center">{{ trans('general.actions') }}</th>
|
2017-09-14 22:21:00 +03:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@foreach($revenues as $item)
|
|
|
|
<tr>
|
2018-10-27 17:57:40 +03:00
|
|
|
@if ($item->reconciled)
|
|
|
|
<td>{{ Date::parse($item->paid_at)->format($date_format) }}</td>
|
|
|
|
@else
|
2017-09-14 22:21:00 +03:00
|
|
|
<td><a href="{{ url('incomes/revenues/' . $item->id . '/edit') }}">{{ Date::parse($item->paid_at)->format($date_format) }}</a></td>
|
2018-10-27 17:57:40 +03:00
|
|
|
@endif
|
2018-03-30 17:46:50 +03:00
|
|
|
<td class="text-right amount-space">@money($item->amount, $item->currency_code, true)</td>
|
2017-12-16 14:11:27 +03:00
|
|
|
<td class="hidden-xs">{{ !empty($item->customer->name) ? $item->customer->name : trans('general.na') }}</td>
|
2017-10-13 18:41:17 +03:00
|
|
|
<td class="hidden-xs">{{ $item->category->name }}</td>
|
|
|
|
<td class="hidden-xs">{{ $item->account->name }}</td>
|
|
|
|
<td class="text-center">
|
2017-12-05 18:31:18 +03:00
|
|
|
@if ($item->category->id != $transfer_cat_id)
|
2017-10-13 18:41:17 +03:00
|
|
|
<div class="btn-group">
|
|
|
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" data-toggle-position="left" aria-expanded="false">
|
|
|
|
<i class="fa fa-ellipsis-h"></i>
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu dropdown-menu-right">
|
2018-10-27 17:57:40 +03:00
|
|
|
@if (!$item->reconciled)
|
2017-10-13 18:41:17 +03:00
|
|
|
<li><a href="{{ url('incomes/revenues/' . $item->id . '/edit') }}">{{ trans('general.edit') }}</a></li>
|
2017-11-26 15:20:17 +03:00
|
|
|
<li class="divider"></li>
|
2018-10-27 17:57:40 +03:00
|
|
|
@endif
|
|
|
|
@permission('create-incomes-revenues')
|
2017-12-05 18:31:18 +03:00
|
|
|
<li><a href="{{ url('incomes/revenues/' . $item->id . '/duplicate') }}">{{ trans('general.duplicate') }}</a></li>
|
2017-11-26 15:20:17 +03:00
|
|
|
@endpermission
|
2017-10-13 18:41:17 +03:00
|
|
|
@permission('delete-incomes-revenues')
|
2018-10-27 17:57:40 +03:00
|
|
|
@if (!$item->reconciled)
|
2017-12-05 18:31:18 +03:00
|
|
|
<li class="divider"></li>
|
2017-10-13 18:41:17 +03:00
|
|
|
<li>{!! Form::deleteLink($item, 'incomes/revenues') !!}</li>
|
2018-10-27 17:57:40 +03:00
|
|
|
@endif
|
2017-10-13 18:41:17 +03:00
|
|
|
@endpermission
|
|
|
|
</ul>
|
|
|
|
</div>
|
2017-12-05 18:31:18 +03:00
|
|
|
@endif
|
2017-09-14 22:21:00 +03:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- /.box-body -->
|
|
|
|
|
|
|
|
<div class="box-footer">
|
|
|
|
@include('partials.admin.pagination', ['items' => $revenues, 'type' => 'revenues'])
|
|
|
|
</div>
|
|
|
|
<!-- /.box-footer -->
|
|
|
|
</div>
|
|
|
|
<!-- /.box -->
|
|
|
|
@endsection
|
|
|
|
|
2018-10-04 16:16:55 +03:00
|
|
|
@push('js')
|
|
|
|
<script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/daterangepicker/moment.js') }}"></script>
|
|
|
|
<script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/daterangepicker/daterangepicker.js') }}"></script>
|
|
|
|
<script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/bootstrap-datepicker.js') }}"></script>
|
|
|
|
<script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/locales/bootstrap-datepicker.' . language()->getShortCode() . '.js') }}"></script>
|
|
|
|
@endpush
|
|
|
|
|
|
|
|
@push('css')
|
|
|
|
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/daterangepicker/daterangepicker.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/datepicker3.css') }}">
|
|
|
|
@endpush
|
|
|
|
|
2018-11-02 11:32:42 +03:00
|
|
|
@push('scripts')
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
|
|
|
$("#filter-categories").select2({
|
|
|
|
placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.categories', 1)]) }}"
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#filter-customers").select2({
|
|
|
|
placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.customers', 1)]) }}"
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#filter-accounts").select2({
|
|
|
|
placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.accounts', 1)]) }}"
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endpush
|
|
|
|
|