{% extends "oscar/communication/emails/base.html" %} {% load currency_filters i18n %} {% block tbody %}

Guten Tag {{ order.billing_address.salutation }},

Ihre Bestellung wurde in unser System aufgenommen und wird umgehend bearbeitet.
Danke, dass Sie sich für {{ CONFIG.company_short_name }} entschieden haben!
Wir bestätigen Ihnen hiermit den Eingang folgender Bestellung:

Bestellnummer: {{ order.number }} Bestelldatum: {{ order.date_placed }} {% if order.delivery %} Gewünschter Termin: {{ order.delivery }} {% endif %} {% if hide_price %} {% else %} {% if order.deposit.sum.incl %} {% endif %} {% for discount in order.basket_discounts %} {% endfor %} {% endif %}
{% if not hide_price %} {% endif %} {% for line_price in order.line_prices.all %} {% if not hide_price %} {% endif %} {% endfor %}
Artikel MengeEinzel Summe
{{ line_price.line.title }}
Art-Nr: {{ line_price.line.product.upc }}
{{ line_price.quantity }}

{{ line_price.price.incl|currency:order.currency }} {% if line_price.deposit.incl %}
Pfand: {{ line_price.deposit.incl|currency:order.currency }} {% endif %}

{{ line_price.price.sum.incl|currency:order.currency }} {% if line_price.deposit.sum.incl %}
{{ line_price.deposit.sum.incl|currency:order.currency }} {% endif %}

Liefermethode: {{ order.shipping_method }}{% if order.shipping_address.floor_number %} ({{ order.shipping_address.floor_title }}){% endif %}
Zahlungsart: {{ order.payment_provider }}
Warenkorb gesamt (ohne Rabatt): {{ order.price.sum.incl|currency:order.currency }}
Summe Pfand: {{ order.deposit.sum.incl|currency:order.currency }}
Rabatt '{{ discount.offer_name }}': - {{ discount.amount|currency:order.currency }}
{{ order.shipping_method }}{% if order.shipping_address.floor_number %} ({{ order.shipping_address.floor_title }}){% endif %}: {% if order.shipping_incl_tax %}{{ order.shipping_incl_tax|currency:order.currency }}{% else %}kostenlos{% endif %}
Zahlungsart ({{ order.payment_provider }}): {% if order.payment_incl_tax %}{{ order.payment_incl_tax|currency:order.currency }}{% else %}kostenlos{% endif %}
Rechnungsbetrag: {{ order.total.sum.incl|currency:order.currency }}
*Alle Preise enthalten die gesetzliche Mehrwertsteuer
{% if order.iban and show_bank_account and order.payment_code == 'sepa' %} {% endif %}

Lieferanschrift
{{ order.shipping_address.salutation }}
{% if order.shipping_address.company %}{{ order.shipping_address.company }}
{% endif %} {% if order.shipping_address.cost_center %}Kostenstelle: {{ order.shipping_address.cost_center }}
{% endif %} {{ order.shipping_address.line1 }}
{{ order.shipping_address.postcode }} - {{ order.shipping_address.line4 }}

{% if order.shipping_address.phone_number %}{{ order.shipping_address.phone_number }}
{% endif %} {{ order.user.email }}

Rechnungsanschrift
{{ order.billing_address.salutation }}
{% if order.billing_address.company %}{{ order.billing_address.company }}
{% endif %} {% if order.billing_address.cost_center %}Kostenstelle: {{ order.billing_address.cost_center }}
{% endif %} {{ order.billing_address.line1 }}
{{ order.billing_address.postcode }} - {{ order.billing_address.line4 }}
{% if order.billing_address.phone_number %}
{{ order.billing_address.phone_number }}{% endif %}

Konto
Inhaber: {{ order.owner }}
Institut: {{ order.bank_name }}
IBAN: {{ order.iban }}
BIC: {{ order.bic }}
Konto: {{ order.kto }}
BLZ: {{ order.blz }}

{% if order.notes.first %} {% with note=order.notes.first %}
Ihre Nachricht an uns:
{{ note.message }}
{% endwith %} {% endif %} {% if status_url %} Hier können Sie Ihre Bestellung einsehen. {% endif %}

{% trans "Thanks for using our site!" %}

{% blocktrans with name=CONFIG.company_short_name %}The {{ name }} team{% endblocktrans %}

{% endblock %}