Skip to content
Snippets Groups Projects
Commit d26986c5 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #15352 TIME 1 add contact info

parent b0f23409
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,9 @@ export class ContactDetailComponent implements OnInit {
customFields: [],
firstname: data.firstname,
lastname: data.lastname,
email: data.mail,
department: data.department,
phone: data.phone,
enabled: data.enabled
};
this.contactClone = JSON.parse(JSON.stringify(this.contact));
......@@ -119,6 +122,10 @@ export class ContactDetailComponent implements OnInit {
fillingRate: this.contactService.formatFillingObject(null),
customFields: [],
lastname: data.short_label,
email: data.email,
addressStreet: data.address,
addressPostcode : data.addressPostcode,
addressCountry : data.addressCountry,
enabled: data.enabled === 'Y'
};
this.contactClone = JSON.parse(JSON.stringify(this.contact));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment