diff --git a/src/frontend/app/administration/contact/contact-duplicate/manage-duplicate/manage-duplicate.component.ts b/src/frontend/app/administration/contact/contact-duplicate/manage-duplicate/manage-duplicate.component.ts index 30ad186a25402484a1d5345d9617ff344bbb6694..2786e410d0abda8f402b3534b17b01d0b4237dd7 100644 --- a/src/frontend/app/administration/contact/contact-duplicate/manage-duplicate/manage-duplicate.component.ts +++ b/src/frontend/app/administration/contact/contact-duplicate/manage-duplicate/manage-duplicate.component.ts @@ -46,12 +46,15 @@ export class ManageDuplicateComponent implements OnInit { this.data.duplicate.forEach((contactItem: any, indexContact: number) => { if (this.contactsExcluded.indexOf(this.appContactDetail.toArray()[indexContact].getContactInfo().id) === -1) { Object.keys(this.appContactDetail.toArray()[indexContact].getContactInfo()).forEach(element => { + if (element === 'customFields' && !this.functionsService.empty(this.appContactDetail.toArray()[indexContact].getContactInfo()[element])) { this.appContactDetail.toArray()[indexContact].getContactInfo()[element].forEach((custom: any) => { if (this.appContactDetail.toArray()[index].getContactInfo()[element].filter((custom2: any) => custom2.label === custom.label).length === 0) { this.appContactDetail.toArray()[index].setContactInfo(element, custom); } }); + } else if (element === 'civility' && !this.functionsService.empty(this.appContactDetail.toArray()[indexContact].getContactInfo()[element].id)) { + this.appContactDetail.toArray()[index].setContactInfo(element, this.appContactDetail.toArray()[indexContact].getContactInfo()[element]); } else if ( this.functionsService.empty(this.appContactDetail.toArray()[index].getContactInfo()[element]) && this.appContactDetail.toArray()[index].getContactInfo()[element] !== this.appContactDetail.toArray()[indexContact].getContactInfo()[element] diff --git a/src/frontend/app/contact/contact-detail/contact-detail.component.html b/src/frontend/app/contact/contact-detail/contact-detail.component.html index 43341c7ccabf61efb1b6a7e8c16fdd2b7d545b01..ba3150c0b3778c80e7c0f87f951d425b82cae40c 100644 --- a/src/frontend/app/contact/contact-detail/contact-detail.component.html +++ b/src/frontend/app/contact/contact-detail/contact-detail.component.html @@ -20,12 +20,12 @@ <mat-card-title *ngIf="!functionsService.empty(contact.firstname) || !functionsService.empty(contact.lastname)" [title]="contact.civility.label + ' ' + contact.firstname + ' ' + contact.lastname"> <sup style="color: #666;" - *ngIf="!functionsService.empty(contact.civility)">{{contact.civility.abbreviation}} </sup>{{contact.firstname}} + *ngIf="!functionsService.empty(contact.civility)" [class.newData]="isNewValue('civility')">{{contact.civility.abbreviation}} </sup>{{contact.firstname}} {{contact.lastname}} </mat-card-title> - <mat-card-title *ngIf="functionsService.empty(contact.firstname) && functionsService.empty(contact.lastname)" [title]="contact.company"> + <mat-card-title *ngIf="functionsService.empty(contact.firstname) && functionsService.empty(contact.lastname)" [class.newData]="isNewValue('company')" [title]="contact.company"> {{contact.company}}</mat-card-title> - <mat-card-subtitle [title]="contact.function" *ngIf="!functionsService.empty(contact.function)"> + <mat-card-subtitle [class.newData]="isNewValue('function')" [title]="contact.function" *ngIf="!functionsService.empty(contact.function)"> {{contact.function}} </mat-card-subtitle> <i class="contact-filling fa fa-circle" diff --git a/src/frontend/app/contact/contact-detail/contact-detail.component.scss b/src/frontend/app/contact/contact-detail/contact-detail.component.scss index fe1a4b0c996669925af30274ed6b651413e67291..34b718b18c37291810b8933efc7e0310b27e7051 100644 --- a/src/frontend/app/contact/contact-detail/contact-detail.component.scss +++ b/src/frontend/app/contact/contact-detail/contact-detail.component.scss @@ -115,7 +115,7 @@ } .newData { - color : #F99830; + color : #F99830 !important; } .selectable { diff --git a/src/frontend/app/contact/contact-detail/contact-detail.component.ts b/src/frontend/app/contact/contact-detail/contact-detail.component.ts index 1af834c38e24c9798260d46e80b3eef1787ddfb1..ca79c8a190c0009e145aa2773e8a9b1bda1b19e1 100644 --- a/src/frontend/app/contact/contact-detail/contact-detail.component.ts +++ b/src/frontend/app/contact/contact-detail/contact-detail.component.ts @@ -174,18 +174,27 @@ export class ContactDetailComponent implements OnInit { } setContactInfo(identifier: string, value: string) { - if (identifier === 'customFields') { - this.contact[identifier].push(value); - } else { - this.contact[identifier] = value; + if (!this.functionsService.empty(value)) { + if (identifier === 'customFields') { + this.contact[identifier].push(value); + } else { + this.contact[identifier] = value; + } } } isNewValue(identifier: any) { - const isCustomField = typeof identifier === 'object'; + const isCustomField = typeof identifier === 'object' && identifier !== 'civility'; + + if (identifier === 'civility') { + console.log(this.contact[identifier]); + console.log(this.contactClone[identifier]); + } if (isCustomField) { return this.contactClone['customFields'].filter((custom: any) => custom.label === identifier.value.label).length === 0; + } else if (identifier === 'civility') { + return JSON.stringify(this.contact[identifier]) !== JSON.stringify(this.contactClone[identifier]); } else { return this.contact[identifier] !== this.contactClone[identifier]; }