arcadiasuite/plus/resources/views/conta-pagar/index.blade.php

287 lines
16 KiB
PHP

@extends('layouts.app', ['title' => 'Contas a Pagar'])
@section('css')
<style type="text/css">
.badge:hover{
cursor: pointer;
}
.descricao{
width: 220px;
white-space: normal;
word-break: break-word;
overflow-wrap: break-word;
}
</style>
@endsection
@section('content')
<div class="mt-1">
<div class="row">
<div class="card">
<div class="card-body">
<div class="col-md-2">
@can('conta_pagar_create')
<a href="{{ route('conta-pagar.create') }}" class="btn btn-success">
<i class="ri-add-circle-fill"></i>
Nova Conta Pagar
</a>
@endcan
</div>
<hr class="mt-3">
<div class="col-lg-12">
{!!Form::open()->fill(request()->all())
->get()
!!}
<div class="row mt-3 g-2">
<div class="col-md-4">
{!!Form::select('fornecedor_id', 'Pesquisar por nome')->attrs(['class' => 'select2'])
->options($fornecedor != null ? [$fornecedor->id => $fornecedor->info] : [])
!!}
</div>
<div class="col-md-2">
{!!Form::select('filtro_data', 'Filtro de data', ['data_vencimento' => 'Data de vencimento', 'data_pagamento' => 'Data de pagamento', 'created_at' => 'Data de cadastro'])
->attrs(['class' => 'form-select'])
!!}
</div>
<div class="col-md-2">
{!!Form::date('start_date', 'Data inicial')
!!}
</div>
<div class="col-md-2">
{!!Form::date('end_date', 'Data final')
!!}
</div>
@if(__countLocalAtivo() > 1)
<div class="col-md-2">
{!!Form::select('local_id', 'Local', ['' => 'Selecione'] + __getLocaisAtivoUsuario()->pluck('descricao', 'id')->all())
->attrs(['class' => 'select2'])
!!}
</div>
@endif
<div class="col-md-2">
{!!Form::select('status', 'Status', ['' => 'Todas', 1 => 'Pagas', 0 => 'Pendentes', -1 => 'Vencidas'])
->attrs(['class' => 'form-select'])
!!}
</div>
<div class="col-md-2">
{!!Form::select('ordem', 'Ordenar por', ['' => 'Data de cadastro', 1 => 'Data de vencimento'])
->attrs(['class' => 'form-select'])
!!}
</div>
<div class="col-md-2">
{!!Form::select('categoria_conta_id', 'Categoria', ['' => 'Todas']+$categorias->pluck('nome', 'id')->all())
->attrs(['class' => 'form-select'])
!!}
</div>
<div class="col-md-4 text-left">
<br>
<button class="btn btn-primary" type="submit"> <i class="ri-search-line"></i>Pesquisar</button>
<a id="clear-filter" class="btn btn-danger" href="{{ route('conta-pagar.index') }}"><i class="ri-eraser-fill"></i>Limpar</a>
</div>
</div>
{!!Form::close()!!}
</div>
<div class="col-md-12 mt-3">
<div class="table-responsive">
<table class="table table-striped table-centered mb-0">
<thead class="table-dark">
<tr>
@can('conta_pagar_delete')
<th>
<div class="form-check form-checkbox-danger mb-2">
<input class="form-check-input" type="checkbox" id="select-all-checkbox">
</div>
</th>
@endcan
<th data-label="Fornecedor">Fornecedor</th>
<th data-label="Descrição">Descrição</th>
@if(__countLocalAtivo() > 1)
<th data-label="Local">Local</th>
@endif
<th data-label="Categoria">Categoria</th>
<th data-label="Valor Integral">Valor Integral</th>
<th data-label="Valor Pago">Valor Pago</th>
<th data-label="Desconto">Desconto</th>
<th data-label="Acréscimo">Acréscimo</th>
<th data-label="Data Cadastro">Data Cadastro</th>
<th data-label="Data Vencimento">Data Vencimento</th>
<th data-label="Data Pagamento">Data Pagamento</th>
<th data-label="Estado">Estado</th>
<th data-label="Compra">Compra</th>
<th width="10%">Ações</th>
</tr>
</thead>
<tbody>
@forelse($data as $item)
<tr>
@can('conta_pagar_delete')
<td>
<div class="form-check form-checkbox-danger mb-2">
<input class="form-check-input check-delete" type="checkbox" name="item_delete[]" value="{{ $item->id }}">
</div>
</td>
@endcan
<td data-label="Fornecedor"><label style="width: 400px;">{{ $item->fornecedor ? $item->fornecedor->razao_social : '--' }}</label></td>
<td data-label="Descrição">
<div class="descricao">{{ $item->descricao }}</div>
</td>
@if(__countLocalAtivo() > 1)
<td data-label="Local" class="text-danger">{{ $item->localizacao->descricao }}</td>
@endif
<td data-label="Categoria">{{ $item->categoria ? $item->categoria->nome : '--' }}</td>
<td data-label="Valor Integral">{{ __moeda($item->valor_integral) }}</td>
<td data-label="Valor Pago">{{ __moeda($item->valor_pago) }}</td>
<td data-label="Desconto">{{ __moeda($item->desconto) }}</td>
<td data-label="Acréscimo">{{ __moeda($item->acrescimo) }}</td>
<td data-label="Data Cadastro">{{ __data_pt($item->created_at, 0) }}</td>
<td data-label="Data Vencimento">
{{ __data_pt($item->data_vencimento, 0) }}
@if(!$item->status)
<br>
<span class="text-danger" style="font-size: 10px">{{ $item->diasAtraso() }}</span>
@endif
</td>
<td data-label="Data Pagamento">{{ $item->status ? __data_pt($item->data_pagamento, false) : '--' }}</td>
<td data-label="Estado">
@if($item->status)
<span class="btn btn-success position-relative btn-sm" style="width: 120px">
<i class="ri-checkbox-line"></i> Pago
</span>
@else
@if(strtotime($item->data_vencimento) < strtotime(date('Y-m-d')))
<span class="btn btn-danger position-relative btn-sm" style="width: 120px">
<i class="ri-alert-line"></i> Em atraso
</span>
@else
<span class="btn btn-warning position-relative btn-sm" style="width: 120px">
<i class="ri-alert-line"></i> Pendente
</span>
@endif
@if($item->motivo_estorno)
<span onclick="motivoEstorno('{{ $item->motivo_estorno }}')" class="badge bg-primary">estornada</span>
@endif
@endif
</td>
<td data-label="Compra">
@if($item->nfe)
<a href="{{ route('nfe.show', [$item->nfe->id]) }}" class="btn btn-sm btn-primary">COMPRA</a>
#{{ $item->nfe->numero_sequencial }}
@else
--
@endif
</td>
<td>
<form action="{{ route('conta-pagar.destroy', $item->id) }}" method="post" id="form-{{$item->id}}" style="width: 250px;">
@if(!$item->status)
@method('delete')
@can('conta_pagar_edit')
<a class="btn btn-warning btn-sm" href="{{ route('conta-pagar.edit', [$item->id]) }}">
<i class="ri-pencil-fill"></i>
</a>
@endcan
@csrf
@can('conta_pagar_delete')
<button type="button" class="btn btn-delete btn-sm btn-danger">
<i class="ri-delete-bin-line"></i>
</button>
@endcan
@can('conta_pagar_edit')
<a href="{{ route('conta-pagar.pay', $item) }}" class="btn btn-success btn-sm text-white">
<i class="ri-money-dollar-box-line"></i>
</a>
@endcan
@else
@if(!$item->motivo_estorno)
<a title="Estornar conta" href="{{ route('conta-pagar.estornar', $item) }}" class="btn btn-info btn-sm text-white">
<i class="ri-arrow-go-back-fill"></i>
</a>
@endif
@endif
@if($item->status)
<a title="Ver conta" class="btn btn-light btn-sm" href="{{ route('conta-pagar.show', [$item->id]) }}">
<i class="ri-eye-line"></i>
</a>
@endif
@if($item->arquivo != null)
<a title="Baixar arquivo" class="btn btn-dark btn-sm" href="{{ route('conta-pagar.download-file', [$item->id]) }}">
<i class="ri-attachment-line"></i>
</a>
@endif
</form>
</td>
</tr>
@empty
<tr>
<td colspan="15" class="text-center">Nada encontrado</td>
</tr>
@endforelse
</tbody>
<tfoot>
<tr>
<td colspan="4">Soma da página</td>
<td>{{ __moeda($data->sum('valor_integral')) }}</td>
<td>{{ __moeda($data->sum('valor_pago')) }}</td>
</tr>
</tfoot>
</table>
</div>
<br>
<div class="row">
<div class="col-md-3 col-xl-2">
@can('conta_pagar_delete')
<form action="{{ route('conta-pagar.destroy-select') }}" method="post" id="form-delete-select">
@method('delete')
@csrf
<div></div>
<button type="button" class="btn btn-danger btn-sm w-100 btn-delete-all" disabled>
<i class="ri-close-circle-line"></i> Remover selecionados
</button>
</form>
@endcan
</div>
<div class="col-md-3 col-xl-2">
@can('conta_pagar_edit')
<form action="{{ route('conta-pagar.pagar-select') }}" method="post" id="form-recebe-paga-select">
@csrf
<div></div>
<button class="btn btn-success btn-sm w-100 btn-recebe-paga-all" disabled>
<i class="ri-check-line"></i> Pagar selecionados
</button>
</form>
@endcan
</div>
<div class="col-md-3 col-xl-2 text-end">
@if(request()->has('categoria_conta_id'))
<form action="{{ route('conta-pagar.export-excel') }}" method="get">
@foreach(request()->all() as $key => $value)
<input type="hidden" name="{{ $key }}" value="{{ $value }}">
@endforeach
<button type="submit" class="btn btn-dark btn-sm w-100">
<i class="ri-file-excel-line "></i> Exportar para Excel
</button>
</form>
@endif
</div>
</div>
</div>
<br>
{!! $data->appends(request()->all())->links() !!}
</div>
</div>
</div>
</div>
@endsection
@section('js')
<script type="text/javascript" src="js/delete_selecionados.js"></script>
<script type="text/javascript" src="js/recebe_paga_selecionados.js"></script>
<script type="text/javascript">
function motivoEstorno(motivo) {
swal("", motivo, 'info')
}
</script>
@endsection