Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

41 строка
2.3 KiB

  1. <h3>Kundendaten</h3>
  2. <div class="grid">
  3. <div class="grid-item">
  4. <dl>
  5. <dt>Status:</dt>
  6. <dd><span *ngIf="customer.active">Aktiv</span><span *ngIf="!customer.active">Inaktiv</span></dd>
  7. <dt>Firma:</dt>
  8. <dd>{{customer.name}}<ng-container *ngIf="customer.old_plp_id"> ({{customer.old_plp_id}})</ng-container></dd>
  9. <dt *ngIf="customer.name_additional">Zusatz:</dt>
  10. <dd *ngIf="customer.name_additional">{{customer.name_additional}}</dd>
  11. <dt *ngIf="customer.consultant_user_id">PLP Mediaberater:</dt>
  12. <dd *ngIf="customer.consultant_user_id">{{usersById[customer.consultant_user_id]['firstname']}} {{usersById[customer.consultant_user_id]['lastname']}}</dd>
  13. <dt>Adresse:</dt>
  14. <dd>{{customer.street}} {{customer.street_no}}<br />
  15. {{customer.zip}} {{customer.city}}
  16. <ng-container *ngIf="customer.country_id"><br />{{config.vc_countries_by_id[customer.country_id]['name']}}</ng-container></dd>
  17. <dt *ngIf="checkedUrl">Internetadresse:</dt>
  18. <dd *ngIf="checkedUrl"><a href="{{checkedUrl}}" target="_blank">{{checkedUrl}}</a></dd>
  19. <dt *ngIf="customer.email">E-Mail (Zentrale):</dt>
  20. <dd *ngIf="customer.email"><a href="mailto:{{customer.email}}">{{customer.email}}</a></dd>
  21. <dt *ngIf="customer.phone_no">Telefon (Zentrale):</dt>
  22. <dd *ngIf="customer.phone_no"><a href="tel:{{customer.phone_no}}">{{customer.phone_no}}</a></dd>
  23. <dt *ngIf="customer.mobile_no">Mobil (Zentrale):</dt>
  24. <dd *ngIf="customer.mobile_no"><a href="tel:{{customer.mobile_no}}">{{customer.mobile_no}}</a></dd>
  25. <dt *ngIf="customer.fax_no">Fax (Zentrale):</dt>
  26. <dd *ngIf="customer.fax_no">{{customer.fax_no}}</dd>
  27. <dt *ngIf="customer.comment">Bemerkung:</dt>
  28. <dd class="pre-wrap" *ngIf="customer.comment">{{customer.comment}}</dd>
  29. </dl>
  30. </div>
  31. <div class="grid-item">
  32. <div class="button button--inline right" (click)="edit()" *ngIf="hasRights">bearbeiten</div>
  33. </div>
  34. </div>
  35. <app-spt-modal [overlay]="true" #modalCustomerDataEdit>
  36. <div id="customer-data-edit-modal">
  37. <app-customer-data-edit #customerDataEdit (editCustomer)="editCustomerFunction($event)"></app-customer-data-edit>
  38. </div>
  39. </app-spt-modal>