|
|
|
Pedido comercial em nome de: {{ $pedido->distribuidor->nome }}
@if ($pedido->distribuidor->pessoa_fisica)
CPF: {{ $pedido->distribuidor->pessoa_fisica->cpf }}
@else
CNPJ: {{ $pedido->distribuidor->pessoa_juridica->cnpj }}
@endif
|
@if ($pedido->pedido_protheus)
Nº Pedido:
{{ $pedido->pedido_protheus }}
|
@endif
| # | Produto | Qtd. | Vl. Unit. | Tot. Unit. | Desconto | Total |
|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $item->produto->codigo }} - {{ $item->produto->descricao }} | {{ $item->quantidade }} |
@if ($item->preco_regular && $item->preco_regular > 0)
R$ {{ number_format($item->preco_regular, 2, ',', '.') }}
@endif R$ {{ number_format($item->valor_unitario, 2, ',', '.') }} |
R$ {{ number_format($item->valor_unitario * $item->quantidade, 2, ',', '.') }} | @if ( $pedido->proposta->tipo_proposta == 'BONIFICACAO' || $pedido->proposta->tipo_proposta == 'AMOSTRA' || $pedido->proposta->tipo_proposta == 'REQUISICAO') 100% @else R$ {{ number_format($item->valor_desconto, 2, ',', '.') }} @endif | R$ {{ number_format($item->valor_total, 2, ',', '.') }} |
| Total de Itens: | {{ $pedido->total_itens }} | |||||
| BONIFICAÇÃO | ||||||
|---|---|---|---|---|---|---|
| # | Produto | Qtd. | Vl. Unit | Tot. Unit. | Desconto | Total |
| {{ $i + 1 }} | {{ $item->produto->codigo }} - {{ $item->produto->descricao }} | {{ $item->quantidade }} | R${{ number_format($item->valor_unitario, 2, ',', '.') }} | R$ {{ number_format($item->valor_unitario * $item->quantidade, 2, ',', '.') }} | 100% | R$ {{ $item->brinde ? '0,00' : number_format($item->valor_total, 2, ',', '.') }} |
| Total de Itens: | {{ $pedido->total_itens_brinde }} | |||||
| Produto | Brinde | Quantidade |
|---|---|---|
| {{ $nItem['item'] }} | {{ $nItem['brinde'] }} | {{ $nItem['quantidade'] }} |