arcadiasuite/plus/resources/views/nfce/arquivos_xml.blade.php

123 lines
5.1 KiB
PHP

@extends('layouts.app', ['title' => 'Arquivos XML NFCe'])
@section('content')
<div class="card mt-1">
<div class="card-header">
<h4>Arquivos XML NFCe</h4>
</div>
<div class="card-body">
<hr class="mt-3">
<div class="col-lg-12">
{!!Form::open()->fill(request()->all())
->get()
!!}
<div class="row mt-3">
<div class="col-md-2">
{!!Form::date('start_date', 'Data inicial')
!!}
</div>
<div class="col-md-2">
{!!Form::date('end_date', 'Data final')
!!}
</div>
<div class="col-md-2">
{!!Form::select('estado', 'Estado', ['aprovado' => 'Aprovado', 'cancelado' => 'Cancelado'])
->attrs(['class' => 'form-select'])
!!}
</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-lg-4 col-12">
<br>
<button class="btn btn-primary" type="submit"> <i class="ri-search-line"></i>Pesquisar</button>
</div>
</div>
{!!Form::close()!!}
<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>
<th>Cliente</th>
<th>Número</th>
<th>Chave</th>
<th>Valor</th>
</tr>
</thead>
@php $total = 0; @endphp
<tbody>
@foreach($data as $item)
@if(file_exists(public_path("xml_nfce/").$item->chave.".xml"))
<tr>
<td data-label="Cliente">{{ $item->cliente ? $item->cliente->info : '--' }}</td>
<td data-label="Número">{{ $item->numero }}</td>
<td data-label="Chave">{{ $item->chave }}</td>
<td data-label="Valor">{{ __moeda($item->total) }}</td>
</tr>
@php $total += $item->total; @endphp
@endif
@endforeach
</tbody>
@if(sizeof($data) > 0)
<tfoot>
<td colspan="3" style="text-align: right;">Total</td>
<td>{{ __moeda($total) }}</td>
</tfoot>
@endif
</table>
</div>
</div>
@if(sizeof($data) > 0)
<br>
<div class="row">
<div class="col-md-2 mt-1">
<form method="get" action="{{ route('nfce-xml.download') }}">
<input type="hidden" name="start_date" value="{{ request()->start_date }}">
<input type="hidden" name="end_date" value="{{ request()->end_date }}">
<input type="hidden" name="estado" value="{{ request()->estado }}">
<input type="hidden" name="local_id" value="{{ request()->local_id }}">
<button class="btn btn-dark w-100">
<i class="ri-file-zip-line"></i>
Download Zip
</button>
</form>
</div>
<div class="col-md-7"></div>
@if($escritorio != null && $escritorio->email)
<div class="col-md-3 text-end mt-1">
<form method="get" action="{{ route('nfce-xml.envio-contador') }}">
<input type="hidden" name="start_date" value="{{ request()->start_date }}">
<input type="hidden" name="end_date" value="{{ request()->end_date }}">
<input type="hidden" name="estado" value="{{ request()->estado }}">
<input type="hidden" name="local_id" value="{{ request()->local_id }}">
<button class="btn btn-success w-100">
<i class="ri-mail-send-fill"></i>
Enviar XML para o contador
</button>
</form>
</div>
@endif
</div>
@else
<p class="text-danger">Filtre por período para buscar os arquivos</p>
@endif
</div>
</div>
</div>
@endsection