Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <h3>Kundendaten</h3>
- <div class="grid">
- <div class="grid-item">
- <dl>
- <dt>Status:</dt>
- <dd><span *ngIf="customer.active">Aktiv</span><span *ngIf="!customer.active">Inaktiv</span></dd>
- <dt>Firma:</dt>
- <dd>{{customer.name}}<ng-container *ngIf="customer.old_plp_id"> ({{customer.old_plp_id}})</ng-container></dd>
- <dt *ngIf="customer.name_additional">Zusatz:</dt>
- <dd *ngIf="customer.name_additional">{{customer.name_additional}}</dd>
- <dt *ngIf="customer.consultant_user_id">PLP Mediaberater:</dt>
- <dd *ngIf="customer.consultant_user_id">{{usersById[customer.consultant_user_id]['firstname']}} {{usersById[customer.consultant_user_id]['lastname']}}</dd>
- <dt>Adresse:</dt>
- <dd>{{customer.street}} {{customer.street_no}}<br />
- {{customer.zip}} {{customer.city}}
- <ng-container *ngIf="customer.country_id"><br />{{config.vc_countries_by_id[customer.country_id]['name']}}</ng-container></dd>
- <dt *ngIf="checkedUrl">Internetadresse:</dt>
- <dd *ngIf="checkedUrl"><a href="{{checkedUrl}}" target="_blank">{{checkedUrl}}</a></dd>
- <dt *ngIf="customer.email">E-Mail (Zentrale):</dt>
- <dd *ngIf="customer.email"><a href="mailto:{{customer.email}}">{{customer.email}}</a></dd>
- <dt *ngIf="customer.phone_no">Telefon (Zentrale):</dt>
- <dd *ngIf="customer.phone_no"><a href="tel:{{customer.phone_no}}">{{customer.phone_no}}</a></dd>
- <dt *ngIf="customer.mobile_no">Mobil (Zentrale):</dt>
- <dd *ngIf="customer.mobile_no"><a href="tel:{{customer.mobile_no}}">{{customer.mobile_no}}</a></dd>
- <dt *ngIf="customer.fax_no">Fax (Zentrale):</dt>
- <dd *ngIf="customer.fax_no">{{customer.fax_no}}</dd>
- <dt *ngIf="customer.comment">Bemerkung:</dt>
- <dd class="pre-wrap" *ngIf="customer.comment">{{customer.comment}}</dd>
- </dl>
- </div>
- <div class="grid-item">
- <div class="button button--inline right" (click)="edit()" *ngIf="hasRights">bearbeiten</div>
- </div>
- </div>
-
- <app-spt-modal [overlay]="true" #modalCustomerDataEdit>
- <div id="customer-data-edit-modal">
- <app-customer-data-edit #customerDataEdit (editCustomer)="editCustomerFunction($event)"></app-customer-data-edit>
- </div>
- </app-spt-modal>
|