Skip to content
Snippets Groups Projects
Commit 4faeee90 authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FEAT #11282 TIME 2:00 show custom fields in exports values list

parent b0cc687d
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,8 @@ import { NotificationService } from '../../notification.service';
import { CdkDragDrop, moveItemInArray, transferArrayItem } from '@angular/cdk/drag-drop';
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
import { SortPipe } from '../../../plugins/sorting.pipe';
import {catchError, map, tap} from "rxjs/operators";
import {of} from "rxjs";
declare function $j(selector: any): any;
......@@ -231,6 +233,26 @@ export class ExportComponent implements OnInit {
}, (err: any) => {
this.notify.handleErrors(err);
});
this.http.get("../../rest/customFields").pipe(
map((data: any) => {
data.customFields = data.customFields.map((custom: any) => {
return {
value: 'custom_' + custom.id,
label: custom.label,
isFunction: true
}
});
return data;
}),
tap((data: any) => {
this.dataAvailable = this.dataAvailable.concat(data.customFields);
}),
catchError((err: any) => {
this.notify.handleErrors(err);
return of(false);
})
).subscribe();
}
drop(event: CdkDragDrop<string[]>) {
......
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