| {{ tran("{Customer}") }} |
{{ tran("{ConstructionSite}") }} |
{{ tran("{Recipe}") }} |
{{ tran("{invoice_printout_no}") }} |
{{ tran("{Sheet}") }} |
{{ tran("{t_human}") }} |
{{ tran("{payment_type}") }} |
{{ tran("{volume}") }} |
{{ tran("{price_per_unit}") }} |
{{ tran("{price_concrete}") }} |
{{ tran("{price_shipping}") }} |
{{ tran("{price_services}") }} |
{% if show_pumps %}{{ tran("{price_pumps}") }} | {% endif %}
{{ tran("{price_sum}") }} |
{% for customer_name, customer in customers.items() %}
{% set customer_str = customer.str or "---" %}
{% for site_name, concretes in customer["items"].items() %}
{% set site_str = site_name or "---" %}
{% for concrete_name, orders in concretes["items"].items() %}
{% for order in orders["items"] %}
| {{ customer_str }} |
{{ site_str }} |
{{ concrete_name }} |
{{ order.invoice_number or "---" }} |
{{ order.auto_number }} |
{{ order._t_human }} |
{{ tran(order._payment_type_name) }} |
{{ order._volume_str }} m³ |
{{ tran(order._unit_price) }} |
{{ order._price_concrete_calculated }} |
{{ order._price_transport }} |
{{ order._price_surcharges }}{{ order._surcharge_names }} |
{% if show_pumps %}{{ order._price_pumps }} | {% endif %}
{{ order._price_total_calculated }} |
{% endfor %}
|
|
{{ tran("{total}") }} {{ concrete_name }} |
|
{{ orders["sum"]["volume"] }} m³ |
|
{{ orders["sum"]["price_concrete"] }} |
{{ orders["sum"]["price_transport"] }} |
{{ orders["sum"]["price_surcharges"] }} |
{% if show_pumps %}{{ orders["sum"]["price_pumps"] }} | {% endif %}
{{ orders["sum"]["price"] }} |
{% endfor %}
|
{{ tran("{total}") }} {{ site_str }} |
|
{{ concretes["sum"]["volume"] }} m³ |
|
{{ concretes["sum"]["price_concrete"] }} |
{{ concretes["sum"]["price_transport"] }} |
{{ concretes["sum"]["price_surcharges"] }} |
{% if show_pumps %}{{ concretes["sum"]["price_pumps"] }} | {% endif %}
{{ concretes["sum"]["price"] }} |
{% endfor %}
| {{ tran("{total}") }} {{ customer_str }} |
|
{{ customer["sum"]["volume"] }} m³ |
|
{{ customer["sum"]["price_concrete"] }} |
{{ customer["sum"]["price_transport"] }} |
{{ customer["sum"]["price_surcharges"] }} |
{% if show_pumps %}{{ customer["sum"]["price_pumps"] }} | {% endif %}
{{ customer["sum"]["price"] }} |
{% endfor %}
|
| {{ tran("{total}") }} |
{{ totals["volume"] }} m³ |
|
{{ totals["price_concrete"] }} |
{{ totals["price_transport"] }} |
{{ totals["price_surcharges"] }} |
{% if show_pumps %}{{ totals["price_pumps"] }} | {% endif %}
{{ totals["price"] }} |
|
| {{ tran("{vat}") }} {{ setup.vat_rate }}% |
{{ supertotal_vat }} |
| {{ tran("{price_with_vat}") }} |
{{ supertotal_with_vat }} |