| Código | Descrição | Qtde | Vl Unit | Vl Total | ||
|---|---|---|---|---|---|---|
| {{ $i->produto ? $i->produto->numero_sequencial : '--' }} | {{ $i->descricao() }} | {{ ($i->produto && ($i->produto->unidade == 'UN' || $i->produto->unidade == 'UNID') ? number_format($i->quantidade, 0) : number_format($i->quantidade, 3)) }} | @isset($preVenda){{ __moeda($i->valor) }} | {{ __moeda($i->valor*$i->quantidade) }} | @else{{ __moeda($i->valor_unitario) }} | {{ __moeda($i->sub_total) }} | @endif
| Qtde total de itens | {{ sizeof($item->itens) }} | |
|---|---|---|
| Valor Total | @isset($preVenda)R${{ __moeda($item->valor_total) }} | @elseR${{ __moeda($item->total) }} | @endif
| Desconto | R${{ __moeda($item->desconto) }} | |
| Acréscimo | R${{ __moeda($item->acrescimo) }} | |
| Frete | R${{ __moeda($item->valor_entrega) }} | |
| Valor do Frete | R${{ __moeda($item->valor_frete) }} |
| Forma de pagamento | Valor pago |
|---|---|
| {{ \App\Models\Nfce::getTipoPagamento($f->tipo_pagamento) }} | R${{ __moeda($f->valor_parcela) }} |
| {{ \App\Models\Nfce::getTipoPagamento($item->tipo_pagamento) }} | R${{ __moeda($item->valor_total) }} |
| {{ \App\Models\Nfce::getTipoPagamento($f->tipo_pagamento) }} | R${{ __moeda($f->valor) }} |
| {{ \App\Models\Nfce::getTipoPagamento($item->tipo_pagamento) }} | R${{ __moeda($item->total) }} |
| Troco | R${{ __moeda($item->troco) }} |
| Data | {{ __data_pt($item->created_at) }} |
| Código | {{ $item->codigo }} |
| Código da venda | {{ $item->numero_sequencial }} |
| Vendedor | {{ $item->funcionario->nome }} |
| {{ $item->cliente->info }} | |
| Observação | {{ $item->observacao }} |
| {!! $configGeral->mensagem_padrao_impressao_venda !!} | |