{% extends 'UpdoonAppBundle::base_private_extension.html.twig' %} {% block title %}{{ parent() }}Kunden • Betrachten{% endblock %} {% block content %}
Betrachten

Allgemeine Daten

ID / Interne KundenID

{{ customer.id }} / {% if customer.internalid is not empty %}{{ customer.internalid }}{% else %}-{% endif %}

1. Projektmanager

{% if customer.firstFilterAccount.0 is defined and customer.firstFilterAccount.0 != false %}{{ customer.firstFilterAccount.0.firstname }} {{ customer.firstFilterAccount.0.lastname }}{% endif %}

2. Projektmanager

{% if customer.secondFilterAccount.0 is defined and customer.secondFilterAccount.0 != false %}{{ customer.secondFilterAccount.0.firstname }} {{ customer.secondFilterAccount.0.lastname }}{% endif %}

Datenmanager

{% if customer.implementerAccount.0 is defined and customer.implementerAccount.0 != false %}{{ customer.implementerAccount.0.firstname }} {{ customer.implementerAccount.0.lastname }}{% endif %}

Vorname

{{ customer.firstname }}

Nachname

{{ customer.lastname }}

Adresse

{% if customer.addresses.0 is defined and customer.addresses.0 != false %} {{ customer.addresses.0.addition }}
{{ customer.addresses.0.street }} {{ customer.addresses.0.housenumber }}
{{ customer.addresses.0.city }}
{{ customer.addresses.0.country }} {% endif %}

Telefonnummer

{% if customer.phoneNumber.0 is defined and customer.phoneNumber.0 != false %} +{{ customer.phoneNumber.0.countryPrefix }} {{ customer.phoneNumber.0.countyPrefix }} {{ customer.phoneNumber.0.number }} {% endif %}

Faxnummer

{% if customer.faxNumber.0 is defined and customer.faxNumber.0 != false %} +{{ customer.faxNumber.0.countryPrefix }} {{ customer.faxNumber.0.countyPrefix }} {{ customer.faxNumber.0.number }} {% endif %}

Webseite

{% if customer.website is not empty %}{{ customer.website }}{% endif %}

{% for contact in customer.contacts %}

{{ loop.index }} Ansprechpartner

Vorname

{{ contact.firstname }}

Nachname

{{ contact.lastname }}

E-Mail Adresse

{{ contact.email }}

Telefonnummer

{% if contact.phoneNumber.0 is defined and contact.phoneNumber.0 != false %} +{{ contact.phoneNumber.0.countryPrefix }} {{ contact.phoneNumber.0.countyPrefix }} {{ contact.phoneNumber.0.number }} {% endif %}

{% endfor %}
Kunden bearbeiten Kunden löschen
{{ include('UpdoonAppBundle::Customer/customer_delete_modal.html.twig') }} {% endblock %}