Hello everyone,
We have a project where we would like to filter tasks based on different criteria. In addition to time and two other criteria, one of them is the logged-in user. However, our tests show that this is not working: regardless of which account I log in with, I can still see tasks from other users. For time and the other criteria, the filter works as expected.
Do you have any idea what we might be doing wrong, or how we could adjust the filter so that it correctly applies to the logged-in user?
Thank you in advance!
Logic of filter:
(esritask_assignee = 'mihaly.e' OR esritask_assignee = 'tibor.g' OR esritask_assignee = 'daniel.f'
AND OMC_ID = 1
AND Group_ID = 1
AND esritask_duedate BETWEEN CURRENT_DATE + 0.1667 AND CURRENT_DATE + 1.1667
)
OR
(
esritask_assignee IN ('zoltan.p', 'zoltan.z', 'tamas.f')
AND OMC_ID = 2
AND Group_ID = 1
AND esritask_duedate BETWEEN CURRENT_DATE + 0.1667 AND CURRENT_DATE + 1.1667
)