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

FEAT #11720 TIME 0:20 add extenr id, enabled, communication mean export fields

(cherry picked from commit d89fc7ca)
parent 2048f12a
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,24 @@ export class ContactExportComponent implements OnInit {
exportModelList: any;
dataAvailable: any[] = [];
dataAvailable: any[] = [
{
value: 'id',
label: this.lang.id
},
{
value: 'externalId',
label: 'External Id'
},
{
value: 'enabled',
label: this.lang.status
},
{
value: 'communicationMeans',
label: this.lang.communicationMean
}
];
@ViewChild('listFilter', { static: true }) private listFilter: any;
......@@ -62,7 +79,7 @@ export class ContactExportComponent implements OnInit {
return data.contactsParameters;
}),
tap((fields: any) => {
this.dataAvailable = fields;
this.dataAvailable = this.dataAvailable.concat(fields);
}),
exhaustMap(() => this.http.get('../../rest/contactsCustomFields')),
map((data: any) => {
......
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