I just noticed that in the indexes for the task.json (inside application\Espo\Modules\Crm\Resources\metadata\en tityDefs) the "dateEnd" is indexed to "dateStart". Shouldn't this be indexed against "dateEnd" the same way that the "dateEndStatus" is indexed against "dateEnd" instead of "dateStart" as it is currently shown?
...
"dateEndStatus": {
"columns": ["dateEnd", "status"]
},
"dateStart": {
"columns": ["dateStart", "deleted"]
},
"dateEnd": {
"columns": ["dateStart", "deleted"]
},
...
...
"dateEndStatus": {
"columns": ["dateEnd", "status"]
},
"dateStart": {
"columns": ["dateStart", "deleted"]
},
"dateEnd": {
"columns": ["dateStart", "deleted"]
},
...
Comment