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

FEAT #12091 TIME 0:05 add departureDate

parent a1f5c7f1
No related branches found
No related tags found
No related merge requests found
......@@ -98,6 +98,13 @@ export class IndexingFormComponent implements OnInit {
default_value: '',
values: []
},
{
identifier: 'departureDate',
label: this.lang.departureDate,
type: 'date',
default_value: '',
values: []
},
{
identifier: 'processLimitDate',
label: this.lang.processLimitDate,
......@@ -389,6 +396,10 @@ export class IndexingFormComponent implements OnInit {
elem.endDate = '';
elem.event = 'setPriorityColorByLimitDate';
} else if (elem.identifier === 'departureDate') {
elem.startDate = '_TODAY';
elem.endDate = '';
} else if (elem.identifier === 'folders') {
elem.values = null;
......
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