@php use Carbon\Carbon; // No seu provider de serviço ou em um bootstrapping do Laravel Carbon::setLocale('pt_BR'); @endphp @push('css') {{-- Select2 --}} @endpush
Vendas
{{-- Messagens da session --}} @include('partials.session-message') @if ($errors->any() || session('error'))
{{$errors->any() ? $errors->first() : session('error')}}
@endif
@if (isset($venda))
#
@endif

Dados Cadastrais

{{-- Empresa --}}
{{-- Tipo --}} {{-- Saída --}} {{-- Data entrada --}}
@if ($errors->has('dataentrada')) {{ $errors->first('dataentrada') }} @endif
{{-- Pessoa --}}
{{-- Tipo de Produto e Serviço --}}
{{-- Data de Inicio --}}
@if ($errors->has('datainicio')) {{ $errors->first('datainicio') }} @endif
{{-- Data Final --}}
@if ($errors->has('datafim')) {{ $errors->first('datafim') }} @endif
@if(isset($venda) and isset($venda->idpessoa))
@include('partials.endereco', ['readonly' => true, 'idpessoa' => $venda->idpessoa])
@include('partials.contato', ['readonly' => true, 'idpessoa' => $venda->idpessoa])
@endif

Dados de Pagamento

{{-- Forma Pagamento --}}
{{-- Quantidade de parcelas --}}
@if ($errors->has('qtdparcela')) {{ $errors->first('qtdparcela') }} @endif
{{-- Data Vencimento --}}
@if ($errors->has('datavencimento')) {{ $errors->first('datavencimento') }} @endif
@if ($agencias->isNotEmpty()) {{-- Agência --}}
@endif {{-- Observação --}}
@if ($errors->has('observacao')) {{ $errors->first('observacao') }} @endif

Dados da NF

{{-- Data emissão --}}
@if ($errors->has('dataemissao')) {{ $errors->first('dataemissao') }} @endif
{{-- NFe --}}
@if ($errors->has('nfe')) {{ $errors->first('nfe') }} @endif

Itens de Venda @if(isset($nfItem) && isset($venda) && !$venda->transferkey) + adicionar item @endif

@if (isset($nfItem) && isset($venda) && !$venda->transferkey) @endif @if(isset($nfItem)) @foreach ($nfItem as $itens) @if (!$venda->transferkey) @endif @endforeach @endif
AÇÃOPRODUTO QTD UN VALOR UN. VALOR TOTAL
delete @if(isset($itens->evento_idevento)) {{ Carbon::parse($itens->evento_data)->translatedFormat('D d/m') }} {{ Carbon::parse($itens->evento_hora)->format('H:i') }}h à {{ Carbon::parse($itens->evento_datafim)->translatedFormat('D d/m') }} {{ Carbon::parse($itens->evento_horafim)->format('H:i') }}h {{$itens->eventotipo}} - {{$itens->evento}} @endif transferkey ? 'disabled' : '' }} style="text-align: right;" step="0.01" class='form-control input-sm'style='width:100%;' type="text" name="qtd[]" name="qtd[]" value="{{ isset($itens) ? number_format($itens->qtd, 2, ',','') : old('qtd') }}" onblur="updateValorItem(this)" oninput="formatarEntradaNumerica(this);updateValorItem(this)" > transferkey ? 'disabled' : '' }} class='form-control input-sm'style='width:100%;' type="text" name="un[]" value="{{ isset($itens) ? $itens->un : old('un') }}"> transferkey ? 'disabled' : '' }} style="text-align: right;" step="0.01" class='form-control input-sm'style='width:100%;' type="text" name="valorun[]" value="{{ isset($itens) ? number_format($itens->valorun, 2, ',','') : old('valorun') }}" onblur="updateValorItem(this)" oninput="formatarEntradaNumerica(this);updateValorItem(this)"> transferkey ? 'disabled' : '' }} style="text-align: right;" step="0.01" class='form-control input-sm'style='width:100%;' type="number" name="valoritem[]" value="{{ isset($itens) ? $itens->valoritem : old('valoritem') }}" readonly>
VALOR DOS ITENS: @if ($errors->has('valornf')) {{ $errors->first('valornf') }} @endif
VALOR DO DESCONTO (-): @if ($errors->has('descontonf')) {{ $errors->first('descontonf') }} @endif
VALOR TOTAL: @if ($errors->has('totalnf')) {{ $errors->first('totalnf') }} @endif
@if(isset($nfParcela))

Parcela(s)

@foreach ($nfParcela as $parcela) @endforeach
ID NF Parcela Total Status VENCIMENTO

{{ $parcela->parcela }} / {{ $parcela->nf->qtdparcela }}

R$ {{ number_format($parcela->valor, 2, ',', '.') }}

{{ $parcela->status }}

{{ date('d/m/Y', strtotime($parcela->datavencimento)) }}
@endif
@include('partials.status', ['model' => $venda ?? null])
@if(isset($venda))
@include('partials.upload', ['model' => $venda])
@endif
@push('js') {{-- Select2 --}} {{-- --}} @include('partials.upload-js') @endpush