Relatório de Saídas

Venda de Mercadoria


@foreach($sales as $sale)

Informações da Venda: {{ $sale->created_at->format('d/m/y H:i:s') }}

Código da Venda: {{ $sale->codigo }}

Cliente: @foreach($clientes as $cliente) @if($cliente->id == $sale->client_id) {{ $cliente->razao_social_nome }} @endif @endforeach

@foreach($user as $usuario) @if($usuario->id == $sale->iduser)

Usuario: {{ $usuario->name }}

@endif @endforeach

Forma de Pagamento

@php $tiposPagamento = [ 1 => 'Dinheiro', 2 => 'Pix', 3 => 'Cartão Crédito', 4 => 'Cartão Débito', 5 => 'Prazo', 6 => 'Cheque', 7 => 'Deposito', ]; @endphp @foreach($pagamentos as $pagamento) @if($pagamento->salecodigo == $sale->id)

Tipo: {{ $tiposPagamento[$pagamento->tipo_pagamento] ?? 'Desconhecido' }}

Valor: {{ number_format($pagamento->valor_pagamento,2,',','.') }}

@endif @endforeach

Listagem de Mercadorias

@foreach($itemsale->where('salecodigo', $sale->id) as $itenssale) @foreach($produtos as $produto) @if($produto->id == $itenssale->produto_codigo) @endif @endforeach @endforeach
Itens Produto Qtde Vlr. Venda Acres. Desc. Total Venda
{{$produto->referencia_produto}} {{$produto->nome_produto}}{{ number_format($itenssale->qtde, 2, ',', '.') }} {{ number_format($itenssale->vlrunitario, 2, ',', '') }} {{ number_format($itenssale->valor_acrescimo, 2, ',', '') }} {{ number_format($itenssale->valor_desconto, 2, ',', '') }} {{ number_format($itenssale->vlrTotal, 2, ',', '.') }}

@endforeach

Totalizadores

Total Venda: R${{number_format($valorTotalVenda, 2, ',', '.') }}
Total Acrescimo: R$ {{number_format($valorTotalAcrescimo, 2, ',', '.') }}
Total Desconto: R${{number_format($valorTotalDesconto, 2, ',', '.') }}