{% extends "admin/base_site.html" %}
{% comment %}
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
{% endcomment %}
{% load proto_tags %}
{% load i18n %}
{% load static from staticfiles %}
{% block extrahead %}
{% endblock %}
{% block breadcrumbs %}
{% endblock %}
{% block content %}
Serviços contratados por processo
{{ entidade }}{% if beneficiado %} - {{ beneficiado }} ({{ sem|moeda }}, {{ com|moeda }}){% endif %}
Processo {{ termo }}
O valor total por nota refere-se à soma dos ítens descritos, com e sem impostos, conforme beneficiado e serviço selecionados no filtro.
{% for p in pagamentos %}
Nota fiscal |
Valor total sem imposto |
Valor total com imposto |
{{ p.nf }} |
{{ p.sem|moeda }} |
{{ p.com|moeda }} |
OS e contrato |
Número de vezes que foi pago |
Descrição do item |
Valor unitário sem imposto |
Valor unitário com imposto |
{% for r in p.recursos %}
{{ r.os }} CT {{ r.os.contrato.numero }} |
{{ r.quantidade }} |
{{ r.tipo }} - {{ r.referente }} |
{{ r.sem|moeda }} |
{{ r.com|moeda }} |
{% for b in r.beneficiados %}
{{ b }} |
{{ b.porcentagem|floatformat:"-2" }} % |
{% endfor %}
{% endfor %}
|
{% endfor %}
{% endblock %}