{% extends 'base.html' %} {% block title %}Zestawienia {{ period_title }}{% endblock %} {% block content %} {% set eyebrow='Analiza' %}{% set heading='Zestawienia ' ~ period_title %}{% set description='Widok roczny, kwartalny i miesięczny z porównaniem do innych lat.' %} {% set actions %}
RoczneKwartalneMiesięczne
{% endset %} {% include 'partials/page_header.html' with context %}
Statystyka innych lat
{% for item in comparisons %}
{{ item.year }}
{{ item.count }} faktur · netto {{ item.net|pln }}
{{ item.gross|pln }}
{% if item.delta is not none %}
{{ '+' if item.delta >= 0 else '' }}{{ item.delta|pln }}
{% else %}
bazowy
{% endif %}
{% else %}
Brak danych porównawczych.
{% endfor %}
{% for group in groups %}
{{ group.label }}{{ group.gross|pln }}
Liczba faktur: {{ group.count }}
Netto: {{ group.net|pln }}
VAT: {{ group.vat|pln }}
Brutto: {{ group.gross|pln }}
{% if period == 'month' %}{% endif %}
{% for invoice in group.entries %}{% else %}{% endfor %}
NumerKontrahentDataBrutto
{{ invoice.invoice_number }}{{ invoice.contractor_name }}{{ invoice.issue_date }}{{ invoice.gross_amount|pln }}Otwórz
Brak faktur w tym okresie.
{% else %}
Brak danych.
{% endfor %} {% endblock %}